An open API service indexing awesome lists of open source software.

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.

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 dependencies

1. **Clone the repository**
```bash
git clone https://github.com/fl97-mo/PyNetScan.git
```
```bash
cd PyNetScan
```

---