/stealth-port-scan

Primary LanguagePythonOtherNOASSERTION

stealth-port-scan

Stealth Port Scan using TCP/SYN method.

# install
# also you can use pip
pipx install stealth-port-scan

# usage
stealth-port-scan -h

# requires sudo to send raw packets
# you can specify hostname, ip adress, ip range or cidr
sudo stealth-port-scan -a www.linux.org.ru -p 1-10000 -r 1000

# if you have problems with secure_path
# sudo: stealth-port-scan: command not found
sudo env "PATH=$PATH" stealth-port-scan ...

sudo $(which stealth-port-scan) ...

# or just clone repo and run
sudo ./stealth_port_scan.py -a www.linux.org.ru -p 21-23 80 443 8080 8443