making --no-cast unhidden and renaming --negative-logic to --logical-negate to prevent confusion with stuff used in OR boolean based injection

This commit is contained in:
Miroslav Stampar
2012-03-30 10:50:01 +00:00
parent 79c3d6f2aa
commit 56638f9e95
5 changed files with 16 additions and 11 deletions

View File

@@ -196,12 +196,16 @@ def cmdLineParser():
injection.add_option("--suffix", dest="suffix",
help="Injection payload suffix string")
injection.add_option("--logic-negative", dest="logicNegative",
injection.add_option("--logical-negate", dest="logicalNegate",
action="store_true",
help="Use logic operation(s) instead of negating values")
help="Use logic operation(s) for negating values")
injection.add_option("--no-cast", dest="noCast",
action="store_true",
help="Turn off payload casting mechanism")
injection.add_option("--skip", dest="skip",
help="Skip testing for given parameter(s)")
help="Skip testing for given parameter(s)")
injection.add_option("--tamper", dest="tamper",
help="Use given script(s) for tampering injection data")
@@ -622,9 +626,6 @@ def cmdLineParser():
parser.add_option("--group-concat", dest="groupConcat", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--no-cast", dest="noCast", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--test-filter", dest="testFilter",
help=SUPPRESS_HELP)