mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-14 02:27:12 -07:00
Send ACCOUNT_DISABLED on the first SMB authentication to gather multiple credentials if there are any.
This commit is contained in:
parent
59337ab87d
commit
eee552b895
3 changed files with 26 additions and 4 deletions
|
@ -146,8 +146,9 @@ class Settings:
|
|||
self.DontRespondToName = filter(None, [x.upper().strip() for x in config.get('Responder Core', 'DontRespondToName').strip().split(',')])
|
||||
|
||||
# Auto Ignore List
|
||||
self.AutoIgnore = self.toBool(config.get('Responder Core', 'AutoIgnoreAfterSuccess'))
|
||||
self.AutoIgnoreList = []
|
||||
self.AutoIgnore = self.toBool(config.get('Responder Core', 'AutoIgnoreAfterSuccess'))
|
||||
self.CaptureMultipleCredentials = self.toBool(config.get('Responder Core', 'CaptureMultipleCredentials'))
|
||||
self.AutoIgnoreList = []
|
||||
|
||||
# CLI options
|
||||
self.LM_On_Off = options.LM_On_Off
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue