diff --git a/libs/responder b/libs/responder index 4f5537d..24c6e84 160000 --- a/libs/responder +++ b/libs/responder @@ -1 +1 @@ -Subproject commit 4f5537d43bde2d9689de3c3b1252e56ba991b126 +Subproject commit 24c6e8434b08a97e9b8033cd1f2bc9be30a75982 diff --git a/plugins/Responder.py b/plugins/Responder.py index 451297d..9edc843 100644 --- a/plugins/Responder.py +++ b/plugins/Responder.py @@ -52,7 +52,7 @@ class Responder(Plugin): if options.Analyse: print '| |_ Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned' - start_responder(options, options.ip_address, config) + start_responder(options, config) def plugin_reactor(self, strippingFactory): reactor.listenTCP(3141, strippingFactory) @@ -66,4 +66,3 @@ class Responder(Plugin): options.add_argument('--wpad', dest="WPAD_On_Off", default=False, action="store_true", help = "Set this to start the WPAD rogue proxy server. Default value is False") options.add_argument('--forcewpadauth', dest="Force_WPAD_Auth", default=False, action="store_true", help = "Set this if you want to force NTLM/Basic authentication on wpad.dat file retrieval. This might cause a login prompt in some specific cases. Therefore, default value is False") options.add_argument('--lm', dest="LM_On_Off", default=False, action="store_true", help="Set this if you want to force LM hashing downgrade for Windows XP/2003 and earlier. Default value is False") - options.add_argument('--verbose', dest="Verbose", default=False, action="store_true", help="More verbose")