mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixing desync error from SLOW_ORDER_COUNT_THRESHOLD
This commit is contained in:
parent
1cdc69eb0e
commit
40ccd801dc
5 changed files with 58 additions and 24 deletions
|
|
@ -189,12 +189,12 @@ def _dumpSingle(tbl, colList, count, cursor, tableRef, entries, lengths):
|
|||
produced = 0
|
||||
|
||||
while produced < target:
|
||||
if pivotValue is None:
|
||||
query = blind.keyset_first % (field, tableRef)
|
||||
else:
|
||||
query = _embed(blind.keyset_next, pivotValue, field, tableRef, field)
|
||||
|
||||
query = agent.whereQuery(query)
|
||||
# Advance with ORDER BY ... LIMIT 1 (like the composite path), NOT MIN(): the value-extraction
|
||||
# casts the aggregated column to VARCHAR *inside* MIN(), yielding a LEXICAL minimum ('10' after
|
||||
# '1') that disagrees with the numeric '>' comparison and silently skips rows (2..9, 11..). The
|
||||
# ORDER BY is on the raw (numeric) column, so the next cursor value is the true successor.
|
||||
condition = "1=1" if pivotValue is None else "%s>%s" % (field, _lit(pivotValue))
|
||||
query = agent.whereQuery(blind.keyset_ordered % (field, tableRef, condition, field))
|
||||
value = unArrayizeValue(inject.getValue(query))
|
||||
|
||||
if isNoneValue(value) or value == NULL:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue