https://github.com/jolovicdev/flop
Python TCP port scanner
https://github.com/jolovicdev/flop
Last synced: 6 months ago
JSON representation
Python TCP port scanner
- Host: GitHub
- URL: https://github.com/jolovicdev/flop
- Owner: jolovicdev
- Created: 2024-11-07T11:35:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-07T11:41:14.000Z (over 1 year ago)
- Last Synced: 2025-03-16T18:27:35.095Z (11 months ago)
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Fast, multithreaded TCP port scanner script with service detection and HTML reporting.
Usage:
python scanner.py [host] [options]
-p, --ports: Port range (e.g., 1-1024) [default: 1-65535]
-t, --threads: Number of threads [default: 16]
-o, --output: Output file (.txt or .html)
```
# Scan common ports
python scanner.py example.com -p 1-1024
# Scan with more threads
python scanner.py example.com -t 32
# Save results to HTML
python scanner.py example.com -o report.html
```