mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-06 04:51:23 -07:00
commit
06b33edc27
3 changed files with 43 additions and 28 deletions
|
@ -1,24 +1,29 @@
|
||||||
[Responder Core]
|
[Responder Core]
|
||||||
|
|
||||||
; Servers to start
|
; Poisoners to start
|
||||||
SQL = On
|
MDNS = On
|
||||||
SMB = On
|
LLMNR = On
|
||||||
RDP = On
|
NBTNS = On
|
||||||
Kerberos = On
|
|
||||||
FTP = On
|
|
||||||
POP = On
|
|
||||||
SMTP = On
|
|
||||||
IMAP = On
|
|
||||||
HTTP = On
|
|
||||||
HTTPS = On
|
|
||||||
DNS = On
|
|
||||||
LDAP = On
|
|
||||||
DCERPC = On
|
|
||||||
WINRM = On
|
|
||||||
SNMP = Off
|
|
||||||
MQTT = On
|
|
||||||
|
|
||||||
; Custom challenge.
|
; Servers to start
|
||||||
|
SQL = On
|
||||||
|
SMB = On
|
||||||
|
RDP = On
|
||||||
|
Kerberos = On
|
||||||
|
FTP = On
|
||||||
|
POP = On
|
||||||
|
SMTP = On
|
||||||
|
IMAP = On
|
||||||
|
HTTP = On
|
||||||
|
HTTPS = On
|
||||||
|
DNS = On
|
||||||
|
LDAP = On
|
||||||
|
DCERPC = On
|
||||||
|
WINRM = On
|
||||||
|
SNMP = Off
|
||||||
|
MQTT = On
|
||||||
|
|
||||||
|
; Custom challenge.
|
||||||
; Use "Random" for generating a random challenge for each requests (Default)
|
; Use "Random" for generating a random challenge for each requests (Default)
|
||||||
Challenge = Random
|
Challenge = Random
|
||||||
|
|
||||||
|
@ -65,8 +70,8 @@ AutoIgnoreAfterSuccess = Off
|
||||||
; This may break file serving and is useful only for hash capture
|
; This may break file serving and is useful only for hash capture
|
||||||
CaptureMultipleCredentials = On
|
CaptureMultipleCredentials = On
|
||||||
|
|
||||||
; If set to On, we will write to file all hashes captured from the same host.
|
; If set to On, we will write to file all hashes captured from the same host.
|
||||||
; In this case, Responder will log from 172.16.0.12 all user hashes: domain\toto,
|
; In this case, Responder will log from 172.16.0.12 all user hashes: domain\toto,
|
||||||
; domain\popo, domain\zozo. Recommended value: On, capture everything.
|
; domain\popo, domain\zozo. Recommended value: On, capture everything.
|
||||||
CaptureMultipleHashFromSameHost = On
|
CaptureMultipleHashFromSameHost = On
|
||||||
|
|
||||||
|
|
19
Responder.py
19
Responder.py
|
@ -294,16 +294,21 @@ def main():
|
||||||
if (sys.version_info < (3, 0)):
|
if (sys.version_info < (3, 0)):
|
||||||
print(color('\n\n[-]', 3, 1) + " Still using python 2? :(")
|
print(color('\n\n[-]', 3, 1) + " Still using python 2? :(")
|
||||||
print(color('\n[+]', 2, 1) + " Listening for events...\n")
|
print(color('\n[+]', 2, 1) + " Listening for events...\n")
|
||||||
|
|
||||||
threads = []
|
threads = []
|
||||||
|
|
||||||
# Load (M)DNS, NBNS and LLMNR Poisoners
|
# Load (M)DNS, NBNS and LLMNR Poisoners
|
||||||
from poisoners.LLMNR import LLMNR
|
if settings.Config.LLMNR_On_Off:
|
||||||
from poisoners.NBTNS import NBTNS
|
from poisoners.LLMNR import LLMNR
|
||||||
from poisoners.MDNS import MDNS
|
threads.append(Thread(target=serve_LLMNR_poisoner, args=('', 5355, LLMNR,)))
|
||||||
threads.append(Thread(target=serve_LLMNR_poisoner, args=('', 5355, LLMNR,)))
|
|
||||||
threads.append(Thread(target=serve_MDNS_poisoner, args=('', 5353, MDNS,)))
|
if settings.Config.NBTNS_On_Off:
|
||||||
threads.append(Thread(target=serve_NBTNS_poisoner, args=('', 137, NBTNS,)))
|
from poisoners.NBTNS import NBTNS
|
||||||
|
threads.append(Thread(target=serve_NBTNS_poisoner, args=('', 137, NBTNS,)))
|
||||||
|
|
||||||
|
if settings.Config.MDNS_On_Off:
|
||||||
|
from poisoners.MDNS import MDNS
|
||||||
|
threads.append(Thread(target=serve_MDNS_poisoner, args=('', 5353, MDNS,)))
|
||||||
|
|
||||||
#// Vintage Responder BOWSER module, now disabled by default.
|
#// Vintage Responder BOWSER module, now disabled by default.
|
||||||
#// Generate to much noise & easily detectable on the network when in analyze mode.
|
#// Generate to much noise & easily detectable on the network when in analyze mode.
|
||||||
|
|
|
@ -114,7 +114,12 @@ class Settings:
|
||||||
# Config parsing
|
# Config parsing
|
||||||
config = ConfigParser.ConfigParser()
|
config = ConfigParser.ConfigParser()
|
||||||
config.read(os.path.join(self.ResponderPATH, 'Responder.conf'))
|
config.read(os.path.join(self.ResponderPATH, 'Responder.conf'))
|
||||||
|
|
||||||
|
# Poisoners
|
||||||
|
self.LLMNR_On_Off = self.toBool(config.get('Responder Core', 'LLMNR'))
|
||||||
|
self.NBNS_On_Off = self.toBool(config.get('Responder Core', 'NBTNS'))
|
||||||
|
self.MDNS_On_Off = self.toBool(config.get('Responder Core', 'MDNS'))
|
||||||
|
|
||||||
# Servers
|
# Servers
|
||||||
self.HTTP_On_Off = self.toBool(config.get('Responder Core', 'HTTP'))
|
self.HTTP_On_Off = self.toBool(config.get('Responder Core', 'HTTP'))
|
||||||
self.SSL_On_Off = self.toBool(config.get('Responder Core', 'HTTPS'))
|
self.SSL_On_Off = self.toBool(config.get('Responder Core', 'HTTPS'))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue