Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 543 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 543 Bytes

SOCKS5 Proxy Server with Authentication

This is a simple implementation of a SOCKS5 proxy server in Python. The server supports username and password authentication.

Features

  • Supports SOCKS5 protocol
  • Requires username and password authentication
  • Configurable port

Requirements

  • Python 3.x

Configuration

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