diff --git a/CHANGELOG.txt b/CHANGELOG.txt index abb45bf..15d34ae 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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. diff --git a/README.txt b/README.txt index 4a72eca..f5a2f75 100644 --- a/README.txt +++ b/README.txt @@ -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: diff --git a/Responder.py b/Responder.py index 52b88f7..69d1abe 100644 --- a/Responder.py +++ b/Responder.py @@ -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()