π Click to expand README
markdown Copy Edit # π Network Port ScannerA basic port scanner built in Python using the socket
library.
It scans common ports (e.g., 20, 21, 22, 23, 25, 53, 80, 443) on a given IP address or domain and checks which ones are open.
- Accepts a target IP or domain
- Scans a list of common ports
- Displays open ports
- Uses basic exception handling to avoid crashes
python scanner.py
πΈ Then enter the IP (e.g., 127.0.0.1) when prompted.
π οΈ Tech Used
Python 3
socket module
π‘ Note
This tool is for educational purposes only.
Always have permission before scanning any machine/network.
πΈ Sample Output
pgsql
Enter target IP or domain: 127.0.0.1
[+] Port 80 is OPEN
[+] Port 443 is OPEN
π Author
Pruthvi Raj β GitHub
bash
</details>