mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor adjustments
This commit is contained in:
parent
156fdd96ef
commit
a654a426ef
5 changed files with 15 additions and 13 deletions
|
|
@ -111,6 +111,10 @@ def cmdLineParser():
|
|||
request.add_option("--proxy", dest="proxy",
|
||||
help="Use a HTTP proxy to connect to the target url")
|
||||
|
||||
request.add_option("--ignore-proxy", dest="ignoreProxy",
|
||||
action="store_true",
|
||||
help="Ignore system default HTTP proxy")
|
||||
|
||||
request.add_option("--threads", dest="threads", type="int", default=1,
|
||||
help="Maximum number of concurrent HTTP "
|
||||
"requests (default 1)")
|
||||
|
|
@ -129,10 +133,6 @@ def cmdLineParser():
|
|||
request.add_option("--scope", dest="scope",
|
||||
help="Regexp to filter targets from provided proxy log")
|
||||
|
||||
request.add_option("--ignore-proxy", dest="ignoreProxy",
|
||||
action="store_true",
|
||||
help="Ignore system default HTTP proxy")
|
||||
|
||||
# Injection options
|
||||
injection = OptionGroup(parser, "Injection", "These options can be "
|
||||
"used to specify which parameters to test "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue