Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a75d3ed

Browse files
committed
Minor style update
1 parent 3794c3c commit a75d3ed

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/core/optiondict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959

6060
"Injection": {
6161
"testParameter": "string",
62+
"skip": "string",
6263
"dbms": "string",
6364
"os": "string",
6465
"invalidBignum": "boolean",
@@ -67,7 +68,6 @@
6768
"noEscape": "boolean",
6869
"prefix": "string",
6970
"suffix": "string",
70-
"skip": "string",
7171
"tamper": "string",
7272
},
7373

lib/parse/cmdline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ def cmdLineParser():
189189
injection.add_option("-p", dest="testParameter",
190190
help="Testable parameter(s)")
191191

192+
injection.add_option("--skip", dest="skip",
193+
help="Skip testing for given parameter(s)")
194+
192195
injection.add_option("--dbms", dest="dbms",
193196
help="Force back-end DBMS to this value")
194197

@@ -218,9 +221,6 @@ def cmdLineParser():
218221
injection.add_option("--suffix", dest="suffix",
219222
help="Injection payload suffix string")
220223

221-
injection.add_option("--skip", dest="skip",
222-
help="Skip testing for given parameter(s)")
223-
224224
injection.add_option("--tamper", dest="tamper",
225225
help="Use given script(s) for tampering injection data")
226226

sqlmap.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ threads = 1
172172
# parameters and HTTP User-Agent are tested by sqlmap.
173173
testParameter =
174174

175+
# Skip testing for given parameter(s).
176+
skip =
177+
175178
# Force back-end DBMS to this value. If this option is set, the back-end
176179
# DBMS identification process will be minimized as needed.
177180
# If not set, sqlmap will detect back-end DBMS automatically by default.
@@ -209,9 +212,6 @@ prefix =
209212
# Injection payload suffix string.
210213
suffix =
211214

212-
# Skip testing for given parameter(s).
213-
skip =
214-
215215
# Use given script(s) for tampering injection data.
216216
tamper =
217217

0 commit comments

Comments
 (0)