mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-14 00:53:01 -07:00
Updated the README and Responder help flags
This commit is contained in:
parent
5cf69228cf
commit
afb54fa274
2 changed files with 20 additions and 23 deletions
41
README.md
41
README.md
|
@ -125,51 +125,48 @@ 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,
|
|
||||||
BROWSER, LLMNR requests without responding.
|
BROWSER, LLMNR requests without responding.
|
||||||
-I eth0, --interface=eth0
|
-I eth0, --interface=eth0
|
||||||
Network interface to use, you can use 'ALL' as a
|
Network interface to use, you can use 'ALL' as a
|
||||||
wildcard for all interfaces
|
wildcard for all interfaces
|
||||||
-i 10.0.0.21, --ip=10.0.0.21
|
-i 10.0.0.21, --ip=10.0.0.21
|
||||||
Local IP to use (only for OSX)
|
Local IP to use (only for OSX)
|
||||||
-6 2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed, --externalip6=2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed
|
-6 2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed, --externalip6=2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed
|
||||||
Poison all requests with another IPv6 address than
|
Poison all requests with another IPv6 address than
|
||||||
Responder's one.
|
Responder's one.
|
||||||
-e 10.0.0.22, --externalip=10.0.0.22
|
-e 10.0.0.22, --externalip=10.0.0.22
|
||||||
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.
|
-d, --DHCP Enable answers for DHCP broadcast requests. This
|
||||||
Answering to wredir will likely break stuff on the
|
|
||||||
network. Default: False
|
|
||||||
-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
|
||||||
-D, --DHCP-DNS This option will inject a DNS server in the DHCP
|
-D, --DHCP-DNS This option will inject a DNS server in the DHCP
|
||||||
response, otherwise a WPAD server will be added.
|
response, otherwise a WPAD server will be added.
|
||||||
Default: False
|
Default: False
|
||||||
-w, --wpad Start the WPAD rogue proxy server. Default value is
|
-w, --wpad Start the WPAD rogue proxy server. Default value is
|
||||||
False
|
False
|
||||||
-u UPSTREAM_PROXY, --upstream-proxy=UPSTREAM_PROXY
|
-u UPSTREAM_PROXY, --upstream-proxy=UPSTREAM_PROXY
|
||||||
Upstream HTTP proxy used by the rogue WPAD Proxy for
|
Upstream HTTP proxy used by the rogue WPAD Proxy for
|
||||||
outgoing requests (format: host:port)
|
outgoing requests (format: host:port)
|
||||||
-F, --ForceWpadAuth Force NTLM/Basic authentication on wpad.dat file
|
-F, --ForceWpadAuth Force NTLM/Basic authentication on wpad.dat file
|
||||||
retrieval. This may cause a login prompt. Default:
|
retrieval. This may cause a login prompt. Default:
|
||||||
False
|
False
|
||||||
-P, --ProxyAuth Force NTLM (transparently)/Basic (prompt)
|
-P, --ProxyAuth Force NTLM (transparently)/Basic (prompt)
|
||||||
authentication for the proxy. WPAD doesn't need to be
|
authentication for the proxy. WPAD doesn't need to be
|
||||||
ON. This option is highly effective when combined with
|
ON. This option is highly effective when combined with
|
||||||
-r. Default: False
|
-r. Default: False
|
||||||
--lm Force LM hashing downgrade for Windows XP/2003 and
|
--lm Force LM hashing downgrade for Windows XP/2003 and
|
||||||
earlier. Default: False
|
earlier. Default: False
|
||||||
--disable-ess Force ESS downgrade. Default: False
|
--disable-ess Force ESS downgrade. Default: False
|
||||||
-v, --verbose Increase verbosity.
|
-v, --verbose Increase verbosity.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue