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
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
|
|
|
from lib.core.common import Format
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.common import dataToSessionFile
|
2011-01-06 11:54:50 +03:00
|
|
|
from lib.core.common import getFilteredPageContent
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.common import readInput
|
2010-12-01 20:09:52 +03:00
|
|
|
from lib.core.convert import base64pickle
|
|
|
|
from lib.core.convert import base64unpickle
|
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-11-29 04:04:42 +03:00
|
|
|
from lib.core.datatype import injectionDict
|
2010-11-28 21:10:54 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import PLACE
|
2010-12-27 17:17:20 +03:00
|
|
|
from lib.core.settings import METADB_SUFFIX
|
2011-01-24 14:04:32 +03:00
|
|
|
from lib.core.settings import SUPPORTED_DBMS
|
2010-12-18 00:29:09 +03:00
|
|
|
from lib.core.settings import UNKNOWN_DBMS_VERSION
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-11 00:51:11 +04:00
|
|
|
def safeFormatString(value):
|
|
|
|
retVal = value
|
|
|
|
if retVal:
|
|
|
|
retVal = retVal.replace("[", "__LEFT_SQUARE_BRACKET__").replace("]", "__RIGHT_SQUARE_BRACKET__")
|
|
|
|
return retVal
|
|
|
|
|
|
|
|
def unSafeFormatString(value):
|
|
|
|
retVal = value
|
|
|
|
if retVal:
|
|
|
|
retVal = retVal.replace("__LEFT_SQUARE_BRACKET__", "[").replace("__RIGHT_SQUARE_BRACKET__", "]")
|
|
|
|
return retVal
|
|
|
|
|
2010-11-28 21:10:54 +03:00
|
|
|
def setInjection(inj):
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
Save information retrieved about injection place and parameter in the
|
|
|
|
session file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
condition = (
|
2010-11-28 21:10:54 +03:00
|
|
|
( not kb.resumedQueries
|
2008-10-15 19:38:22 +04:00
|
|
|
or ( kb.resumedQueries.has_key(conf.url) and
|
2010-12-01 20:09:52 +03:00
|
|
|
not kb.resumedQueries[conf.url].has_key("Injection data")
|
|
|
|
) )
|
2008-10-15 19:38:22 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
if condition:
|
2010-12-01 20:09:52 +03:00
|
|
|
dataToSessionFile("[%s][%s][%s][Injection data][%s]\n" % (conf.url, inj.place, safeFormatString(conf.parameters[inj.place]), base64pickle(inj)))
|
2010-11-29 04:04:42 +03:00
|
|
|
|
2010-12-29 22:48:19 +03:00
|
|
|
def setDynamicMarkings(markings):
|
|
|
|
"""
|
|
|
|
Save information retrieved about dynamic markings to the
|
|
|
|
session file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
condition = (
|
|
|
|
( not kb.resumedQueries
|
|
|
|
or ( kb.resumedQueries.has_key(conf.url) and
|
|
|
|
not kb.resumedQueries[conf.url].has_key("Dynamic markings")
|
|
|
|
) )
|
|
|
|
)
|
|
|
|
|
|
|
|
if condition:
|
|
|
|
dataToSessionFile("[%s][%s][%s][Dynamic markings][%s]\n" % (conf.url, None, None, base64pickle(markings)))
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
def setDbms(dbms):
|
|
|
|
"""
|
|
|
|
@param dbms: database management system to be set into the knowledge
|
|
|
|
base as fingerprint.
|
|
|
|
@type dbms: C{str}
|
|
|
|
"""
|
|
|
|
condition = (
|
2008-10-16 19:31:02 +04:00
|
|
|
not kb.resumedQueries
|
2008-10-15 19:38:22 +04:00
|
|
|
or ( kb.resumedQueries.has_key(conf.url) and
|
2008-10-16 19:31:02 +04:00
|
|
|
not kb.resumedQueries[conf.url].has_key("DBMS") )
|
2008-10-15 19:38:22 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
if condition:
|
2010-11-28 21:10:54 +03:00
|
|
|
dataToSessionFile("[%s][%s][%s][DBMS][%s]\n" % (conf.url, kb.injection.place, safeFormatString(conf.parameters[kb.injection.place]), safeFormatString(dbms)))
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-01-24 14:04:32 +03:00
|
|
|
firstRegExp = "(%s)" % ("|".join([alias for alias in SUPPORTED_DBMS]))
|
2008-10-15 19:38:22 +04:00
|
|
|
dbmsRegExp = re.search("^%s" % firstRegExp, dbms, re.I)
|
|
|
|
|
|
|
|
if dbmsRegExp:
|
|
|
|
dbms = dbmsRegExp.group(1)
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setDbms(dbms)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
logger.info("the back-end DBMS is %s" % Backend.getDbms())
|
2008-12-31 00:24:01 +03:00
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def setOs():
|
|
|
|
"""
|
|
|
|
Example of kb.bannerFp dictionary:
|
|
|
|
|
|
|
|
{
|
|
|
|
'sp': set(['Service Pack 4']),
|
|
|
|
'dbmsVersion': '8.00.194',
|
|
|
|
'dbmsServicePack': '0',
|
|
|
|
'distrib': set(['2000']),
|
|
|
|
'dbmsRelease': '2000',
|
|
|
|
'type': set(['Windows'])
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
infoMsg = ""
|
|
|
|
condition = (
|
|
|
|
not kb.resumedQueries
|
|
|
|
or ( kb.resumedQueries.has_key(conf.url) and
|
|
|
|
not kb.resumedQueries[conf.url].has_key("OS") )
|
|
|
|
)
|
|
|
|
|
|
|
|
if not kb.bannerFp:
|
|
|
|
return
|
|
|
|
|
|
|
|
if "type" in kb.bannerFp:
|
2011-01-28 19:36:09 +03:00
|
|
|
kb.os = Format.humanize(kb.bannerFp["type"])
|
2009-04-22 15:48:07 +04:00
|
|
|
infoMsg = "the back-end DBMS operating system is %s" % kb.os
|
|
|
|
|
|
|
|
if "distrib" in kb.bannerFp:
|
2011-01-28 19:36:09 +03:00
|
|
|
kb.osVersion = Format.humanize(kb.bannerFp["distrib"])
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg += " %s" % kb.osVersion
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
if "sp" in kb.bannerFp:
|
2011-01-28 19:36:09 +03:00
|
|
|
kb.osSP = int(Format.humanize(kb.bannerFp["sp"]).replace("Service Pack ", ""))
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
elif "sp" not in kb.bannerFp and kb.os == "Windows":
|
|
|
|
kb.osSP = 0
|
|
|
|
|
2009-07-29 14:44:24 +04:00
|
|
|
if kb.os and kb.osVersion and kb.osSP:
|
2009-04-22 15:48:07 +04:00
|
|
|
infoMsg += " Service Pack %d" % kb.osSP
|
|
|
|
|
|
|
|
if infoMsg:
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
if condition:
|
2010-11-28 21:10:54 +03:00
|
|
|
dataToSessionFile("[%s][%s][%s][OS][%s]\n" % (conf.url, kb.injection.place, safeFormatString(conf.parameters[kb.injection.place]), safeFormatString(kb.os)))
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
def setRemoteTempPath():
|
|
|
|
condition = (
|
|
|
|
not kb.resumedQueries or ( kb.resumedQueries.has_key(conf.url) and
|
|
|
|
not kb.resumedQueries[conf.url].has_key("Remote temp path") )
|
|
|
|
)
|
|
|
|
|
|
|
|
if condition:
|
2010-11-28 21:10:54 +03:00
|
|
|
dataToSessionFile("[%s][%s][%s][Remote temp path][%s]\n" % (conf.url, kb.injection.place, safeFormatString(conf.parameters[kb.injection.place]), safeFormatString(conf.tmpPath)))
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
def resumeConfKb(expression, url, value):
|
2011-01-16 02:11:36 +03:00
|
|
|
if expression == "Injection data" and url == conf.url:
|
2010-12-01 20:09:52 +03:00
|
|
|
injection = base64unpickle(value[:-1])
|
2010-12-03 13:51:27 +03:00
|
|
|
logMsg = "resuming injection data from session file"
|
2010-11-29 04:04:42 +03:00
|
|
|
logger.info(logMsg)
|
|
|
|
|
2010-12-22 01:35:44 +03:00
|
|
|
if injection.place in conf.paramDict and\
|
|
|
|
injection.parameter in conf.paramDict[injection.place]:
|
2010-12-07 13:57:32 +03:00
|
|
|
kb.injections.append(injection)
|
|
|
|
else:
|
|
|
|
warnMsg = "there is an injection in %s parameter '%s' " % (injection.place, injection.parameter)
|
|
|
|
warnMsg += "but you did not provided it this time"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2010-12-29 22:48:19 +03:00
|
|
|
elif expression == "Dynamic markings" and url == conf.url:
|
|
|
|
kb.dynamicMarkings = base64unpickle(value[:-1])
|
|
|
|
logMsg = "resuming dynamic markings from session file"
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
elif expression == "DBMS" and url == conf.url:
|
2010-10-11 00:51:11 +04:00
|
|
|
dbms = unSafeFormatString(value[:-1])
|
2009-07-09 15:05:24 +04:00
|
|
|
dbms = dbms.lower()
|
2010-12-18 00:29:09 +03:00
|
|
|
dbmsVersion = [UNKNOWN_DBMS_VERSION]
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-11-29 04:04:42 +03:00
|
|
|
logMsg = "resuming back-end DBMS '%s' " % dbms
|
2008-10-15 19:38:22 +04:00
|
|
|
logMsg += "from session file"
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
2011-01-24 14:04:32 +03:00
|
|
|
firstRegExp = "(%s)" % ("|".join([alias for alias in SUPPORTED_DBMS]))
|
2008-10-15 19:38:22 +04:00
|
|
|
dbmsRegExp = re.search("%s ([\d\.]+)" % firstRegExp, dbms)
|
|
|
|
|
|
|
|
if dbmsRegExp:
|
2009-07-09 15:05:24 +04:00
|
|
|
dbms = dbmsRegExp.group(1)
|
|
|
|
dbmsVersion = [ dbmsRegExp.group(2) ]
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
if conf.dbms and conf.dbms.lower() != dbms:
|
|
|
|
message = "you provided '%s' as back-end DBMS, " % conf.dbms
|
|
|
|
message += "but from a past scan information on the target URL "
|
|
|
|
message += "sqlmap assumes the back-end DBMS is %s. " % dbms
|
|
|
|
message += "Do you really want to force the back-end "
|
|
|
|
message += "DBMS value? [y/N] "
|
|
|
|
test = readInput(message, default="N")
|
|
|
|
|
|
|
|
if not test or test[0] in ("n", "N"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setDbms(dbms)
|
|
|
|
Backend.setVersionList(dbmsVersion)
|
2008-10-15 19:38:22 +04:00
|
|
|
else:
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setDbms(dbms)
|
|
|
|
Backend.setVersionList(dbmsVersion)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
elif expression == "OS" and url == conf.url:
|
2010-10-11 00:51:11 +04:00
|
|
|
os = unSafeFormatString(value[:-1])
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-01-02 11:08:38 +03:00
|
|
|
if os and os != 'None':
|
|
|
|
logMsg = "resuming back-end DBMS operating system '%s' " % os
|
|
|
|
logMsg += "from session file"
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
|
|
|
if conf.os and conf.os.lower() != os.lower():
|
|
|
|
message = "you provided '%s' as back-end DBMS operating " % conf.os
|
|
|
|
message += "system, but from a past scan information on the "
|
|
|
|
message += "target URL sqlmap assumes the back-end DBMS "
|
|
|
|
message += "operating system is %s. " % os
|
|
|
|
message += "Do you really want to force the back-end DBMS "
|
|
|
|
message += "OS value? [y/N] "
|
|
|
|
test = readInput(message, default="N")
|
|
|
|
|
|
|
|
if not test or test[0] in ("n", "N"):
|
|
|
|
conf.os = os
|
|
|
|
else:
|
2009-04-22 15:48:07 +04:00
|
|
|
conf.os = os
|
|
|
|
|
2011-01-16 02:11:36 +03:00
|
|
|
elif expression == "Remote temp path" and url == conf.url:
|
|
|
|
conf.tmpPath = unSafeFormatString(value[:-1])
|
|
|
|
|
|
|
|
logMsg = "resuming remote absolute path of temporary "
|
|
|
|
logMsg += "files directory '%s' from session file" % conf.tmpPath
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
2010-12-27 17:17:20 +03:00
|
|
|
elif expression == "TABLE_EXISTS" and url == conf.url:
|
|
|
|
table = unSafeFormatString(value[:-1])
|
|
|
|
|
|
|
|
if '.' in table:
|
|
|
|
db, table = table.split('.')
|
|
|
|
else:
|
2011-01-28 19:36:09 +03:00
|
|
|
db = "%s%s" % (Backend.getIdentifiedDbms(), METADB_SUFFIX)
|
2010-12-27 17:17:20 +03:00
|
|
|
|
|
|
|
logMsg = "resuming brute forced table name "
|
|
|
|
logMsg += "'%s' from session file" % table
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
|
|
|
kb.brute.tables.append((db, table))
|
|
|
|
|
|
|
|
elif expression == "COLUMN_EXISTS" and url == conf.url:
|
|
|
|
table, column = unSafeFormatString(value[:-1]).split('..')
|
|
|
|
colName, colType = column.split(' ')
|
|
|
|
|
|
|
|
if '.' in table:
|
|
|
|
db, table = table.split('.')
|
|
|
|
else:
|
2011-01-28 19:36:09 +03:00
|
|
|
db = "%s%s" % (Backend.getIdentifiedDbms(), METADB_SUFFIX)
|
2010-12-27 17:17:20 +03:00
|
|
|
|
|
|
|
logMsg = "resuming brute forced column name "
|
|
|
|
logMsg += "'%s' for table '%s' from session file" % (colName, table)
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
|
|
|
kb.brute.columns.append((db, table, colName, colType))
|