Merge pull request #3 from xdavidhu/master

spoof.py fix
This commit is contained in:
Nikolaos Kamarinakis 2016-12-26 23:05:45 +02:00 committed by GitHub
commit 8cdfff14ef
1 changed files with 1 additions and 1 deletions

View File

@ -27,5 +27,5 @@ impersonation = # IMPERSONATION MAC
# CRAFT & SEND PACKET
packet = Ether()/ARP(op="who-has", hwsrc=my_mac, psrc=impersonation, pdst=target)
packet = 'Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(op="who-has", hwsrc='+my_mac+', psrc='+impersonation+', pdst='+target+')'
sendp(packet)