Minor adjustments

This commit is contained in:
Bernardo Damele
2010-03-03 16:19:17 +00:00
parent 156fdd96ef
commit a654a426ef
5 changed files with 15 additions and 13 deletions

View File

@@ -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 "