mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-12 08:07:11 -07:00
fixed the responder plugin (im a dummy)
This commit is contained in:
parent
88a4e15900
commit
33c9eda05b
2 changed files with 5 additions and 5 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 137e8eea61ef3c3d0426312a72894d6a4ed32cef
|
Subproject commit fe4eab580de4ba89d82c16d88670c72c712c332a
|
|
@ -48,15 +48,15 @@ class Responder(Plugin):
|
||||||
if options.Analyze:
|
if options.Analyze:
|
||||||
self.tree_output.append("Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned")
|
self.tree_output.append("Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned")
|
||||||
|
|
||||||
resp = ResponderMITMf(options, config)
|
resp = ResponderMITMf()
|
||||||
#resp.setCoreVars(options, config)
|
resp.setCoreVars(options, config)
|
||||||
|
|
||||||
result = resp.AnalyzeICMPRedirect(options.Analyze)
|
result = resp.AnalyzeICMPRedirect()
|
||||||
if result:
|
if result:
|
||||||
for line in result:
|
for line in result:
|
||||||
self.tree_output.append(line)
|
self.tree_output.append(line)
|
||||||
|
|
||||||
#resp.printDebugInfo()
|
resp.printDebugInfo()
|
||||||
resp.start()
|
resp.start()
|
||||||
|
|
||||||
def plugin_reactor(self, strippingFactory):
|
def plugin_reactor(self, strippingFactory):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue