Minor style update

This commit is contained in:
stamparm 2013-04-04 14:21:57 +02:00 committed by Miroslav Stampar
parent 3794c3cc2f
commit a75d3ed0b8
3 changed files with 7 additions and 7 deletions

View File

@ -59,6 +59,7 @@ optDict = {
"Injection": { "Injection": {
"testParameter": "string", "testParameter": "string",
"skip": "string",
"dbms": "string", "dbms": "string",
"os": "string", "os": "string",
"invalidBignum": "boolean", "invalidBignum": "boolean",
@ -67,7 +68,6 @@ optDict = {
"noEscape": "boolean", "noEscape": "boolean",
"prefix": "string", "prefix": "string",
"suffix": "string", "suffix": "string",
"skip": "string",
"tamper": "string", "tamper": "string",
}, },

View File

@ -189,6 +189,9 @@ def cmdLineParser():
injection.add_option("-p", dest="testParameter", injection.add_option("-p", dest="testParameter",
help="Testable parameter(s)") help="Testable parameter(s)")
injection.add_option("--skip", dest="skip",
help="Skip testing for given parameter(s)")
injection.add_option("--dbms", dest="dbms", injection.add_option("--dbms", dest="dbms",
help="Force back-end DBMS to this value") help="Force back-end DBMS to this value")
@ -218,9 +221,6 @@ def cmdLineParser():
injection.add_option("--suffix", dest="suffix", injection.add_option("--suffix", dest="suffix",
help="Injection payload suffix string") help="Injection payload suffix string")
injection.add_option("--skip", dest="skip",
help="Skip testing for given parameter(s)")
injection.add_option("--tamper", dest="tamper", injection.add_option("--tamper", dest="tamper",
help="Use given script(s) for tampering injection data") help="Use given script(s) for tampering injection data")

View File

@ -172,6 +172,9 @@ threads = 1
# parameters and HTTP User-Agent are tested by sqlmap. # parameters and HTTP User-Agent are tested by sqlmap.
testParameter = testParameter =
# Skip testing for given parameter(s).
skip =
# Force back-end DBMS to this value. If this option is set, the back-end # Force back-end DBMS to this value. If this option is set, the back-end
# DBMS identification process will be minimized as needed. # DBMS identification process will be minimized as needed.
# If not set, sqlmap will detect back-end DBMS automatically by default. # If not set, sqlmap will detect back-end DBMS automatically by default.
@ -209,9 +212,6 @@ prefix =
# Injection payload suffix string. # Injection payload suffix string.
suffix = suffix =
# Skip testing for given parameter(s).
skip =
# Use given script(s) for tampering injection data. # Use given script(s) for tampering injection data.
tamper = tamper =