Skip to content

A simple SOCKS5 proxy server implemented in Python with username/password authentication.

License

Notifications You must be signed in to change notification settings

Grypto-kali/python3-socks5-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

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

About

A simple SOCKS5 proxy server implemented in Python with username/password authentication.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages