https://github.com/frankurcrazy/easysocks5
A simple socks5 server implemented with AsyncIO
https://github.com/frankurcrazy/easysocks5
proxy socks socks5 socks5-proxy-server socks5-server
Last synced: 4 months ago
JSON representation
A simple socks5 server implemented with AsyncIO
- Host: GitHub
- URL: https://github.com/frankurcrazy/easysocks5
- Owner: frankurcrazy
- License: mit
- Created: 2020-08-11T05:53:37.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T03:04:25.000Z (almost 4 years ago)
- Last Synced: 2025-09-27T20:25:45.671Z (8 months ago)
- Topics: proxy, socks, socks5, socks5-proxy-server, socks5-server
- Language: Python
- Homepage:
- Size: 43 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# easysocks5
[](https://badge.fury.io/py/easysocks5)
***easysocks5*** is a simple SOCKS5 implementation based on AsyncIO.
Currently only SOCKS5 without authentication and CONNECT command are supported.
## Requirement
Python >= 3.7
## Quick guide
### Install from PyPI
```bash
python3 -m pip install easysocks5
python3 -m easysocks5.server -H 127.0.0.1 -P 8888
```
### Get latest version from GitHub
```bash
git clone https://github.com/frankurcrazy/easysocks5
cd easysocks5 && python -m easysocks5.server -H 127.0.0.1 -P 8888
```
## License
MIT