An open API service indexing awesome lists of open source software.

https://github.com/s3rgeym/stealth-port-scan


https://github.com/s3rgeym/stealth-port-scan

port-scanner python syn-scan

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# stealth-port-scan

Stealth Port Scan using TCP/SYN method.

```bash
# 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
```