Ecosyste.ms: Awesome
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: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/s3rgeym/stealth-port-scan
- Owner: s3rgeym
- License: other
- Created: 2024-03-20T14:01:35.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-20T15:54:23.000Z (10 months ago)
- Last Synced: 2024-12-05T16:41:36.975Z (about 1 month ago)
- Topics: port-scanner, python, syn-scan
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```