Unhidding switch '--identify-waf' (Issue #290)

This commit is contained in:
stamparm
2013-02-21 14:48:19 +01:00
parent 08f0670aca
commit 29ba43ee6c
3 changed files with 11 additions and 6 deletions

View File

@@ -614,7 +614,7 @@ def cmdLineParser():
miscellaneous.add_option("--check-waf", dest="checkWaf",
action="store_true",
help="Check for existence of WAF/IPS/IDS protection")
help="Heuristically check for WAF/IPS/IDS protection")
miscellaneous.add_option("--cleanup", dest="cleanup",
action="store_true",
@@ -636,6 +636,10 @@ def cmdLineParser():
action="store_true",
help="Use HTTP parameter pollution")
miscellaneous.add_option("--identify-waf", dest="identifyWaf",
action="store_true",
help="Make a through testing for a WAF/IPS/IDS protection")
miscellaneous.add_option("--mobile", dest="mobile",
action="store_true",
help="Imitate smartphone through HTTP User-Agent header")
@@ -674,9 +678,6 @@ def cmdLineParser():
parser.add_option("--force-dns", dest="forceDns", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--identify-waf", dest="identifyWaf", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--smoke-test", dest="smokeTest", action="store_true",
help=SUPPRESS_HELP)