2010-03-23 01:57:57 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2011-04-15 16:33:18 +04:00
|
|
|
Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-23 01:57:57 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.agent import agent
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
|
|
|
from lib.core.common import Format
|
2010-06-02 16:45:40 +04:00
|
|
|
from lib.core.common import getUnicode
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.common import randomInt
|
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.session import setDbms
|
|
|
|
from lib.core.settings import PGSQL_ALIASES
|
|
|
|
from lib.core.settings import PGSQL_SYSTEM_DBS
|
|
|
|
from lib.request import inject
|
|
|
|
from lib.request.connect import Connect as Request
|
|
|
|
|
|
|
|
from plugins.generic.fingerprint import Fingerprint as GenericFingerprint
|
|
|
|
|
|
|
|
class Fingerprint(GenericFingerprint):
|
|
|
|
def __init__(self):
|
2011-01-14 14:55:20 +03:00
|
|
|
GenericFingerprint.__init__(self, DBMS.PGSQL)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
def getFingerprint(self):
|
|
|
|
value = ""
|
2011-01-28 19:36:09 +03:00
|
|
|
wsOsFp = Format.getOs("web server", kb.headersFp)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
if wsOsFp:
|
|
|
|
value += "%s\n" % wsOsFp
|
|
|
|
|
|
|
|
if kb.data.banner:
|
2011-01-28 19:36:09 +03:00
|
|
|
dbmsOsFp = Format.getOs("back-end DBMS", kb.bannerFp)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
if dbmsOsFp:
|
|
|
|
value += "%s\n" % dbmsOsFp
|
|
|
|
|
|
|
|
value += "back-end DBMS: "
|
|
|
|
|
|
|
|
if not conf.extensiveFp:
|
2010-12-04 01:28:09 +03:00
|
|
|
value += DBMS.PGSQL
|
2010-03-23 01:57:57 +03:00
|
|
|
return value
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
actVer = Format.getDbms()
|
2010-03-23 01:57:57 +03:00
|
|
|
blank = " " * 15
|
|
|
|
value += "active fingerprint: %s" % actVer
|
|
|
|
|
|
|
|
if kb.bannerFp:
|
|
|
|
banVer = kb.bannerFp["dbmsVersion"] if 'dbmsVersion' in kb.bannerFp else None
|
2011-01-28 19:36:09 +03:00
|
|
|
banVer = Format.getDbms([banVer])
|
2010-03-23 01:57:57 +03:00
|
|
|
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
htmlErrorFp = Format.getErrorParsedDBMSes()
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
if htmlErrorFp:
|
|
|
|
value += "\n%shtml error message fingerprint: %s" % (blank, htmlErrorFp)
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
def checkDbms(self):
|
|
|
|
"""
|
|
|
|
References for fingerprint:
|
|
|
|
|
|
|
|
* http://www.postgresql.org/docs/8.4/interactive/release.html (up to 8.4.2)
|
|
|
|
"""
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if not conf.extensiveFp and (Backend.isDbmsWithin(PGSQL_ALIASES) or conf.dbms in PGSQL_ALIASES):
|
2010-12-04 01:28:09 +03:00
|
|
|
setDbms(DBMS.PGSQL)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
2011-01-14 15:47:07 +03:00
|
|
|
return True
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg = "testing %s" % DBMS.PGSQL
|
2010-03-31 14:50:47 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-06-02 16:45:40 +04:00
|
|
|
randInt = getUnicode(randomInt(1))
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("%s::int=%s" % (randInt, randInt))
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
if result:
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg = "confirming %s" % DBMS.PGSQL
|
2010-03-23 01:57:57 +03:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("COALESCE(%s, NULL)=%s" % (randInt, randInt))
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
if not result:
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.PGSQL
|
2010-03-23 01:57:57 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2010-12-04 01:28:09 +03:00
|
|
|
setDbms(DBMS.PGSQL)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
|
|
|
if not conf.extensiveFp:
|
|
|
|
return True
|
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg = "actively fingerprinting %s" % DBMS.PGSQL
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2011-04-12 14:24:09 +04:00
|
|
|
if inject.checkBooleanExpression("LENGTH(TO_CHAR(1, 'EEEE'))>0"):
|
2011-04-12 14:30:33 +04:00
|
|
|
Backend.setVersion(">= 9.0.0")
|
2011-04-12 14:22:54 +04:00
|
|
|
elif inject.checkBooleanExpression("2=(SELECT DIV(6, 3))"):
|
2011-04-12 14:35:33 +04:00
|
|
|
Backend.setVersionList([">= 8.4.0", "< 9.0.0"])
|
2010-12-31 00:53:34 +03:00
|
|
|
elif inject.checkBooleanExpression("EXTRACT(ISODOW FROM CURRENT_TIMESTAMP)<8"):
|
2011-04-12 14:35:33 +04:00
|
|
|
Backend.setVersionList([">= 8.3.0", "< 8.4.0"])
|
2010-12-31 00:53:34 +03:00
|
|
|
elif inject.checkBooleanExpression("ISFINITE(TRANSACTION_TIMESTAMP())"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 8.2.0", "< 8.3.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("9=(SELECT GREATEST(5, 9, 1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 8.1.0", "< 8.2.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("3=(SELECT WIDTH_BUCKET(5.35, 0.024, 10.06, 5))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 8.0.0", "< 8.1.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("'d'=(SELECT SUBSTR(MD5('sqlmap'), 1, 1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 7.4.0", "< 8.0.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("'p'=(SELECT SUBSTR(CURRENT_SCHEMA(), 1, 1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 7.3.0", "< 7.4.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("8=(SELECT BIT_LENGTH(1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 7.2.0", "< 7.3.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("'a'=(SELECT SUBSTR(QUOTE_LITERAL('a'), 2, 1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 7.1.0", "< 7.2.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("8=(SELECT POW(2, 3))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 7.0.0", "< 7.1.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("'a'=(SELECT MAX('a'))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 6.5.0", "< 6.5.3"])
|
2010-12-31 00:53:34 +03:00
|
|
|
elif inject.checkBooleanExpression("VERSION()=VERSION()"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 6.4.0", "< 6.5.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("2=(SELECT SUBSTR(CURRENT_DATE, 1, 1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 6.3.0", "< 6.4.0"])
|
2010-12-14 00:33:42 +03:00
|
|
|
elif inject.checkBooleanExpression("'s'=(SELECT SUBSTRING('sqlmap', 1, 1))"):
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersionList([">= 6.2.0", "< 6.3.0"])
|
2010-03-23 01:57:57 +03:00
|
|
|
else:
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersion("< 6.2.0")
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
return True
|
|
|
|
else:
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.PGSQL
|
2010-03-23 01:57:57 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def checkDbmsOs(self, detailed=False):
|
|
|
|
if kb.os:
|
|
|
|
return
|
|
|
|
|
|
|
|
infoMsg = "fingerprinting the back-end DBMS operating system"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-03-27 02:23:25 +03:00
|
|
|
self.createSupportTbl(self.fileTblName, self.tblField, "character(10000)")
|
2010-03-23 01:57:57 +03:00
|
|
|
inject.goStacked("INSERT INTO %s(%s) VALUES (%s)" % (self.fileTblName, self.tblField, "VERSION()"))
|
|
|
|
|
|
|
|
# Windows executables should always have ' Visual C++' or ' mingw'
|
|
|
|
# patterns within the banner
|
|
|
|
osWindows = ( " Visual C++", "mingw" )
|
|
|
|
|
|
|
|
for osPattern in osWindows:
|
2010-12-14 00:33:42 +03:00
|
|
|
query = "(SELECT LENGTH(%s) FROM %s WHERE %s " % (self.tblField, self.fileTblName, self.tblField)
|
2010-03-23 01:57:57 +03:00
|
|
|
query += "LIKE '%" + osPattern + "%')>0"
|
|
|
|
|
2010-12-14 00:33:42 +03:00
|
|
|
if inject.checkBooleanExpression(query):
|
2010-03-23 01:57:57 +03:00
|
|
|
kb.os = "Windows"
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
if kb.os is None:
|
|
|
|
kb.os = "Linux"
|
|
|
|
|
|
|
|
infoMsg = "the back-end DBMS operating system is %s" % kb.os
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
self.cleanup(onlyFileTbl=True)
|
|
|
|
|
|
|
|
def forceDbmsEnum(self):
|
|
|
|
if conf.db not in PGSQL_SYSTEM_DBS and conf.db != "public":
|
|
|
|
conf.db = "public"
|
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "on %s it is only possible to enumerate " % DBMS.PGSQL
|
2010-03-23 01:57:57 +03:00
|
|
|
warnMsg += "on the current schema and on system databases, "
|
|
|
|
warnMsg += "sqlmap is going to use 'public' schema as "
|
|
|
|
warnMsg += "database name"
|
|
|
|
logger.warn(warnMsg)
|