https://github.com/rdbo/portscanner.py
Simple python3 script for port scanning
https://github.com/rdbo/portscanner.py
portscanner python3 sockets
Last synced: about 1 month ago
JSON representation
Simple python3 script for port scanning
- Host: GitHub
- URL: https://github.com/rdbo/portscanner.py
- Owner: rdbo
- Created: 2020-06-11T14:04:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-12T01:40:12.000Z (about 6 years ago)
- Last Synced: 2025-12-31T10:02:25.681Z (6 months ago)
- Topics: portscanner, python3, sockets
- Language: Python
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# portscanner.py
Simple python3 script for port scanning
```
[*] Usage:
python3 portscan.py
-t (--target): specify the target to scan
-b (--begin): specify the begin port
-e (--end): specify the end port
-p (--port): single port scan (do not use -b and -e with -p)
-d (--delay) [optional]: specify the max timeout
```
Example:
```
$ python3 portscan.py -t duckduckgo.com -b 440 -e 450
<< portscan.py by rdbo >>
[*] Target: duckduckgo.com
[*] Scan range: 440-450
[*] Max timeout: 1.0
--------------------
[*] Scanning port 440...
[*] Scanning port 441...
[*] Scanning port 442...
[*] Scanning port 443...
[*] Scanning port 444...
[*] Scanning port 445...
[*] Scanning port 446...
[*] Scanning port 447...
[*] Scanning port 448...
[*] Scanning port 449...
[*] Scanning port 450...
--------------------
[*] Scan finished in 10.00 second(s)
[*] Open ports: [443]
```