mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
update regarding time based data retrieval
This commit is contained in:
parent
ec1ab3cd2a
commit
30d6791968
6 changed files with 43 additions and 16 deletions
|
|
@ -49,7 +49,9 @@ from lib.utils.resume import resume
|
|||
def __goInference(payload, expression, charsetType=None, firstChar=None, lastChar=None):
|
||||
start = time.time()
|
||||
|
||||
if ( conf.eta or conf.threads > 1 ) and getIdentifiedDBMS():
|
||||
timeBasedCompare = (kb.technique in (PAYLOAD.TECHNIQUE.TIME, PAYLOAD.TECHNIQUE.STACKED))
|
||||
|
||||
if ( conf.eta or conf.threads > 1 ) and getIdentifiedDBMS() and not timeBasedCompare:
|
||||
_, length, _ = queryOutputLength(expression, payload)
|
||||
else:
|
||||
length = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue