File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5959
6060 "Injection" : {
6161 "testParameter" : "string" ,
62+ "skip" : "string" ,
6263 "dbms" : "string" ,
6364 "os" : "string" ,
6465 "invalidBignum" : "boolean" ,
6768 "noEscape" : "boolean" ,
6869 "prefix" : "string" ,
6970 "suffix" : "string" ,
70- "skip" : "string" ,
7171 "tamper" : "string" ,
7272 },
7373
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -172,6 +172,9 @@ threads = 1
172172# parameters and HTTP User-Agent are tested by sqlmap.
173173testParameter =
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.
210213suffix =
211214
212- # Skip testing for given parameter(s).
213- skip =
214-
215215# Use given script(s) for tampering injection data.
216216tamper =
217217
You can’t perform that action at this time.
0 commit comments