mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Unhidding switch '--identify-waf' (Issue #290)
This commit is contained in:
parent
08f0670aca
commit
29ba43ee6c
3 changed files with 11 additions and 6 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue