mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
unfix (conf.timeSec is an integer - my fault)
This commit is contained in:
parent
2323d858a9
commit
0a4c1f8aec
|
@ -45,7 +45,7 @@ def stackedTest():
|
||||||
query = getDelayQuery()
|
query = getDelayQuery()
|
||||||
start = time.time()
|
start = time.time()
|
||||||
payload, _ = inject.goStacked(query)
|
payload, _ = inject.goStacked(query)
|
||||||
duration = time.time() - start
|
duration = int(time.time() - start)
|
||||||
|
|
||||||
if duration >= conf.timeSec:
|
if duration >= conf.timeSec:
|
||||||
infoMsg = "the web application supports stacked queries "
|
infoMsg = "the web application supports stacked queries "
|
||||||
|
|
Loading…
Reference in New Issue
Block a user