From 015f59360621f96e7b5e0e194b6d149e59032093 Mon Sep 17 00:00:00 2001 From: byt3bl33d3r Date: Wed, 1 Oct 2014 19:24:06 +0200 Subject: [PATCH] fixed misspelled thread target function --- plugins/Spoof.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Spoof.py b/plugins/Spoof.py index 40b2ddc..7df19ac 100644 --- a/plugins/Spoof.py +++ b/plugins/Spoof.py @@ -70,7 +70,7 @@ class Spoof(Plugin): pkt = self.build_arp_req() elif self.arpmode == 'rep': pkt = self.build_arp_rep() - thread_target = self.send + thread_target = self.send_packets thread_args = (pkt, self.interface, self.debug,) elif self.icmp: @@ -78,7 +78,7 @@ class Spoof(Plugin): self.routermac = getmacbyip(self.gateway) print "[*] ICMP Redirection enabled" pkt = self.build_icmp() - thread_target = self.send + thread_target = self.send_packets thread_args = (pkt, self.interface, self.debug,) elif self.dhcp: