Skip to content

Files

Latest commit

4fbebf5 · Sep 18, 2020

History

History
This branch is 332 commits behind x4nth055/pythoncode-tutorials:master.

arp-spoofer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 10, 2019
Jul 30, 2019
Sep 18, 2020
Jul 30, 2019

to run this:

  • pip3 install -r requirements.txt
  • python3 arp_spoof.py --help
    
    Output:
    usage: arp_spoof.py [-h] [-v] target host
    
    ARP spoof script
    
    positional arguments:
    target         Victim IP Address to ARP poison
    host           Host IP Address, the host you wish to intercept packets for
                    (usually the gateway)
    
    optional arguments:
    -h, --help     show this help message and exit
    -v, --verbose  verbosity, default is True (simple message each second)
    
    For instance, if you want to spoof 192.168.1.2 and the gateway is 192.168.1.1:
    python3 arp_spoof 192.168.1.2 192.168.1.1 --verbose