Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 981 Bytes

README.md

File metadata and controls

31 lines (28 loc) · 981 Bytes

socks5chk - Socks5 Ability Checker

Simple scripts used for checking SOCKS5 proxy's support of TCP or UDP. It could also check if SOCKS5 proxy allows sending DNS to TCP port 53.

Prerequisites

Setup

Run commands like below to setup environment for running script.

python3 -m venv venv
source venv/bin/activate
pip install pysocks

Usage

Run command like this and check output.

python tcpchk.py -p 192.168.1.1 -P 1080
python tcpchk.py -p 192.168.1.1 -P 1080 -m dns
python tcpchk.py -p 192.168.1.1 -P 1080 -u user1 -k password1
python udpchk.py -p 192.168.1.1 -P 1080
python udpchk.py -p 192.168.1.1 -P 1080 -u user1 -k password1