mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
compatibility with partial union and error technique resumed data
This commit is contained in:
parent
58a4a02b7e
commit
f622995a29
5 changed files with 11 additions and 4 deletions
|
|
@ -130,6 +130,10 @@ def __oneShotErrorUse(expression, field):
|
|||
|
||||
conf.hashDB.write(expression, retVal)
|
||||
|
||||
else:
|
||||
check = "%s(?P<result>.*?)%s" % (kb.chars.start, kb.chars.stop)
|
||||
retVal = extractRegexResult(check, retVal, re.DOTALL | re.IGNORECASE) or retVal
|
||||
|
||||
return safecharencode(retVal) if kb.safeCharEncode else retVal
|
||||
|
||||
def __errorFields(expression, expressionFields, expressionFieldsList, expected=None, num=None, resumeValue=True):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue