mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-15 20:29:04 +00:00
minor bug fix
This commit is contained in:
@@ -47,7 +47,7 @@ from lib.core.unescaper import unescaper
|
||||
from lib.request.connect import Connect as Request
|
||||
|
||||
def __oneShotUnionUse(expression, unpack=True, limited=False):
|
||||
retVal = hashDBRetrieve(expression, checkConf=True)
|
||||
retVal = hashDBRetrieve("%s%s" % (conf.hexConvert, expression), checkConf=True) # as inband data is stored raw unconverted
|
||||
|
||||
threadData = getCurrentThreadData()
|
||||
threadData.resumed = retVal is not None
|
||||
@@ -100,7 +100,7 @@ def __oneShotUnionUse(expression, unpack=True, limited=False):
|
||||
warnMsg += "issues) or switch '--hex'"
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
|
||||
hashDBWrite(expression, retVal)
|
||||
hashDBWrite("%s%s" % (conf.hexConvert, expression), retVal)
|
||||
|
||||
return retVal
|
||||
|
||||
|
||||
Reference in New Issue
Block a user