mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Bug fix (time was also meant to be disabled in case of error/inband getvalues)
This commit is contained in:
parent
7207cf29dd
commit
06805b27f2
9 changed files with 19 additions and 19 deletions
|
|
@ -147,7 +147,7 @@ class Entries:
|
|||
if not (isTechniqueAvailable(PAYLOAD.TECHNIQUE.UNION) and kb.injection.data[PAYLOAD.TECHNIQUE.UNION].where == PAYLOAD.WHERE.ORIGINAL):
|
||||
table = "%s.%s" % (conf.db, tbl)
|
||||
|
||||
retVal = pivotDumpTable(table, colList, blind=False)
|
||||
retVal = pivotDumpTable(table, colList, blind=False, time=False)
|
||||
|
||||
if retVal:
|
||||
entries, _ = retVal
|
||||
|
|
@ -160,7 +160,7 @@ class Entries:
|
|||
query = rootQuery.inband.query % (colString, conf.db, tbl)
|
||||
|
||||
if not entries and query:
|
||||
entries = inject.getValue(query, blind=False, dump=True)
|
||||
entries = inject.getValue(query, blind=False, time=False, dump=True)
|
||||
|
||||
if isNoneValue(entries):
|
||||
entries = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue