0x0elliot/port-scanner — explained in plain English
Analysis updated 2026-08-06 · repo last pushed 2020-11-28
Check if a specific service like a web server is reachable on a particular port.
Learn how network connections work by reading and running a simple Python script.
Test whether port 1337 is open on a server you are curious about.
| 0x0elliot/port-scanner | 0-bingwu-0/live-interpreter | 010zx00x1/faresnipe | |
|---|---|---|---|
| Stars | 2 | 2 | 2 |
| Language | Python | Python | Python |
| Last pushed | 2020-11-28 | — | — |
| Maintenance | Dormant | — | — |
| Setup difficulty | easy | moderate | easy |
| Complexity | 2/5 | 2/5 | 2/5 |
| Audience | vibe coder | general | general |
Figures from each repo's GitHub metadata at analysis time.
Only requires Python installed, no external dependencies or configuration needed.
This project is a simple port scanner built in Python. It lets you check whether a specific network port on a given computer or server is open and reachable. You run it from a command line by providing an IP address and a port number. The tool then attempts to connect to that port and reports back whether the connection succeeded. It is a basic, single-target checker rather than a full network mapper that scans ranges of addresses automatically. Someone learning about networking or a hobbyist exploring how systems communicate might use this to test if a particular service is available on a machine, for example, checking if port 1337 is open on a server you are curious about. It could also serve as a small educational example for someone learning Python who wants to see how network connections work in practice. The README is minimal and does not go into detail about advanced features, scanning ranges of ports, or handling multiple targets. It is presented as an open-source project inviting contributions, with a straightforward design focused on doing one thing: checking a single port on a single address.
A simple Python command-line tool that checks whether a single network port on a given computer or server is open and reachable. You provide an IP address and port number, and it reports if the connection succeeded.
Mainly Python. The stack also includes Python.
Dormant — no commits in 2+ years (last push 2020-11-28).
No license information is provided in the README, so usage rights are unclear.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly vibe coder.
This repo across BitVibe Labs
Verify against the repo before relying on details.