├── .gitignore ├── LICENSE ├── README.md └── pysoxy.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | *.swp 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterDaneel/pysoxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pysoxy 2 | 3 | A small Socks5 Proxy Server in Python3 4 | -------------------------------------------------------------------------------- /pysoxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterDaneel/pysoxy/HEAD/pysoxy.py --------------------------------------------------------------------------------