mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
few just in case fixes (unarrayizeValue in dumpTable entries) and and some refactoring (unique is now not done for every union case but only if detected that there are duplicates in union test)
This commit is contained in:
@@ -1189,7 +1189,7 @@ def getLimitRange(count, dump=False, plusOne=False):
|
||||
|
||||
return retVal
|
||||
|
||||
def parseUnionPage(page, unique=True):
|
||||
def parseUnionPage(page):
|
||||
"""
|
||||
Returns resulting items from inband query inside provided page content
|
||||
"""
|
||||
@@ -1211,7 +1211,7 @@ def parseUnionPage(page, unique=True):
|
||||
if kb.chars.start in entry:
|
||||
entry = entry.split(kb.chars.start)[-1]
|
||||
|
||||
if unique:
|
||||
if kb.unionDuplicates:
|
||||
key = entry.lower()
|
||||
if key not in _:
|
||||
_.append(key)
|
||||
|
||||
Reference in New Issue
Block a user