mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
little hack for --time-sec
This commit is contained in:
parent
6463cad8c5
commit
f5cff067c6
|
@ -1203,7 +1203,11 @@ def __cleanupOptions():
|
|||
if conf.data:
|
||||
conf.data = urldecode(conf.data)
|
||||
|
||||
kb.adjustTimeDelay = (conf.timeSec == TIME_DEFAULT_DELAY)
|
||||
if conf.timeSec == TIME_DEFAULT_DELAY:
|
||||
conf.timeSec = int(conf.timeSec)
|
||||
kb.adjustTimeDelay = True
|
||||
else:
|
||||
kb.adjustTimeDelay = False
|
||||
|
||||
def __setConfAttributes():
|
||||
"""
|
||||
|
|
|
@ -75,8 +75,8 @@ UNION_STDEV_COEFF = 7
|
|||
# length of queue for candidates for time delay adjustment
|
||||
TIME_DELAY_CANDIDATES = 3
|
||||
|
||||
# default time delay in seconds
|
||||
TIME_DEFAULT_DELAY = 5
|
||||
# default time delay in seconds (decimal places added to distinguish explicit usage of --time-sec)
|
||||
TIME_DEFAULT_DELAY = 5.0001
|
||||
|
||||
# HTTP timeout in silent mode
|
||||
HTTP_SILENT_TIMEOUT = 3
|
||||
|
|
|
@ -214,7 +214,7 @@ def cmdLineParser():
|
|||
techniques.add_option("--time-sec", dest="timeSec",
|
||||
type="int", default=TIME_DEFAULT_DELAY,
|
||||
help="Seconds to delay the DBMS response "
|
||||
"(default 5)")
|
||||
"(default %s)" % int(TIME_DEFAULT_DELAY))
|
||||
|
||||
techniques.add_option("--union-cols", dest="uCols",
|
||||
help="Range of columns to test for UNION query SQL injection")
|
||||
|
|
Loading…
Reference in New Issue
Block a user