mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
closes #219 - unhidden switch --technique and adapted code accordingly (renamed conf.technique to conf.tech to fit properly in the -h help message)
This commit is contained in:
parent
8b14a9eaa7
commit
05d12790f1
8 changed files with 48 additions and 17 deletions
|
|
@ -207,6 +207,10 @@ def cmdLineParser():
|
|||
"used to tweak testing of specific SQL "
|
||||
"injection techniques.")
|
||||
|
||||
techniques.add_option("--technique", dest="tech", type="int",
|
||||
default=0, help="SQL injection techniques to "
|
||||
"test for (default all)")
|
||||
|
||||
techniques.add_option("--time-sec", dest="timeSec",
|
||||
type="int", default=TIME_DEFAULT_DELAY,
|
||||
help="Seconds to delay the DBMS response "
|
||||
|
|
@ -528,9 +532,6 @@ def cmdLineParser():
|
|||
parser.add_option("--run-case", dest="runCase", type="int",
|
||||
default=None, help=SUPPRESS_HELP)
|
||||
|
||||
parser.add_option("--technique", dest="technique", type="int",
|
||||
default=0, help=SUPPRESS_HELP)
|
||||
|
||||
parser.add_option("--group-concat", dest="groupConcat", action="store_true",
|
||||
default=False, help=SUPPRESS_HELP)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue