diff --git a/libs/responder b/libs/responder index 137e8ee..fe4eab5 160000 --- a/libs/responder +++ b/libs/responder @@ -1 +1 @@ -Subproject commit 137e8eea61ef3c3d0426312a72894d6a4ed32cef +Subproject commit fe4eab580de4ba89d82c16d88670c72c712c332a diff --git a/plugins/Responder.py b/plugins/Responder.py index 9c51545..81c0186 100644 --- a/plugins/Responder.py +++ b/plugins/Responder.py @@ -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):