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.
|
|
|
|
|
|
|
|
Copyright (c) 2006-2008 Bernardo Damele A. G. <bernardo.damele@gmail.com>
|
|
|
|
and Daniele Bellucci <daniele.bellucci@gmail.com>
|
|
|
|
|
|
|
|
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 re
|
|
|
|
|
2008-11-16 02:41:31 +03:00
|
|
|
from lib.core.common import formatDBMSfp
|
|
|
|
from lib.core.common import formatOSfp
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.common import getHtmlErrorFp
|
|
|
|
from lib.core.common import randomInt
|
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.exception import sqlmapSyntaxException
|
|
|
|
from lib.core.session import setDbms
|
|
|
|
from lib.core.settings import PGSQL_ALIASES
|
2008-10-26 19:19:15 +03:00
|
|
|
from lib.core.settings import PGSQL_SYSTEM_DBS
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.core.unescaper import unescaper
|
2008-11-16 02:41:31 +03:00
|
|
|
from lib.parse.banner import bannerParser
|
2008-10-15 19:38:22 +04:00
|
|
|
from lib.request import inject
|
|
|
|
|
|
|
|
from plugins.generic.enumeration import Enumeration
|
|
|
|
from plugins.generic.filesystem import Filesystem
|
|
|
|
from plugins.generic.fingerprint import Fingerprint
|
|
|
|
from plugins.generic.takeover import Takeover
|
|
|
|
|
|
|
|
|
|
|
|
class PostgreSQLMap(Fingerprint, Enumeration, Filesystem, Takeover):
|
|
|
|
"""
|
|
|
|
This class defines PostgreSQL methods
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
2008-10-26 20:00:07 +03:00
|
|
|
self.excludeDbsList = PGSQL_SYSTEM_DBS
|
2008-10-15 19:38:22 +04:00
|
|
|
Enumeration.__init__(self, "PostgreSQL")
|
|
|
|
|
|
|
|
unescaper.setUnescape(PostgreSQLMap.unescape)
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
2008-11-02 21:17:12 +03:00
|
|
|
def unescape(expression, quote=True):
|
|
|
|
if quote:
|
|
|
|
while True:
|
|
|
|
index = expression.find("'")
|
|
|
|
if index == -1:
|
|
|
|
break
|
|
|
|
|
|
|
|
firstIndex = index + 1
|
|
|
|
index = expression[firstIndex:].find("'")
|
|
|
|
|
|
|
|
if index == -1:
|
|
|
|
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression
|
|
|
|
|
|
|
|
lastIndex = firstIndex + index
|
|
|
|
old = "'%s'" % expression[firstIndex:lastIndex]
|
|
|
|
#unescaped = "("
|
|
|
|
unescaped = ""
|
|
|
|
|
|
|
|
for i in range(firstIndex, lastIndex):
|
|
|
|
unescaped += "CHR(%d)" % (ord(expression[i]))
|
|
|
|
if i < lastIndex - 1:
|
|
|
|
unescaped += "||"
|
|
|
|
|
|
|
|
#unescaped += ")"
|
|
|
|
expression = expression.replace(old, unescaped)
|
|
|
|
else:
|
|
|
|
expression = "||".join("CHR(%d)" % ord(c) for c in expression)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
return expression
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def escape(expression):
|
|
|
|
while True:
|
|
|
|
index = expression.find("CHR(")
|
|
|
|
if index == -1:
|
|
|
|
break
|
|
|
|
|
|
|
|
firstIndex = index
|
|
|
|
index = expression[firstIndex:].find("))")
|
|
|
|
|
|
|
|
if index == -1:
|
|
|
|
raise sqlmapSyntaxException, "Unenclosed ) in '%s'" % expression
|
|
|
|
|
|
|
|
lastIndex = firstIndex + index + 1
|
|
|
|
old = expression[firstIndex:lastIndex]
|
|
|
|
oldUpper = old.upper()
|
|
|
|
oldUpper = oldUpper.replace("CHR(", "").replace(")", "")
|
|
|
|
oldUpper = oldUpper.split("||")
|
|
|
|
|
|
|
|
escaped = "'%s'" % "".join([chr(int(char)) for char in oldUpper])
|
|
|
|
expression = expression.replace(old, escaped)
|
|
|
|
|
|
|
|
return expression
|
|
|
|
|
|
|
|
|
|
|
|
def getFingerprint(self):
|
2008-11-17 14:22:03 +03:00
|
|
|
value = ""
|
|
|
|
info = None
|
|
|
|
formatInfo = None
|
|
|
|
|
|
|
|
if self.banner:
|
|
|
|
info = bannerParser(self.banner)
|
|
|
|
formatInfo = formatOSfp(info)
|
|
|
|
|
|
|
|
if formatInfo:
|
|
|
|
value += "%s\n" % formatInfo
|
|
|
|
|
|
|
|
value += "back-end DBMS: "
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2008-11-17 03:00:54 +03:00
|
|
|
if not conf.extensiveFp:
|
|
|
|
value += "PostgreSQL"
|
|
|
|
return value
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2008-11-17 03:00:54 +03:00
|
|
|
actVer = formatDBMSfp()
|
|
|
|
blank = " " * 15
|
|
|
|
formatInfo = None
|
|
|
|
value += "active fingerprint: %s" % actVer
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2008-11-17 14:22:03 +03:00
|
|
|
if info:
|
2008-11-16 02:41:31 +03:00
|
|
|
banVer = info['version']
|
|
|
|
banVer = formatDBMSfp([banVer])
|
2008-10-15 19:38:22 +04:00
|
|
|
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
|
|
|
|
|
2008-11-17 03:00:54 +03:00
|
|
|
htmlErrorFp = getHtmlErrorFp()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2008-11-17 03:00:54 +03:00
|
|
|
if htmlErrorFp:
|
|
|
|
value += "\n%shtml error message fingerprint: %s" % (blank, htmlErrorFp)
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
def checkDbms(self):
|
2008-10-29 18:32:12 +03:00
|
|
|
"""
|
|
|
|
Reference for fingerprint: http://www.postgresql.org/docs/8.3/interactive/release-8-3.html
|
|
|
|
"""
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
if conf.dbms in PGSQL_ALIASES:
|
|
|
|
setDbms("PostgreSQL")
|
|
|
|
|
2008-11-17 14:22:03 +03:00
|
|
|
if conf.getBanner:
|
|
|
|
self.banner = inject.getValue("VERSION()")
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
if not conf.extensiveFp:
|
|
|
|
return True
|
|
|
|
|
|
|
|
logMsg = "testing PostgreSQL"
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
|
|
|
randInt = str(randomInt(1))
|
|
|
|
query = "COALESCE(%s, NULL)" % randInt
|
|
|
|
|
|
|
|
if inject.getValue(query) == randInt:
|
|
|
|
logMsg = "confirming PostgreSQL"
|
|
|
|
logger.info(logMsg)
|
|
|
|
|
|
|
|
query = "LENGTH('%s')" % randInt
|
|
|
|
|
|
|
|
if not inject.getValue(query) == "1":
|
|
|
|
warnMsg = "the back-end DMBS is not PostgreSQL"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
setDbms("PostgreSQL")
|
|
|
|
|
2008-11-17 14:22:03 +03:00
|
|
|
if conf.getBanner:
|
|
|
|
self.banner = inject.getValue("VERSION()")
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
if not conf.extensiveFp:
|
|
|
|
return True
|
|
|
|
|
2008-10-29 18:32:12 +03:00
|
|
|
transTimeCasted = inject.getValue("SUBSTR(TRANSACTION_TIMESTAMP()::text, 1, 1)") in ( "1", "2" )
|
|
|
|
transTime = inject.getValue("SUBSTR(TRANSACTION_TIMESTAMP(), 1, 1)") in ( "1", "2" )
|
|
|
|
|
|
|
|
if transTimeCasted and not transTime:
|
|
|
|
kb.dbmsVersion = [">= 8.3.0"]
|
|
|
|
elif transTime:
|
|
|
|
kb.dbmsVersion = [">= 8.2.0", "< 8.3.0"]
|
2008-10-15 19:38:22 +04:00
|
|
|
elif inject.getValue("GREATEST(5, 9, 1)") == "9":
|
|
|
|
kb.dbmsVersion = [">= 8.1.0", "< 8.2.0"]
|
|
|
|
elif inject.getValue("WIDTH_BUCKET(5.35, 0.024, 10.06, 5)") == "3":
|
|
|
|
kb.dbmsVersion = [">= 8.0.0", "< 8.1.0"]
|
|
|
|
elif inject.getValue("SUBSTR(MD5('sqlmap'), 1, 1)"):
|
|
|
|
kb.dbmsVersion = [">= 7.4.0", "< 8.0.0"]
|
|
|
|
elif inject.getValue("SUBSTR(CURRENT_SCHEMA(), 1, 1)") == "p":
|
|
|
|
kb.dbmsVersion = [">= 7.3.0", "< 7.4.0"]
|
|
|
|
elif inject.getValue("BIT_LENGTH(1)") == "8":
|
|
|
|
kb.dbmsVersion = [">= 7.2.0", "< 7.3.0"]
|
|
|
|
elif inject.getValue("SUBSTR(QUOTE_LITERAL('a'), 2, 1)") == "a":
|
|
|
|
kb.dbmsVersion = [">= 7.1.0", "< 7.2.0"]
|
|
|
|
elif inject.getValue("POW(2, 3)") == "8":
|
|
|
|
kb.dbmsVersion = [">= 7.0.0", "< 7.1.0"]
|
|
|
|
elif inject.getValue("MAX('a')") == "a":
|
|
|
|
kb.dbmsVersion = [">= 6.5.0", "< 6.5.3"]
|
|
|
|
elif re.search("([\d\.]+)", inject.getValue("SUBSTR(VERSION(), 12, 5)")):
|
|
|
|
kb.dbmsVersion = [">= 6.4.0", "< 6.5.0"]
|
|
|
|
elif inject.getValue("SUBSTR(CURRENT_DATE, 1, 1)") == "2":
|
|
|
|
kb.dbmsVersion = [">= 6.3.0", "< 6.4.0"]
|
|
|
|
elif inject.getValue("SUBSTRING('sqlmap', 1, 1)") == "s":
|
|
|
|
kb.dbmsVersion = [">= 6.2.0", "< 6.3.0"]
|
|
|
|
else:
|
|
|
|
kb.dbmsVersion = ["< 6.2.0"]
|
|
|
|
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
warnMsg = "the back-end DMBS is not PostgreSQL"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return False
|
2008-10-26 19:19:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
def forceDbmsEnum(self):
|
2008-10-26 19:25:28 +03:00
|
|
|
if conf.db not in PGSQL_SYSTEM_DBS and conf.db != "public":
|
2008-10-26 19:19:15 +03:00
|
|
|
conf.db = "public"
|
|
|
|
|
|
|
|
warnMsg = "on PostgreSQL it is only possible to enumerate "
|
|
|
|
warnMsg += "on the current schema and on system databases, "
|
|
|
|
warnMsg += "sqlmap is going to use 'public' schema as "
|
|
|
|
warnMsg += "database name"
|
|
|
|
logger.warn(warnMsg)
|