https://github.com/lascc/network-scanner
A python network scanner using scapy
https://github.com/lascc/network-scanner
Last synced: 8 months ago
JSON representation
A python network scanner using scapy
- Host: GitHub
- URL: https://github.com/lascc/network-scanner
- Owner: LasCC
- Created: 2020-03-21T15:07:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-21T15:18:43.000Z (about 6 years ago)
- Last Synced: 2025-05-03T16:33:37.500Z (about 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 23
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Network Scanner
- Scan all the current IP on your network with their MAC address
# Tech part
This script uses a number of open source projects to work properly:
- scapy
- argparse
- python
### Installation
```
pip install scapy
pip install argparse
```
### Usage
```
usage: main.py [-h] [-i TARGET]
optional arguments:
-h, --help show this help message and exit
-i TARGET, --ip TARGET
Target IP / IP Range
```
```
python main.py -i 192.168.1.1/24
```
### Pictures
[](https://i.imgur.com/a3xkBsU.png)
@LasCC