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
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
2008-12-12 22:06:31 +03:00
|
|
|
import re
|
2010-05-21 17:36:49 +04:00
|
|
|
import socket
|
2008-10-15 19:38:22 +04:00
|
|
|
import time
|
|
|
|
|
|
|
|
from lib.core.agent import agent
|
2011-01-13 20:36:54 +03:00
|
|
|
from lib.core.common import aliasToDbmsEnum
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2010-10-25 23:16:42 +04:00
|
|
|
from lib.core.common import beep
|
2010-12-06 18:50:19 +03:00
|
|
|
from lib.core.common import extractRegexResult
|
2010-12-29 22:39:32 +03:00
|
|
|
from lib.core.common import findDynamicContent
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Format
|
2011-01-03 11:32:06 +03:00
|
|
|
from lib.core.common import getComparePageRatio
|
2010-12-21 15:56:18 +03:00
|
|
|
from lib.core.common import getCompiledRegex
|
2011-01-20 02:06:15 +03:00
|
|
|
from lib.core.common import getSortedInjectionTests
|
2010-06-02 16:45:40 +04:00
|
|
|
from lib.core.common import getUnicode
|
2011-01-31 15:21:17 +03:00
|
|
|
from lib.core.common import listToStrValue
|
2010-12-04 18:47:02 +03:00
|
|
|
from lib.core.common import popValue
|
|
|
|
from lib.core.common import pushValue
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.common import randomInt
|
|
|
|
from lib.core.common import randomStr
|
2010-10-11 15:47:07 +04:00
|
|
|
from lib.core.common import readInput
|
2010-12-04 13:13:18 +03:00
|
|
|
from lib.core.common import removeDynamicContent
|
2010-10-12 19:49:04 +04:00
|
|
|
from lib.core.common import showStaticWords
|
2010-11-29 18:14:49 +03:00
|
|
|
from lib.core.common import trimAlphaNum
|
2010-11-16 13:42:42 +03:00
|
|
|
from lib.core.common import wasLastRequestDBMSError
|
2010-12-26 16:20:52 +03:00
|
|
|
from lib.core.common import wasLastRequestHTTPError
|
2010-09-13 17:31:01 +04:00
|
|
|
from lib.core.common import DynamicContentItem
|
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-10-07 02:29:52 +04:00
|
|
|
from lib.core.data import paths
|
2010-11-28 21:10:54 +03:00
|
|
|
from lib.core.datatype import advancedDict
|
|
|
|
from lib.core.datatype import injectionDict
|
2010-11-08 12:49:57 +03:00
|
|
|
from lib.core.enums import HTTPMETHOD
|
|
|
|
from lib.core.enums import NULLCONNECTION
|
2010-11-28 21:10:54 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2010-12-01 20:09:52 +03:00
|
|
|
from lib.core.enums import PLACE
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.exception import sqlmapConnectionException
|
2010-11-07 03:12:00 +03:00
|
|
|
from lib.core.exception import sqlmapGenericException
|
2010-02-10 12:39:36 +03:00
|
|
|
from lib.core.exception import sqlmapNoneDataException
|
2010-10-11 15:47:07 +04:00
|
|
|
from lib.core.exception import sqlmapUserQuitException
|
2010-12-29 22:48:19 +03:00
|
|
|
from lib.core.session import setDynamicMarkings
|
2011-01-03 11:32:06 +03:00
|
|
|
from lib.core.settings import CONSTANT_RATIO
|
2011-01-20 02:06:15 +03:00
|
|
|
from lib.core.settings import UNKNOWN_DBMS_VERSION
|
2011-01-21 21:32:10 +03:00
|
|
|
from lib.core.settings import LOWER_RATIO_BOUND
|
2010-12-29 22:01:29 +03:00
|
|
|
from lib.core.settings import UPPER_RATIO_BOUND
|
2011-01-16 13:52:42 +03:00
|
|
|
from lib.core.threads import getCurrentThreadData
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.request.connect import Connect as Request
|
2010-12-07 17:35:31 +03:00
|
|
|
from lib.request.templates import getPageTemplate
|
2011-01-12 01:18:47 +03:00
|
|
|
from lib.techniques.inband.union.test import unionTest
|
2011-01-18 01:57:33 +03:00
|
|
|
from lib.techniques.inband.union.use import configUnion
|
2010-11-28 21:10:54 +03:00
|
|
|
|
|
|
|
def checkSqlInjection(place, parameter, value):
|
|
|
|
# Store here the details about boundaries and payload used to
|
|
|
|
# successfully inject
|
|
|
|
injection = injectionDict()
|
|
|
|
|
2010-12-21 02:34:00 +03:00
|
|
|
# Set the flag for sql injection test mode
|
2010-12-07 16:34:06 +03:00
|
|
|
kb.testMode = True
|
2010-12-04 18:47:02 +03:00
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
for test in getSortedInjectionTests():
|
2011-01-12 01:18:47 +03:00
|
|
|
try:
|
2011-01-01 22:22:44 +03:00
|
|
|
if kb.endDetection:
|
|
|
|
break
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
title = test.title
|
|
|
|
stype = test.stype
|
|
|
|
clause = test.clause
|
|
|
|
|
2011-01-19 02:03:50 +03:00
|
|
|
if stype == 3:
|
|
|
|
configUnion(test.request.char)
|
|
|
|
|
|
|
|
if test.request.columns == "[COLSTART]-[COLSTOP]":
|
|
|
|
if conf.uCols is None:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
title = title.replace("[COLSTART]", str(conf.uColsStart))
|
|
|
|
title = title.replace("[COLSTOP]", str(conf.uColsStop))
|
|
|
|
|
|
|
|
if "[CHAR]" in title:
|
|
|
|
title = title.replace("[CHAR]", conf.uChar)
|
2011-01-18 01:57:33 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Skip test if the user's wants to test only for a specific
|
|
|
|
# technique
|
|
|
|
if conf.technique and isinstance(conf.technique, int) and stype != conf.technique:
|
|
|
|
debugMsg = "skipping test '%s' because the user " % title
|
|
|
|
debugMsg += "specified to test only for "
|
|
|
|
debugMsg += "%s" % PAYLOAD.SQLINJECTION[conf.technique]
|
2010-11-29 17:48:07 +03:00
|
|
|
logger.debug(debugMsg)
|
|
|
|
continue
|
|
|
|
|
2011-02-02 01:04:48 +03:00
|
|
|
# Skip test if it is the same SQL injection type already
|
|
|
|
# identified by another test
|
|
|
|
if injection.data and stype in injection.data:
|
|
|
|
debugMsg = "skipping test '%s' because " % title
|
|
|
|
debugMsg += "the payload for %s has " % PAYLOAD.SQLINJECTION[stype]
|
|
|
|
debugMsg += "already been identified"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
continue
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Skip test if the risk is higher than the provided (or default)
|
|
|
|
# value
|
|
|
|
# Parse test's <risk>
|
|
|
|
if test.risk > conf.risk:
|
|
|
|
debugMsg = "skipping test '%s' because the risk " % title
|
|
|
|
debugMsg += "is higher than the provided"
|
2010-11-29 17:48:07 +03:00
|
|
|
logger.debug(debugMsg)
|
|
|
|
continue
|
2010-10-07 02:43:04 +04:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Skip test if the level is higher than the provided (or default)
|
|
|
|
# value
|
|
|
|
# Parse test's <level>
|
|
|
|
if test.level > conf.level:
|
|
|
|
debugMsg = "skipping test '%s' because the level " % title
|
|
|
|
debugMsg += "is higher than the provided"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
continue
|
2010-12-03 15:00:03 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Skip DBMS-specific test if it does not match either the
|
2011-01-19 02:03:50 +03:00
|
|
|
# previously identified or the user's provided DBMS (either
|
|
|
|
# from program switch or from parsed error message(s))
|
2010-12-18 13:42:09 +03:00
|
|
|
if "details" in test and "dbms" in test.details:
|
|
|
|
dbms = test.details.dbms
|
2010-11-29 15:13:42 +03:00
|
|
|
else:
|
2010-12-18 13:42:09 +03:00
|
|
|
dbms = None
|
|
|
|
|
|
|
|
if dbms is not None:
|
|
|
|
if injection.dbms is not None and injection.dbms != dbms:
|
|
|
|
debugMsg = "skipping test '%s' because " % title
|
|
|
|
debugMsg += "the back-end DBMS identified is "
|
|
|
|
debugMsg += "%s" % injection.dbms
|
|
|
|
logger.debug(debugMsg)
|
2010-11-29 15:13:42 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
continue
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
if conf.dbms is not None and conf.dbms.lower() != dbms.lower():
|
|
|
|
debugMsg = "skipping test '%s' because " % title
|
|
|
|
debugMsg += "the provided DBMS is %s" % conf.dbms
|
|
|
|
logger.debug(debugMsg)
|
2010-12-01 01:40:25 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
continue
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if len(Backend.getErrorParsedDBMSes()) > 0 and dbms not in Backend.getErrorParsedDBMSes() and kb.skipOthersDbms is None:
|
2011-01-12 02:47:32 +03:00
|
|
|
msg = "parsed error message(s) showed that the "
|
2011-01-28 19:36:09 +03:00
|
|
|
msg += "back-end DBMS could be %s. " % Format.getErrorParsedDBMSes()
|
2011-01-12 02:47:32 +03:00
|
|
|
msg += "Do you want to skip test payloads specific for other DBMSes? [Y/n]"
|
|
|
|
|
|
|
|
if conf.realTest or readInput(msg, default="Y") in ("y", "Y"):
|
2011-01-28 19:36:09 +03:00
|
|
|
kb.skipOthersDbms = Backend.getErrorParsedDBMSes()
|
2011-01-12 02:47:32 +03:00
|
|
|
|
|
|
|
if kb.skipOthersDbms and dbms not in kb.skipOthersDbms:
|
2011-01-02 02:38:11 +03:00
|
|
|
debugMsg = "skipping test '%s' because " % title
|
2011-01-02 10:09:04 +03:00
|
|
|
debugMsg += "the parsed error message(s) showed "
|
|
|
|
debugMsg += "that the back-end DBMS could be "
|
2011-01-28 19:36:09 +03:00
|
|
|
debugMsg += "%s" % Format.getErrorParsedDBMSes()
|
2011-01-02 02:38:11 +03:00
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Skip test if it does not match the same SQL injection clause
|
|
|
|
# already identified by another test
|
2010-11-28 21:10:54 +03:00
|
|
|
clauseMatch = False
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
for clauseTest in clause:
|
|
|
|
if injection.clause is not None and clauseTest in injection.clause:
|
2010-11-28 21:10:54 +03:00
|
|
|
clauseMatch = True
|
|
|
|
break
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
if clause != [ 0 ] and injection.clause and injection.clause != [ 0 ] and not clauseMatch:
|
|
|
|
debugMsg = "skipping test '%s' because the clauses " % title
|
|
|
|
debugMsg += "differs from the clause already identified"
|
|
|
|
logger.debug(debugMsg)
|
2010-11-28 21:10:54 +03:00
|
|
|
continue
|
|
|
|
|
2011-01-30 19:23:19 +03:00
|
|
|
# Skip test if the user provided custom column
|
|
|
|
# range and this is not a custom UNION test
|
|
|
|
if conf.uCols is not None and hasattr(test.request, "columns") and test.request.columns != "[COLSTART]-[COLSTOP]":
|
|
|
|
debugMsg = "skipping test '%s' because custom " % title
|
|
|
|
debugMsg += "UNION columns range was provided"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
continue
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
infoMsg = "testing '%s'" % title
|
|
|
|
logger.info(infoMsg)
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2011-02-08 00:18:01 +03:00
|
|
|
# Flag used for signaling warning messages regarding unescaping
|
|
|
|
genericWarningFlag = False
|
|
|
|
|
2011-02-07 02:27:56 +03:00
|
|
|
# Force back-end DBMS according to the current
|
|
|
|
# test value for proper payload unescaping
|
|
|
|
Backend.forceDbms(dbms)
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Parse test's <request>
|
|
|
|
comment = agent.getComment(test.request)
|
2011-02-07 02:27:56 +03:00
|
|
|
fstPayload = agent.cleanupPayload(test.request.payload, origValue=value)
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
for boundary in conf.boundaries:
|
|
|
|
injectable = False
|
|
|
|
|
|
|
|
# Skip boundary if the level is higher than the provided (or
|
|
|
|
# default) value
|
|
|
|
# Parse boundary's <level>
|
|
|
|
if boundary.level > conf.level:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Skip boundary if it does not match against test's <clause>
|
|
|
|
# Parse test's <clause> and boundary's <clause>
|
|
|
|
clauseMatch = False
|
|
|
|
|
|
|
|
for clauseTest in test.clause:
|
|
|
|
if clauseTest in boundary.clause:
|
|
|
|
clauseMatch = True
|
|
|
|
break
|
|
|
|
|
|
|
|
if test.clause != [ 0 ] and boundary.clause != [ 0 ] and not clauseMatch:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Skip boundary if it does not match against test's <where>
|
|
|
|
# Parse test's <where> and boundary's <where>
|
|
|
|
whereMatch = False
|
|
|
|
|
|
|
|
for where in test.where:
|
|
|
|
if where in boundary.where:
|
|
|
|
whereMatch = True
|
|
|
|
break
|
|
|
|
|
|
|
|
if not whereMatch:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Parse boundary's <prefix>, <suffix> and <ptype>
|
|
|
|
prefix = boundary.prefix if boundary.prefix else ""
|
|
|
|
suffix = boundary.suffix if boundary.suffix else ""
|
|
|
|
ptype = boundary.ptype
|
|
|
|
|
|
|
|
# If the previous injections succeeded, we know which prefix,
|
|
|
|
# suffix and parameter type to use for further tests, no
|
|
|
|
# need to cycle through the boundaries for the following tests
|
|
|
|
condBound = (injection.prefix is not None and injection.suffix is not None)
|
|
|
|
condBound &= (injection.prefix != prefix or injection.suffix != suffix)
|
|
|
|
condType = injection.ptype is not None and injection.ptype != ptype
|
|
|
|
|
|
|
|
if condBound or condType:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# For each test's <where>
|
|
|
|
for where in test.where:
|
|
|
|
templatePayload = None
|
2011-01-12 03:47:39 +03:00
|
|
|
vector = None
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
# Threat the parameter original value according to the
|
|
|
|
# test's <where> tag
|
2011-02-02 16:34:09 +03:00
|
|
|
if where == PAYLOAD.WHERE.ORIGINAL:
|
2010-12-18 13:42:09 +03:00
|
|
|
origValue = value
|
2011-02-02 16:34:09 +03:00
|
|
|
elif where == PAYLOAD.WHERE.NEGATIVE:
|
2011-01-12 01:18:47 +03:00
|
|
|
# Use different page template than the original
|
|
|
|
# one as we are changing parameters value, which
|
|
|
|
# will likely result in a different content
|
2010-12-18 13:42:09 +03:00
|
|
|
origValue = "-%s" % randomInt()
|
2011-01-12 01:18:47 +03:00
|
|
|
templatePayload = agent.payload(place, parameter, newValue=origValue, where=where)
|
2011-02-02 16:34:09 +03:00
|
|
|
elif where == PAYLOAD.WHERE.REPLACE:
|
2010-12-18 13:42:09 +03:00
|
|
|
origValue = ""
|
|
|
|
|
2010-12-24 15:13:48 +03:00
|
|
|
kb.pageTemplate, kb.errorIsNone = getPageTemplate(templatePayload, place)
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
# Forge request payload by prepending with boundary's
|
|
|
|
# prefix and appending the boundary's suffix to the
|
|
|
|
# test's ' <payload><comment> ' string
|
2011-01-12 01:18:47 +03:00
|
|
|
boundPayload = agent.prefixQuery(fstPayload, prefix, where, clause)
|
2011-01-24 15:25:45 +03:00
|
|
|
boundPayload = agent.suffixQuery(boundPayload, comment, suffix, where)
|
2011-01-12 01:18:47 +03:00
|
|
|
reqPayload = agent.payload(place, parameter, newValue=boundPayload, where=where)
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
# Perform the test's request and check whether or not the
|
|
|
|
# payload was successful
|
|
|
|
# Parse test's <response>
|
|
|
|
for method, check in test.response.items():
|
2011-02-07 02:27:56 +03:00
|
|
|
check = agent.cleanupPayload(check, origValue=value)
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
# In case of boolean-based blind SQL injection
|
|
|
|
if method == PAYLOAD.METHOD.COMPARISON:
|
2011-02-08 00:53:05 +03:00
|
|
|
# Generate payload used for comparison
|
|
|
|
def genCmpPayload():
|
|
|
|
sndPayload = agent.cleanupPayload(test.response.comparison, origValue=value)
|
|
|
|
|
|
|
|
# Forge response payload by prepending with
|
|
|
|
# boundary's prefix and appending the boundary's
|
|
|
|
# suffix to the test's ' <payload><comment> '
|
|
|
|
# string
|
|
|
|
boundPayload = agent.prefixQuery(sndPayload, prefix, where, clause)
|
|
|
|
boundPayload = agent.suffixQuery(boundPayload, comment, suffix, where)
|
|
|
|
cmpPayload = agent.payload(place, parameter, newValue=boundPayload, where=where)
|
|
|
|
|
|
|
|
return cmpPayload
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
# Useful to set kb.matchRatio at first based on
|
|
|
|
# the False response content
|
|
|
|
kb.matchRatio = None
|
2011-02-08 00:53:05 +03:00
|
|
|
_ = Request.queryPage(genCmpPayload(), place, raise404=False)
|
2010-12-18 13:42:09 +03:00
|
|
|
|
2011-01-21 21:32:10 +03:00
|
|
|
# If in the comparing stage there was an error
|
|
|
|
# then anything non-error will be considered as True
|
|
|
|
if kb.errorIsNone and kb.matchRatio is None:
|
|
|
|
kb.matchRatio = LOWER_RATIO_BOUND
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Perform the test's True request
|
2010-12-24 15:36:00 +03:00
|
|
|
trueResult = Request.queryPage(reqPayload, place, raise404=False)
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
if trueResult:
|
2011-02-08 00:53:05 +03:00
|
|
|
falseResult = Request.queryPage(genCmpPayload(), place, raise404=False)
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# Perform the test's False request
|
|
|
|
if not falseResult:
|
|
|
|
infoMsg = "%s parameter '%s' is '%s' injectable " % (place, parameter, title)
|
|
|
|
logger.info(infoMsg)
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
injectable = True
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2011-01-12 01:18:47 +03:00
|
|
|
# In case of error-based SQL injection
|
2010-12-18 13:42:09 +03:00
|
|
|
elif method == PAYLOAD.METHOD.GREP:
|
|
|
|
# Perform the test's request and grep the response
|
|
|
|
# body for the test's <grep> regular expression
|
2011-01-31 15:21:17 +03:00
|
|
|
page, headers = Request.queryPage(reqPayload, place, content=True, raise404=False)
|
2011-02-01 01:51:14 +03:00
|
|
|
output = extractRegexResult(check, page, re.DOTALL | re.IGNORECASE) \
|
|
|
|
or extractRegexResult(check, listToStrValue(headers.headers \
|
|
|
|
if headers else None), re.DOTALL | re.IGNORECASE)
|
2010-12-07 22:19:12 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
if output:
|
|
|
|
result = output.replace(kb.misc.space, " ") == "1"
|
2010-12-17 10:53:58 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
if result:
|
|
|
|
infoMsg = "%s parameter '%s' is '%s' injectable " % (place, parameter, title)
|
|
|
|
logger.info(infoMsg)
|
2010-12-07 15:33:47 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
injectable = True
|
2010-11-28 21:10:54 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# In case of time-based blind or stacked queries
|
|
|
|
# SQL injections
|
|
|
|
elif method == PAYLOAD.METHOD.TIME:
|
|
|
|
# Perform the test's request
|
2010-12-24 15:36:00 +03:00
|
|
|
trueResult = Request.queryPage(reqPayload, place, timeBasedCompare=True, raise404=False)
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
if trueResult:
|
|
|
|
# Confirm test's results
|
2010-12-24 15:36:00 +03:00
|
|
|
trueResult = Request.queryPage(reqPayload, place, timeBasedCompare=True, raise404=False)
|
2010-12-18 13:42:09 +03:00
|
|
|
|
|
|
|
if trueResult:
|
|
|
|
infoMsg = "%s parameter '%s' is '%s' injectable " % (place, parameter, title)
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
injectable = True
|
|
|
|
|
2011-01-12 01:18:47 +03:00
|
|
|
# In case of UNION query SQL injection
|
|
|
|
elif method == PAYLOAD.METHOD.UNION:
|
2011-01-12 15:01:32 +03:00
|
|
|
# Test for UNION injection and set the sample
|
|
|
|
# payload as well as the vector.
|
|
|
|
# NOTE: vector is set to a tuple with 6 elements,
|
|
|
|
# used afterwards by Agent.forgeInbandQuery()
|
|
|
|
# method to forge the UNION query payload
|
2011-01-15 19:59:53 +03:00
|
|
|
|
2011-01-18 01:57:33 +03:00
|
|
|
configUnion(test.request.char, test.request.columns)
|
|
|
|
|
2011-02-08 00:18:01 +03:00
|
|
|
if not Backend.getIdentifiedDbms() and not genericWarningFlag:
|
2011-01-15 19:59:53 +03:00
|
|
|
warnMsg = "using unescaped version of the test "
|
|
|
|
warnMsg += "because of zero knowledge of the "
|
|
|
|
warnMsg += "back-end DBMS"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2011-02-08 00:18:01 +03:00
|
|
|
# Set the flag preventing bulking of the message for the same test
|
|
|
|
genericWarningFlag = True
|
|
|
|
|
2011-01-19 02:03:50 +03:00
|
|
|
# Test for UNION query SQL injection
|
2011-01-16 04:17:09 +03:00
|
|
|
reqPayload, vector = unionTest(comment, place, parameter, value, prefix, suffix)
|
2011-01-12 01:18:47 +03:00
|
|
|
|
|
|
|
if isinstance(reqPayload, basestring):
|
|
|
|
infoMsg = "%s parameter '%s' is '%s' injectable" % (place, parameter, title)
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
injectable = True
|
|
|
|
|
2011-01-16 03:15:30 +03:00
|
|
|
# Overwrite 'where' because it can be set
|
|
|
|
# by unionTest() directly
|
2011-01-13 12:41:55 +03:00
|
|
|
where = vector[6]
|
2011-01-12 15:01:32 +03:00
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
# If the injection test was successful feed the injection
|
|
|
|
# object with the test's details
|
|
|
|
if injectable is True:
|
|
|
|
# Feed with the boundaries details only the first time a
|
|
|
|
# test has been successful
|
|
|
|
if injection.place is None or injection.parameter is None:
|
|
|
|
if place == PLACE.UA:
|
|
|
|
injection.parameter = conf.agent
|
|
|
|
else:
|
|
|
|
injection.parameter = parameter
|
|
|
|
|
|
|
|
injection.place = place
|
|
|
|
injection.ptype = ptype
|
|
|
|
injection.prefix = prefix
|
|
|
|
injection.suffix = suffix
|
|
|
|
injection.clause = clause
|
|
|
|
|
2011-02-06 18:20:44 +03:00
|
|
|
# Feed with test details every time a test is successful
|
|
|
|
if hasattr(test, "details"):
|
|
|
|
for dKey, dValue in test.details.items():
|
|
|
|
if dKey == "dbms":
|
|
|
|
injection.dbms = Backend.setDbms(dValue)
|
|
|
|
elif dKey == "dbms_version" and injection.dbms_version is None:
|
|
|
|
injection.dbms_version = Backend.setVersion(dValue)
|
|
|
|
elif dKey == "os" and injection.os is None:
|
|
|
|
injection.os = Backend.setOs(dValue)
|
|
|
|
|
2011-01-12 03:47:39 +03:00
|
|
|
if vector is None and "vector" in test and test.vector is not None:
|
2010-12-18 13:42:09 +03:00
|
|
|
vector = "%s%s" % (test.vector, comment)
|
|
|
|
|
|
|
|
injection.data[stype] = advancedDict()
|
|
|
|
injection.data[stype].title = title
|
2011-01-27 22:44:24 +03:00
|
|
|
injection.data[stype].payload = agent.removePayloadDelimiters(reqPayload)
|
2010-12-18 13:42:09 +03:00
|
|
|
injection.data[stype].where = where
|
2011-01-12 03:47:39 +03:00
|
|
|
injection.data[stype].vector = vector
|
2010-12-18 13:42:09 +03:00
|
|
|
injection.data[stype].comment = comment
|
|
|
|
injection.data[stype].templatePayload = templatePayload
|
2011-01-14 17:55:59 +03:00
|
|
|
injection.data[stype].matchRatio = kb.matchRatio
|
2010-12-18 13:42:09 +03:00
|
|
|
|
2011-01-14 17:55:59 +03:00
|
|
|
injection.conf.textOnly = conf.textOnly
|
2011-01-16 02:11:36 +03:00
|
|
|
injection.conf.string = conf.string
|
|
|
|
injection.conf.regexp = conf.regexp
|
2011-01-14 17:37:03 +03:00
|
|
|
|
2010-12-23 17:06:22 +03:00
|
|
|
if conf.beep or conf.realTest:
|
2010-12-18 13:42:09 +03:00
|
|
|
beep()
|
|
|
|
|
|
|
|
# There is no need to perform this test for other
|
|
|
|
# <where> tags
|
|
|
|
break
|
|
|
|
|
|
|
|
if injectable is True:
|
|
|
|
# There is no need to perform this test with others
|
|
|
|
# boundaries
|
2010-12-01 01:40:25 +03:00
|
|
|
break
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-02-06 23:23:23 +03:00
|
|
|
# Reset forced back-end DBMS value
|
|
|
|
Backend.flushForcedDbms()
|
|
|
|
|
2010-12-18 13:42:09 +03:00
|
|
|
except KeyboardInterrupt:
|
2010-12-18 13:49:49 +03:00
|
|
|
warnMsg = "Ctrl+C detected in detection phase"
|
2010-12-18 13:42:09 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2010-12-21 02:34:00 +03:00
|
|
|
message = "How do you want to proceed? [(S)kip test/(e)nd detection phase/(n)ext parameter/(q)uit]"
|
2010-12-18 13:42:09 +03:00
|
|
|
test = readInput(message, default="S")
|
|
|
|
|
|
|
|
if not test or test[0] in ("s", "S"):
|
|
|
|
pass
|
2010-12-18 19:28:21 +03:00
|
|
|
elif test[0] in ("n", "N"):
|
2010-12-31 18:00:19 +03:00
|
|
|
return None
|
2010-12-21 02:34:00 +03:00
|
|
|
elif test[0] in ("e", "E"):
|
2010-12-22 02:55:55 +03:00
|
|
|
kb.endDetection = True
|
2010-12-18 13:42:09 +03:00
|
|
|
elif test[0] in ("q", "Q"):
|
|
|
|
raise sqlmapUserQuitException
|
2010-12-04 18:47:02 +03:00
|
|
|
|
2011-02-06 23:23:23 +03:00
|
|
|
finally:
|
|
|
|
# Reset forced back-end DBMS value
|
|
|
|
Backend.flushForcedDbms()
|
|
|
|
|
2010-12-01 01:40:25 +03:00
|
|
|
# Return the injection object
|
2010-11-29 00:27:47 +03:00
|
|
|
if injection.place is not None and injection.parameter is not None:
|
|
|
|
return injection
|
|
|
|
else:
|
|
|
|
return None
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-01-15 16:15:10 +03:00
|
|
|
def heuristicCheckSqlInjection(place, parameter):
|
2010-11-05 16:14:12 +03:00
|
|
|
if kb.nullConnection:
|
2011-01-19 02:03:50 +03:00
|
|
|
debugMsg = "heuristic checking skipped "
|
2010-11-05 16:14:12 +03:00
|
|
|
debugMsg += "because NULL connection used"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
return
|
|
|
|
|
2010-10-11 16:26:35 +04:00
|
|
|
prefix = ""
|
2010-11-18 01:00:09 +03:00
|
|
|
suffix = ""
|
2010-10-11 16:26:35 +04:00
|
|
|
|
2010-11-18 01:00:09 +03:00
|
|
|
if conf.prefix or conf.suffix:
|
2010-10-11 16:26:35 +04:00
|
|
|
if conf.prefix:
|
|
|
|
prefix = conf.prefix
|
|
|
|
|
2010-11-18 01:00:09 +03:00
|
|
|
if conf.suffix:
|
|
|
|
suffix = conf.suffix
|
2010-10-11 16:26:35 +04:00
|
|
|
|
2011-01-12 01:18:47 +03:00
|
|
|
payload = "%s%s%s" % (prefix, randomStr(length=10, alphabet=['"', '\'', ')', '(']), suffix)
|
|
|
|
payload = agent.payload(place, parameter, newValue=payload)
|
2011-01-03 11:32:06 +03:00
|
|
|
Request.queryPage(payload, place, content=True, raise404=False)
|
2010-12-22 22:12:46 +03:00
|
|
|
|
2010-12-22 16:09:04 +03:00
|
|
|
result = wasLastRequestDBMSError()
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2011-01-19 02:03:50 +03:00
|
|
|
infoMsg = "heuristic test shows that %s " % place
|
2010-11-16 13:52:49 +03:00
|
|
|
infoMsg += "parameter '%s' might " % parameter
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-11 16:26:35 +04:00
|
|
|
if result:
|
2011-01-28 19:36:09 +03:00
|
|
|
infoMsg += "be injectable (possible DBMS: %s)" % (Format.getErrorParsedDBMSes() or UNKNOWN_DBMS_VERSION)
|
2010-10-11 16:26:35 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
else:
|
2010-11-16 13:52:49 +03:00
|
|
|
infoMsg += "not be injectable"
|
2010-12-08 17:46:07 +03:00
|
|
|
logger.warn(infoMsg)
|
2010-10-11 16:26:35 +04:00
|
|
|
|
2010-12-20 13:13:14 +03:00
|
|
|
return result
|
|
|
|
|
2011-01-03 11:32:06 +03:00
|
|
|
def simpletonCheckSqlInjection(place, parameter, value):
|
|
|
|
"""
|
|
|
|
This is a function for the quickest and simplest
|
2011-01-03 14:06:49 +03:00
|
|
|
sql injection check (e.g. AND 1=1) - only works
|
|
|
|
with integer parameters
|
2011-01-03 11:32:06 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
result = False
|
|
|
|
randInt = randomInt()
|
2011-01-03 12:16:42 +03:00
|
|
|
|
|
|
|
if value.isdigit():
|
2011-01-03 13:37:20 +03:00
|
|
|
payload = "%s AND %d=%d" % (value, randInt, randInt)
|
2011-01-03 12:16:42 +03:00
|
|
|
else:
|
2011-01-03 14:06:49 +03:00
|
|
|
return False
|
2011-01-03 12:16:42 +03:00
|
|
|
|
2011-01-03 11:32:06 +03:00
|
|
|
payload = agent.payload(place, parameter, value, payload)
|
|
|
|
firstPage, _ = Request.queryPage(payload, place, content=True, raise404=False)
|
|
|
|
|
|
|
|
if not (wasLastRequestDBMSError() or wasLastRequestHTTPError()):
|
2011-01-03 11:46:20 +03:00
|
|
|
if getComparePageRatio(kb.originalPage, firstPage, filtered=True) > CONSTANT_RATIO:
|
2011-01-03 14:06:49 +03:00
|
|
|
payload = "%s AND %d=%d" % (value, randInt, randInt+1)
|
2011-01-03 12:16:42 +03:00
|
|
|
|
2011-01-03 11:32:06 +03:00
|
|
|
payload = agent.payload(place, parameter, value, payload)
|
|
|
|
secondPage, _ = Request.queryPage(payload, place, content=True, raise404=False)
|
2011-01-03 11:46:20 +03:00
|
|
|
result = getComparePageRatio(firstPage, secondPage, filtered=True) <= CONSTANT_RATIO
|
2011-01-03 11:32:06 +03:00
|
|
|
|
2011-01-19 02:03:50 +03:00
|
|
|
infoMsg = "simpleton test shows that %s " % place
|
2011-01-03 11:32:06 +03:00
|
|
|
infoMsg += "parameter '%s' might " % parameter
|
|
|
|
|
|
|
|
if result:
|
|
|
|
infoMsg += "be injectable"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
else:
|
|
|
|
infoMsg += "not be injectable"
|
|
|
|
logger.warn(infoMsg)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
def checkDynParam(place, parameter, value):
|
|
|
|
"""
|
|
|
|
This function checks if the url parameter is dynamic. If it is
|
|
|
|
dynamic, the content of the page differs, otherwise the
|
|
|
|
dynamicity might depend on another parameter.
|
|
|
|
"""
|
|
|
|
|
2010-12-18 12:51:34 +03:00
|
|
|
kb.matchRatio = None
|
2010-11-10 01:44:23 +03:00
|
|
|
|
2008-12-09 00:24:24 +03:00
|
|
|
infoMsg = "testing if %s parameter '%s' is dynamic" % (place, parameter)
|
|
|
|
logger.info(infoMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
randInt = randomInt()
|
2010-06-02 16:45:40 +04:00
|
|
|
payload = agent.payload(place, parameter, value, getUnicode(randInt))
|
2010-12-21 14:04:49 +03:00
|
|
|
dynResult = Request.queryPage(payload, place, raise404=False)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-11-05 16:14:12 +03:00
|
|
|
if True == dynResult:
|
2008-10-15 19:38:22 +04:00
|
|
|
return False
|
|
|
|
|
2008-12-09 00:24:24 +03:00
|
|
|
infoMsg = "confirming that %s parameter '%s' is dynamic" % (place, parameter)
|
|
|
|
logger.info(infoMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-11-05 16:14:12 +03:00
|
|
|
randInt = randomInt()
|
|
|
|
payload = agent.payload(place, parameter, value, getUnicode(randInt))
|
2010-12-21 14:04:49 +03:00
|
|
|
dynResult = Request.queryPage(payload, place, raise404=False)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-11-05 16:14:12 +03:00
|
|
|
return not dynResult
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-25 14:41:37 +04:00
|
|
|
def checkDynamicContent(firstPage, secondPage):
|
2010-09-14 01:01:46 +04:00
|
|
|
"""
|
2010-12-29 22:39:32 +03:00
|
|
|
This function checks for the dynamic content in the provided pages
|
2010-09-14 01:01:46 +04:00
|
|
|
"""
|
2010-11-04 12:18:32 +03:00
|
|
|
|
2010-11-04 00:51:36 +03:00
|
|
|
if kb.nullConnection:
|
2011-01-19 02:03:50 +03:00
|
|
|
debugMsg = "dynamic content checking skipped "
|
2010-11-04 12:18:32 +03:00
|
|
|
debugMsg += "because NULL connection used"
|
|
|
|
logger.debug(debugMsg)
|
2010-11-04 00:51:36 +03:00
|
|
|
return
|
2011-01-26 01:26:28 +03:00
|
|
|
|
|
|
|
if any(page is None for page in (firstPage, secondPage)):
|
|
|
|
warnMsg = "can't check dynamic content "
|
|
|
|
warnMsg += "because of lack of page content"
|
|
|
|
logger.critical(warnMsg)
|
|
|
|
return
|
|
|
|
|
2011-01-16 13:52:42 +03:00
|
|
|
seqMatcher = getCurrentThreadData().seqMatcher
|
|
|
|
seqMatcher.set_seq1(firstPage)
|
|
|
|
seqMatcher.set_seq2(secondPage)
|
2010-10-07 02:29:52 +04:00
|
|
|
|
2010-12-29 22:39:32 +03:00
|
|
|
# In case of an intolerable difference turn on dynamicity removal engine
|
2011-01-16 13:52:42 +03:00
|
|
|
if seqMatcher.quick_ratio() <= UPPER_RATIO_BOUND:
|
2010-12-29 22:39:32 +03:00
|
|
|
findDynamicContent(firstPage, secondPage)
|
2010-10-25 23:45:53 +04:00
|
|
|
|
2010-12-29 22:39:32 +03:00
|
|
|
count = 0
|
|
|
|
while not Request.queryPage():
|
|
|
|
count += 1
|
2010-10-25 14:41:37 +04:00
|
|
|
|
2010-12-29 22:39:32 +03:00
|
|
|
if count > conf.retries:
|
2011-01-03 14:06:49 +03:00
|
|
|
warnMsg = "target url is too dynamic. "
|
|
|
|
warnMsg += "switching to --text-only. "
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
conf.textOnly = True
|
|
|
|
return
|
2010-10-25 23:45:53 +04:00
|
|
|
|
2010-12-29 22:39:32 +03:00
|
|
|
warnMsg = "target url is heavily dynamic"
|
|
|
|
warnMsg += ", sqlmap is going to retry the request"
|
|
|
|
logger.critical(warnMsg)
|
2010-10-25 23:45:53 +04:00
|
|
|
|
2010-12-29 22:39:32 +03:00
|
|
|
secondPage, _ = Request.queryPage(content=True)
|
|
|
|
findDynamicContent(firstPage, secondPage)
|
2010-09-13 17:31:01 +04:00
|
|
|
|
2010-12-29 22:48:19 +03:00
|
|
|
setDynamicMarkings(kb.dynamicMarkings)
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
def checkStability():
|
|
|
|
"""
|
|
|
|
This function checks if the URL content is stable requesting the
|
2010-09-13 19:19:47 +04:00
|
|
|
same page two times with a small delay within each request to
|
2008-10-15 19:38:22 +04:00
|
|
|
assume that it is stable.
|
|
|
|
|
|
|
|
In case the content of the page differs when requesting
|
|
|
|
the same page, the dynamicity might depend on other parameters,
|
|
|
|
like for instance string matching (--string).
|
|
|
|
"""
|
|
|
|
|
2008-12-09 00:24:24 +03:00
|
|
|
infoMsg = "testing if the url is stable, wait a few seconds"
|
|
|
|
logger.info(infoMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-12-06 21:20:57 +03:00
|
|
|
firstPage = kb.originalPage # set inside checkConnection()
|
2008-12-21 19:35:03 +03:00
|
|
|
time.sleep(1)
|
2009-04-28 03:05:11 +04:00
|
|
|
secondPage, _ = Request.queryPage(content=True)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-25 17:52:21 +04:00
|
|
|
kb.pageStable = (firstPage == secondPage)
|
2008-12-18 23:48:23 +03:00
|
|
|
|
2010-10-25 17:52:21 +04:00
|
|
|
if kb.pageStable:
|
2010-02-10 12:27:34 +03:00
|
|
|
if firstPage:
|
2011-01-19 02:03:50 +03:00
|
|
|
logMsg = "url is stable"
|
2010-02-10 12:27:34 +03:00
|
|
|
logger.info(logMsg)
|
|
|
|
else:
|
2011-01-19 02:03:50 +03:00
|
|
|
errMsg = "there was an error checking the stability of page "
|
2010-03-16 15:14:02 +03:00
|
|
|
errMsg += "because of lack of content. please check the "
|
|
|
|
errMsg += "page request results (and probable errors) by "
|
|
|
|
errMsg += "using higher verbosity levels"
|
|
|
|
raise sqlmapNoneDataException, errMsg
|
2009-02-09 13:28:03 +03:00
|
|
|
|
2010-10-25 17:52:21 +04:00
|
|
|
else:
|
2011-01-19 02:03:50 +03:00
|
|
|
warnMsg = "url is not stable, sqlmap will base the page "
|
2010-10-16 19:10:48 +04:00
|
|
|
warnMsg += "comparison on a sequence matcher. If no dynamic nor "
|
|
|
|
warnMsg += "injectable parameters are detected, or in case of "
|
|
|
|
warnMsg += "junk results, refer to user's manual paragraph "
|
|
|
|
warnMsg += "'Page comparison' and provide a string or regular "
|
|
|
|
warnMsg += "expression to match on"
|
2008-12-20 04:54:08 +03:00
|
|
|
logger.warn(warnMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-01-16 22:29:06 +03:00
|
|
|
message = "how do you want to proceed? [(C)ontinue/(s)tring/(r)egex/(q)uit] "
|
2010-12-23 17:06:22 +03:00
|
|
|
if not conf.realTest:
|
2010-12-20 13:32:58 +03:00
|
|
|
test = readInput(message, default="C")
|
|
|
|
else:
|
|
|
|
test = None
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
if test and test[0] in ("q", "Q"):
|
|
|
|
raise sqlmapUserQuitException
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
elif test and test[0] in ("s", "S"):
|
|
|
|
showStaticWords(firstPage, secondPage)
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
message = "please enter value for parameter 'string': "
|
|
|
|
test = readInput(message)
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
if test:
|
|
|
|
conf.string = test
|
2010-11-04 12:18:32 +03:00
|
|
|
|
|
|
|
if kb.nullConnection:
|
2011-01-19 02:03:50 +03:00
|
|
|
debugMsg = "turning off NULL connection "
|
2010-11-04 12:18:32 +03:00
|
|
|
debugMsg += "support because of string checking"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
|
|
|
kb.nullConnection = None
|
2010-10-12 19:49:04 +04:00
|
|
|
else:
|
2010-11-10 22:44:51 +03:00
|
|
|
errMsg = "Empty value supplied"
|
|
|
|
raise sqlmapNoneDataException, errMsg
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
elif test and test[0] in ("r", "R"):
|
|
|
|
message = "please enter value for parameter 'regex': "
|
|
|
|
test = readInput(message)
|
2010-10-16 19:10:48 +04:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
if test:
|
|
|
|
conf.regex = test
|
2010-11-04 12:18:32 +03:00
|
|
|
|
|
|
|
if kb.nullConnection:
|
2011-01-19 02:03:50 +03:00
|
|
|
debugMsg = "turning off NULL connection "
|
2010-11-04 12:18:32 +03:00
|
|
|
debugMsg += "support because of regex checking"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
|
|
|
kb.nullConnection = None
|
2010-10-12 19:49:04 +04:00
|
|
|
else:
|
2010-11-10 22:44:51 +03:00
|
|
|
errMsg = "Empty value supplied"
|
|
|
|
raise sqlmapNoneDataException, errMsg
|
2011-01-06 11:54:50 +03:00
|
|
|
|
2010-10-12 19:49:04 +04:00
|
|
|
else:
|
2010-12-29 22:39:32 +03:00
|
|
|
checkDynamicContent(firstPage, secondPage)
|
2010-11-29 18:25:45 +03:00
|
|
|
|
2010-10-25 17:52:21 +04:00
|
|
|
return kb.pageStable
|
2010-03-12 15:23:05 +03:00
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
def checkString():
|
|
|
|
if not conf.string:
|
|
|
|
return True
|
|
|
|
|
2011-01-19 02:03:50 +03:00
|
|
|
infoMsg = "testing if the provided string is within the "
|
2008-12-09 00:24:24 +03:00
|
|
|
infoMsg += "target URL page content"
|
|
|
|
logger.info(infoMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2008-12-18 23:48:23 +03:00
|
|
|
page, _ = Request.queryPage(content=True)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-01-14 17:37:03 +03:00
|
|
|
if conf.string not in page:
|
2011-01-19 02:03:50 +03:00
|
|
|
warnMsg = "you provided '%s' as the string to " % conf.string
|
2010-11-18 01:00:09 +03:00
|
|
|
warnMsg += "match, but such a string is not within the target "
|
|
|
|
warnMsg += "URL page content original request, sqlmap will "
|
|
|
|
warnMsg += "keep going anyway"
|
|
|
|
logger.warn(warnMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-11-18 01:00:09 +03:00
|
|
|
return True
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2008-12-12 22:06:31 +03:00
|
|
|
def checkRegexp():
|
|
|
|
if not conf.regexp:
|
|
|
|
return True
|
|
|
|
|
2011-01-19 02:03:50 +03:00
|
|
|
infoMsg = "testing if the provided regular expression matches within "
|
2008-12-12 22:06:31 +03:00
|
|
|
infoMsg += "the target URL page content"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2008-12-18 23:48:23 +03:00
|
|
|
page, _ = Request.queryPage(content=True)
|
2008-12-12 22:06:31 +03:00
|
|
|
|
2011-01-14 17:37:03 +03:00
|
|
|
if not re.search(conf.regexp, page, re.I | re.M):
|
2011-01-19 02:03:50 +03:00
|
|
|
warnMsg = "you provided '%s' as the regular expression to " % conf.regexp
|
2010-11-18 01:00:09 +03:00
|
|
|
warnMsg += "match, but such a regular expression does not have any "
|
|
|
|
warnMsg += "match within the target URL page content, sqlmap "
|
|
|
|
warnMsg += "will keep going anyway"
|
|
|
|
logger.warn(warnMsg)
|
2008-12-12 22:06:31 +03:00
|
|
|
|
2010-11-18 01:00:09 +03:00
|
|
|
return True
|
2008-12-12 22:06:31 +03:00
|
|
|
|
2010-09-16 12:43:10 +04:00
|
|
|
def checkNullConnection():
|
2010-10-15 15:17:17 +04:00
|
|
|
"""
|
|
|
|
Reference: http://www.wisec.it/sectou.php?id=472f952d79293
|
|
|
|
"""
|
|
|
|
|
2010-09-16 12:43:10 +04:00
|
|
|
infoMsg = "testing NULL connection to the target url"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
try:
|
2010-11-08 12:49:57 +03:00
|
|
|
page, headers = Request.getPage(method=HTTPMETHOD.HEAD)
|
2010-12-06 18:50:19 +03:00
|
|
|
|
2010-09-16 12:43:10 +04:00
|
|
|
if not page and 'Content-Length' in headers:
|
2010-11-08 12:49:57 +03:00
|
|
|
kb.nullConnection = NULLCONNECTION.HEAD
|
2010-10-15 14:24:54 +04:00
|
|
|
|
2010-10-15 16:46:41 +04:00
|
|
|
infoMsg = "NULL connection is supported with HEAD header"
|
2010-10-15 14:24:54 +04:00
|
|
|
logger.info(infoMsg)
|
2010-09-16 12:43:10 +04:00
|
|
|
else:
|
2010-11-08 16:26:45 +03:00
|
|
|
page, headers = Request.getPage(auxHeaders={"Range": "bytes=-1"})
|
2010-12-06 18:50:19 +03:00
|
|
|
|
2010-09-16 12:43:10 +04:00
|
|
|
if page and len(page) == 1 and 'Content-Range' in headers:
|
2010-11-08 12:49:57 +03:00
|
|
|
kb.nullConnection = NULLCONNECTION.RANGE
|
2010-09-16 12:43:10 +04:00
|
|
|
|
2010-10-15 16:46:41 +04:00
|
|
|
infoMsg = "NULL connection is supported with GET header "
|
2010-10-15 14:24:54 +04:00
|
|
|
infoMsg += "'%s'" % kb.nullConnection
|
|
|
|
logger.info(infoMsg)
|
2010-12-06 18:50:19 +03:00
|
|
|
|
2010-09-16 12:43:10 +04:00
|
|
|
except sqlmapConnectionException, errMsg:
|
|
|
|
errMsg = getUnicode(errMsg)
|
|
|
|
raise sqlmapConnectionException, errMsg
|
|
|
|
|
|
|
|
return kb.nullConnection is not None
|
|
|
|
|
2010-11-15 15:19:22 +03:00
|
|
|
def checkConnection(suppressOutput=False):
|
2010-05-21 17:36:49 +04:00
|
|
|
try:
|
|
|
|
socket.gethostbyname(conf.hostname)
|
|
|
|
except socket.gaierror:
|
2010-05-21 18:25:38 +04:00
|
|
|
errMsg = "host '%s' does not exist" % conf.hostname
|
2010-05-21 17:36:49 +04:00
|
|
|
raise sqlmapConnectionException, errMsg
|
|
|
|
|
2010-11-15 15:19:22 +03:00
|
|
|
if not suppressOutput:
|
|
|
|
infoMsg = "testing connection to the target url"
|
|
|
|
logger.info(infoMsg)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
try:
|
2010-11-08 02:25:53 +03:00
|
|
|
page, _ = Request.queryPage(content=True)
|
2010-12-06 21:20:57 +03:00
|
|
|
kb.originalPage = kb.pageTemplate = page
|
2011-01-01 23:19:55 +03:00
|
|
|
|
|
|
|
kb.errorIsNone = False
|
2011-01-12 01:18:47 +03:00
|
|
|
|
2011-01-26 01:26:28 +03:00
|
|
|
if not kb.originalPage:
|
|
|
|
errMsg = "unable to retrieve page content"
|
|
|
|
raise sqlmapConnectionException, errMsg
|
|
|
|
elif wasLastRequestDBMSError():
|
2011-01-12 01:18:47 +03:00
|
|
|
warnMsg = "there is a DBMS error found in the HTTP response body"
|
|
|
|
warnMsg += "which could interfere with the results of the tests"
|
2011-01-01 23:19:55 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
elif wasLastRequestHTTPError():
|
2011-01-12 01:18:47 +03:00
|
|
|
warnMsg = "the web server responded with an HTTP error code "
|
|
|
|
warnMsg += "which could interfere with the results of the tests"
|
2011-01-01 23:19:55 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
else:
|
|
|
|
kb.errorIsNone = True
|
2010-03-16 15:14:02 +03:00
|
|
|
except sqlmapConnectionException, errMsg:
|
2010-06-02 16:45:40 +04:00
|
|
|
errMsg = getUnicode(errMsg)
|
2010-03-16 15:14:02 +03:00
|
|
|
raise sqlmapConnectionException, errMsg
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
return True
|