fixed the responder plugin (im a dummy)

This commit is contained in:
byt3bl33d3r 2015-04-17 02:11:00 +02:00
parent 88a4e15900
commit 33c9eda05b
2 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 137e8eea61ef3c3d0426312a72894d6a4ed32cef
Subproject commit fe4eab580de4ba89d82c16d88670c72c712c332a

View file

@ -48,15 +48,15 @@ class Responder(Plugin):
if options.Analyze:
self.tree_output.append("Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned")
resp = ResponderMITMf(options, config)
#resp.setCoreVars(options, config)
resp = ResponderMITMf()
resp.setCoreVars(options, config)
result = resp.AnalyzeICMPRedirect(options.Analyze)
result = resp.AnalyzeICMPRedirect()
if result:
for line in result:
self.tree_output.append(line)
#resp.printDebugInfo()
resp.printDebugInfo()
resp.start()
def plugin_reactor(self, strippingFactory):