mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-14 02:27:12 -07:00
added option to disable a TLD due to windows 11 infinite loop with _dosvc
This commit is contained in:
parent
538e6c0d0d
commit
e918fe01c6
3 changed files with 13 additions and 3 deletions
|
@ -23,7 +23,7 @@ import subprocess
|
|||
|
||||
from utils import *
|
||||
|
||||
__version__ = 'Responder 3.1.4.0'
|
||||
__version__ = 'Responder 3.1.5.0'
|
||||
|
||||
class Settings:
|
||||
|
||||
|
@ -284,6 +284,7 @@ class Settings:
|
|||
self.RespondTo = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'RespondTo').strip().split(',')]))
|
||||
self.RespondToName = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'RespondToName').strip().split(',')]))
|
||||
self.DontRespondTo = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'DontRespondTo').strip().split(',')]))
|
||||
self.DontRespondToTLD = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'DontRespondToTLD').strip().split(',')]))
|
||||
self.DontRespondToName_= list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'DontRespondToName').strip().split(',')]))
|
||||
#add a .local to all provided DontRespondToName
|
||||
self.MDNSTLD = ['.LOCAL']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue