Asyncio-based SOCKS5 server that tunnels connections through configurable chains of SOCKS5, SOCKS4/4a, and HTTP CONNECT proxies. Tor integration via standard SOCKS5 hop.
480 B
480 B
s5p -- Installation
Prerequisites
- Python >= 3.11
- pip
- Tor (optional, for Tor-based chains)
Install
cd ~/git/s5p
python -m venv .venv
source .venv/bin/activate
pip install -e .
Verify
s5p --version
which s5p
Install Tor (optional)
sudo apt install tor
sudo systemctl enable --now tor
# Verify Tor SOCKS5 port
ss -tlnp | grep 9050
Symlink (alternative)
ln -sf ~/git/s5p/.venv/bin/s5p ~/.local/bin/s5p