mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-10 23:33:39 -07:00
added print statements
This commit is contained in:
parent
4fdc2b9033
commit
fb45e40bd6
1 changed files with 2 additions and 0 deletions
|
@ -33,11 +33,13 @@ class AirPwn(Plugin):
|
||||||
except:
|
except:
|
||||||
sys.exit("[-] Error parsing airpwn config file")
|
sys.exit("[-] Error parsing airpwn config file")
|
||||||
|
|
||||||
|
print "[*] AirPwn plugin online"
|
||||||
t = threading.Thread(name='sniff_http_thread', target=self.sniff_http, args=(self.mon_interface,))
|
t = threading.Thread(name='sniff_http_thread', target=self.sniff_http, args=(self.mon_interface,))
|
||||||
t.setDaemon(True)
|
t.setDaemon(True)
|
||||||
t.start()
|
t.start()
|
||||||
|
|
||||||
if self.dnspwn:
|
if self.dnspwn:
|
||||||
|
print "[*] DNSpwn attack enabled"
|
||||||
t2 = threading.Thread(name='sniff_dns_thread', target=self.sniff_dns, args=(self.mon_interface,))
|
t2 = threading.Thread(name='sniff_dns_thread', target=self.sniff_dns, args=(self.mon_interface,))
|
||||||
t2.setDaemon(True)
|
t2.setDaemon(True)
|
||||||
t2.start()
|
t2.start()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue