mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
fix for a neverending data retrieval in large full inband cases
This commit is contained in:
parent
4ce93221d1
commit
e522263640
|
@ -51,6 +51,7 @@ from lib.core.data import logger
|
|||
from lib.core.data import paths
|
||||
from lib.core.data import queries
|
||||
from lib.core.convert import htmlunescape
|
||||
from lib.core.convert import safecharencode
|
||||
from lib.core.convert import urldecode
|
||||
from lib.core.convert import urlencode
|
||||
from lib.core.enums import DBMS
|
||||
|
@ -1361,6 +1362,8 @@ def parseUnionPage(output, expression, partial=False, condition=None, sort=True)
|
|||
output = dict_.values()
|
||||
|
||||
for entry in output:
|
||||
entry = safecharencode(entry) if kb.safeCharEncode else entry
|
||||
|
||||
info = []
|
||||
|
||||
if DUMP_DEL_MARKER in entry:
|
||||
|
|
|
@ -97,7 +97,7 @@ def __oneShotUnionUse(expression, unpack=True):
|
|||
warnMsg += "issues)"
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
|
||||
return safecharencode(output) if kb.safeCharEncode else output
|
||||
return output
|
||||
|
||||
def configUnion(char=None, columns=None):
|
||||
def __configUnionChar(char):
|
||||
|
|
Loading…
Reference in New Issue
Block a user