mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-19 21:03:33 -07:00
Merge pull request #14 from picchioni/master
Changed some documentation
This commit is contained in:
commit
ee1f1966ff
3 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ ChangeLog from 0.6 to 1.9:
|
|||
- Fix: Fixed bug in HTTP server.
|
||||
- Added: Rogue LDAP auth server. Supports clear text password and NTLMSSP.
|
||||
- Added: Ability to turn on/off the DNS server.
|
||||
- Added: Icmp-Redirect.py for MITM Windows =< 5.2 Domain members.
|
||||
- Added: Icmp-Redirect.py for MITM Windows XP/2003 and earlier Domain members.
|
||||
- Added: SMB Clear Text function for NT4 specific.
|
||||
- Added: DNS server module.
|
||||
- Added: FTP server module.
|
||||
|
|
|
@ -69,7 +69,7 @@ FEATURES
|
|||
|
||||
- Browser Listener finds the PDC in stealth mode.
|
||||
|
||||
- Icmp Redirect for MITM on Windows =< 5.2 Domain members. This attack combined with
|
||||
- Icmp Redirect for MITM on Windows XP/2003 and earlier Domain members. This attack combined with
|
||||
the DNS module is pretty effective.
|
||||
|
||||
- WPAD rogue transparent proxy server. This module will *silently* grab the encrypted
|
||||
|
@ -152,7 +152,7 @@ Options List:
|
|||
proxy server. Default value is On
|
||||
|
||||
--lm=0 Set this to 1 if you want to force LM hashing
|
||||
downgrade for Windows <= 5.2. Default value is False (0)
|
||||
downgrade for Windows XP/2003 and earlier. Default value is False (0)
|
||||
|
||||
|
||||
For more information read these posts:
|
||||
|
|
|
@ -51,7 +51,7 @@ parser.add_option('-D','--dns', action="store", dest="DNS_On_Off", help = "Set t
|
|||
|
||||
parser.add_option('-w','--wpad', action="store", dest="WPAD_On_Off", help = "Set this to On or Off to start/stop the WPAD rogue proxy server. Default value is Off", metavar="Off", choices=['On','Off'], default="Off")
|
||||
|
||||
parser.add_option('--lm',action="store", help="Set this to 1 if you want to force LM hashing downgrade for Windows <= 5.2. Default value is False (0)", metavar="0",dest="LM_On_Off", choices=['0','1'], default="0")
|
||||
parser.add_option('--lm',action="store", help="Set this to 1 if you want to force LM hashing downgrade for Windows XP/2003 and earlier. Default value is False (0)", metavar="0",dest="LM_On_Off", choices=['0','1'], default="0")
|
||||
|
||||
options, args = parser.parse_args()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue