Simple multi-threaded TCP latency scanner with support for SNI (TLS) and CIDR ranges.
python scanner.py --ip 1.1.1.1 --ports 443 --sni example.com --output results.txtpython scanner.py --ip 1.1.1.1 8.8.8.8 --ports 80 443 --output results.txtpython scanner.py --ip 185.208.173.0/24 --ports 443 --sni cdn.example.com --output results.txtpython scanner.py --file targets.txt --ports 443 --sni example.com --output results.txt--ipIP or CIDR--fileFile with targets--portsPorts to scan (required)--sniHostname for TLS / HTTP--timeoutTimeout (default: 2.0)--retriesRetry count (default: 3)--workersThreads (default: 200)--topShow top results (default: 10)--outputOutput file (default: results.txt)
- Shows fastest hosts in terminal
- Saves results to
results.txt
python scanner.py \
--ip 185.208.173.0/24 \
--ports 443 \
--sni cdn.example.com \
--workers 300
--output results.txt