mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-12 16:13:59 -07:00
fixed misspelled thread target function
This commit is contained in:
parent
c3e4a90130
commit
015f593606
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue