mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Patch for known NCHAR/UNION-query SQLi problems
This commit is contained in:
parent
c6557e2b45
commit
78ba33737e
|
@ -499,6 +499,9 @@ class Agent(object):
|
||||||
if suffix:
|
if suffix:
|
||||||
nulledCastedField += suffix
|
nulledCastedField += suffix
|
||||||
|
|
||||||
|
if not kb.nchar:
|
||||||
|
nulledCastedField = re.sub(r"( AS )N(CHAR|VARCHAR)", r"\g<1>\g<2>", nulledCastedField)
|
||||||
|
|
||||||
return nulledCastedField
|
return nulledCastedField
|
||||||
|
|
||||||
def nullCastConcatFields(self, fields):
|
def nullCastConcatFields(self, fields):
|
||||||
|
|
|
@ -2071,6 +2071,7 @@ def _setKnowledgeBaseAttributes(flushAll=True):
|
||||||
kb.mergeCookies = None
|
kb.mergeCookies = None
|
||||||
kb.multipleCtrlC = False
|
kb.multipleCtrlC = False
|
||||||
kb.negativeLogic = False
|
kb.negativeLogic = False
|
||||||
|
kb.nchar = True
|
||||||
kb.nullConnection = None
|
kb.nullConnection = None
|
||||||
kb.oldMsf = None
|
kb.oldMsf = None
|
||||||
kb.orderByColumns = None
|
kb.orderByColumns = None
|
||||||
|
|
|
@ -18,7 +18,7 @@ from lib.core.enums import OS
|
||||||
from thirdparty.six import unichr as _unichr
|
from thirdparty.six import unichr as _unichr
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.4.11.17"
|
VERSION = "1.4.12.0"
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||||
|
|
|
@ -157,12 +157,20 @@ def _oneShotUnionUse(expression, unpack=True, limited=False):
|
||||||
warnMsg += "(probably due to its length and/or content): "
|
warnMsg += "(probably due to its length and/or content): "
|
||||||
warnMsg += safecharencode(trimmed)
|
warnMsg += safecharencode(trimmed)
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
elif re.search(r"ORDER BY [^ ]+\Z", expression):
|
elif re.search(r"ORDER BY [^ ]+\Z", expression):
|
||||||
debugMsg = "retrying failed SQL query without the ORDER BY clause"
|
debugMsg = "retrying failed SQL query without the ORDER BY clause"
|
||||||
singleTimeDebugMessage(debugMsg)
|
singleTimeDebugMessage(debugMsg)
|
||||||
|
|
||||||
expression = re.sub(r"\s*ORDER BY [^ ]+\Z", "", expression)
|
expression = re.sub(r"\s*ORDER BY [^ ]+\Z", "", expression)
|
||||||
retVal = _oneShotUnionUse(expression, unpack, limited)
|
retVal = _oneShotUnionUse(expression, unpack, limited)
|
||||||
|
|
||||||
|
elif kb.nchar and re.search(r" AS N(CHAR|VARCHAR)", agent.nullAndCastField(expression)):
|
||||||
|
debugMsg = "turning off NATIONAL CHARACTER casting" # NOTE: in some cases there are "known" incompatibilities between original columns and NCHAR (e.g. http://testphp.vulnweb.com/artists.php?artist=1)
|
||||||
|
singleTimeDebugMessage(debugMsg)
|
||||||
|
|
||||||
|
kb.nchar = False
|
||||||
|
retVal = _oneShotUnionUse(expression, unpack, limited)
|
||||||
else:
|
else:
|
||||||
vector = kb.injection.data[PAYLOAD.TECHNIQUE.UNION].vector
|
vector = kb.injection.data[PAYLOAD.TECHNIQUE.UNION].vector
|
||||||
kb.unionDuplicates = vector[7]
|
kb.unionDuplicates = vector[7]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user