https://github.com/lascc/arp-spoofer
ARP spoofer using scapy
https://github.com/lascc/arp-spoofer
Last synced: about 1 year ago
JSON representation
ARP spoofer using scapy
- Host: GitHub
- URL: https://github.com/lascc/arp-spoofer
- Owner: LasCC
- Created: 2020-03-21T15:20:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-22T22:28:51.000Z (about 6 years ago)
- Last Synced: 2025-04-07T18:11:45.153Z (about 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ARP Spoofer
ARP spoofing is a type of attack in which a malicious actor sends falsified ARP (Address Resolution Protocol) messages over a local area network. This results in the linking of an attacker’s MAC address with the IP address of a legitimate computer or server on the network.
# 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 TARGET_IP] [-g GATEWAY]
optional arguments:
-h, --help show this help message and exit
-i TARGET_IP, --ip TARGET_IP
Target IP (ex: 192.168.1.44)
-g GATEWAY, --gateway GATEWAY
Gateway of the network (ex: 192.168.1.1)
```
```
python3 main.py -i 192.168.1.44 -g 192.168.1.1
```
### Pictures
[](https://i.imgur.com/1uGJ4d4.png)
@LasCC