https://github.com/fl97-mo/pynetscan
A collection of Python tools for network scanning and security testing.
https://github.com/fl97-mo/pynetscan
Last synced: 2 months ago
JSON representation
A collection of Python tools for network scanning and security testing.
- Host: GitHub
- URL: https://github.com/fl97-mo/pynetscan
- Owner: fl97-mo
- Created: 2025-02-08T15:56:20.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-08T16:16:01.000Z (4 months ago)
- Last Synced: 2025-02-08T17:19:11.969Z (4 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyNetScan
A collection of Python tools for network scanning and security testing.---
# Simple Python Port Scanner
`port_scanner.py` is a **basic Python script** that scans the **first 1024 ports** of a given IP address or domain and identifies which ports are open or closed.## Features
- Scans ports **1-1024**
- Uses **TCP connections** to check if ports are open
- **Easy to use**, just enter an IPv4 or domain## Requirements
- **Python 3.x**
- No external dependencies1. **Clone the repository**
```bash
git clone https://github.com/fl97-mo/PyNetScan.git
```
```bash
cd PyNetScan
```---