mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-18 21:52:51 +00:00
Implements #1442
This commit is contained in:
parent
29edb4f75c
commit
53de0e8949
5 changed files with 21 additions and 0 deletions
|
|
@ -1634,6 +1634,10 @@ def _cleanupOptions():
|
|||
conf.testFilter = conf.testFilter.strip('*+')
|
||||
conf.testFilter = re.sub(r"([^.])([*+])", "\g<1>.\g<2>", conf.testFilter)
|
||||
|
||||
if conf.testSkip:
|
||||
conf.testSkip = conf.testSkip.strip('*+')
|
||||
conf.testSkip = re.sub(r"([^.])([*+])", "\g<1>.\g<2>", conf.testSkip)
|
||||
|
||||
if "timeSec" not in kb.explicitSettings:
|
||||
if conf.tor:
|
||||
conf.timeSec = 2 * conf.timeSec
|
||||
|
|
|
|||
|
|
@ -205,6 +205,7 @@ optDict = {
|
|||
"saveConfig": "string",
|
||||
"scope": "string",
|
||||
"testFilter": "string",
|
||||
"testSkip": "string",
|
||||
"updateAll": "boolean",
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue