mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-08-20 05:23:28 -07:00
Re-Wrote Beef-api, refactored the beefAutorun plugin as per #113, this also should address any problems left over from #106
This commit is contained in:
parent
7110238fb2
commit
316246e3cc
7 changed files with 339 additions and 201 deletions
7
mitmf.py
7
mitmf.py
|
@ -158,9 +158,10 @@ for p in ProxyPlugins.getInstance().plist:
|
|||
p.pluginReactor(strippingFactory) #we pass the default strippingFactory, so the plugins can use it
|
||||
p.startConfigWatch()
|
||||
|
||||
t = threading.Thread(name='{}-thread'.format(p.name), target=p.startThread, args=(args,))
|
||||
t.setDaemon(True)
|
||||
t.start()
|
||||
if hasattr(p, 'startThread'):
|
||||
t = threading.Thread(name='{}-Thread'.format(p.name), target=p.startThread)
|
||||
t.setDaemon(True)
|
||||
t.start()
|
||||
|
||||
print "|"
|
||||
print "|_ Sergio-Proxy v{} online".format(sergio_version)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue