Updated the README and Responder help flags

This commit is contained in:
root 2022-01-11 15:37:14 -06:00
parent 5cf69228cf
commit afb54fa274
2 changed files with 20 additions and 23 deletions

View file

@ -125,10 +125,9 @@ Running the tool:
Typical Usage Example: Typical Usage Example:
./Responder.py -I eth0 -rPv ./Responder.py -I eth0 -Pv
Options: Options:
--version show program's version number and exit --version show program's version number and exit
-h, --help show this help message and exit -h, --help show this help message and exit
-A, --analyze Analyze mode. This option allows you to see NBT-NS, -A, --analyze Analyze mode. This option allows you to see NBT-NS,
@ -145,9 +144,6 @@ Options:
Poison all requests with another IP address than Poison all requests with another IP address than
Responder's one. Responder's one.
-b, --basic Return a Basic HTTP authentication. Default: NTLM -b, --basic Return a Basic HTTP authentication. Default: NTLM
-r, --wredir Enable answers for netbios wredir suffix queries.
Answering to wredir will likely break stuff on the
network. Default: False
-d, --DHCP Enable answers for DHCP broadcast requests. This -d, --DHCP Enable answers for DHCP broadcast requests. This
option will inject a WPAD server in the DHCP response. option will inject a WPAD server in the DHCP response.
Default: False Default: False
@ -173,6 +169,7 @@ Options:
## Donation ## ## Donation ##
You can contribute to this project by donating to the following $XLM (Stellar Lumens) address: You can contribute to this project by donating to the following $XLM (Stellar Lumens) address:

View file

@ -25,7 +25,7 @@ from utils import *
import struct import struct
banner() banner()
parser = optparse.OptionParser(usage='python %prog -I eth0 -w -r -f\nor:\npython %prog -I eth0 -wrf', version=settings.__version__, prog=sys.argv[0]) parser = optparse.OptionParser(usage='python %prog -I eth0 -w -d\nor:\npython %prog -I eth0 -wd', version=settings.__version__, prog=sys.argv[0])
parser.add_option('-A','--analyze', action="store_true", help="Analyze mode. This option allows you to see NBT-NS, BROWSER, LLMNR requests without responding.", dest="Analyze", default=False) parser.add_option('-A','--analyze', action="store_true", help="Analyze mode. This option allows you to see NBT-NS, BROWSER, LLMNR requests without responding.", dest="Analyze", default=False)
parser.add_option('-I','--interface', action="store", help="Network interface to use, you can use 'ALL' as a wildcard for all interfaces", dest="Interface", metavar="eth0", default=None) parser.add_option('-I','--interface', action="store", help="Network interface to use, you can use 'ALL' as a wildcard for all interfaces", dest="Interface", metavar="eth0", default=None)
parser.add_option('-i','--ip', action="store", help="Local IP to use \033[1m\033[31m(only for OSX)\033[0m", dest="OURIP", metavar="10.0.0.21", default=None) parser.add_option('-i','--ip', action="store", help="Local IP to use \033[1m\033[31m(only for OSX)\033[0m", dest="OURIP", metavar="10.0.0.21", default=None)