https://github.com/lascc/arp-detector
Detect arp spoofing attacks on selected network interface
https://github.com/lascc/arp-detector
Last synced: 9 months ago
JSON representation
Detect arp spoofing attacks on selected network interface
- Host: GitHub
- URL: https://github.com/lascc/arp-detector
- Owner: LasCC
- Created: 2020-03-22T22:20:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-22T22:27:04.000Z (about 6 years ago)
- Last Synced: 2024-11-13T00:22:14.532Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ARP Spoofing detector
Scan all the ARP packet sent to the selected network interface and print a text if there is an attack.
# Tech part
This script uses a number of open source projects to work properly:
- scapy
- argparse
- python3
### Installation
```
pip install scapy
pip install argparse
```
### Usage
```
usage: main.py [-h] [-i INTERFACE]
optional arguments:
-h, --help show this help message and exit
-i INTERFACE, --ip INTERFACE
Write the network interface
```
```
python3 main.py -i enO
```
### Pictures
[](https://i.imgur.com/qcdg6Wo.png)
@LasCC