mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
speedup of UNION dumping
This commit is contained in:
parent
1ae413a206
commit
4a1a0773b7
3 changed files with 7 additions and 5 deletions
|
|
@ -233,13 +233,13 @@ def unionUse(expression, unpack=True, dump=False):
|
|||
countedExpression = countedExpression[:untilOrderChar]
|
||||
|
||||
count = resume(countedExpression, None)
|
||||
count = parseUnionPage(count, countedExpression)
|
||||
count = parseUnionPage(count)
|
||||
|
||||
if not count or not count.isdigit():
|
||||
output = __oneShotUnionUse(countedExpression, unpack)
|
||||
|
||||
if output:
|
||||
count = parseUnionPage(output, countedExpression)
|
||||
count = parseUnionPage(output)
|
||||
|
||||
if isNumPosStrValue(count):
|
||||
if isinstance(stopLimit, int) and stopLimit > 0:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue