mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-07 05:22:15 -07:00
fixed function call
This commit is contained in:
parent
77a84118b1
commit
c6ad5cc290
2 changed files with 2 additions and 3 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 4f5537d43bde2d9689de3c3b1252e56ba991b126
|
Subproject commit 24c6e8434b08a97e9b8033cd1f2bc9be30a75982
|
|
@ -52,7 +52,7 @@ class Responder(Plugin):
|
||||||
if options.Analyse:
|
if options.Analyse:
|
||||||
print '| |_ Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned'
|
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):
|
def plugin_reactor(self, strippingFactory):
|
||||||
reactor.listenTCP(3141, 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('--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('--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('--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")
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue