This is a simple implementation of a SOCKS5 proxy server in Python. The server supports username and password authentication.
- Supports SOCKS5 protocol
- Requires username and password authentication
- Configurable port
- Python 3.x
You can set the username, password, and port directly in the script:
From
USERNAME = b"user"
PASSWORD = b"pass"
PORT = 1080
To
USERNAME = b"sillygoose"
PASSWORD = b"tryhackmelol"
PORT = 1836