2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
"""
|
2024-01-04 01:11:52 +03:00
|
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2010-03-24 00:26:45 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
|
|
|
from lib.core.common import Format
|
2010-03-24 00:26:45 +03:00
|
|
|
from lib.core.common import randomRange
|
2019-09-02 13:22:32 +03:00
|
|
|
from lib.core.common import randomStr
|
2019-03-28 18:04:38 +03:00
|
|
|
from lib.core.compat import xrange
|
2019-05-06 01:54:21 +03:00
|
|
|
from lib.core.convert import getUnicode
|
2010-03-24 00:26:45 +03:00
|
|
|
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-24 00:26:45 +03:00
|
|
|
from lib.core.session import setDbms
|
|
|
|
from lib.core.settings import FIREBIRD_ALIASES
|
2010-12-12 01:14:35 +03:00
|
|
|
from lib.core.settings import METADB_SUFFIX
|
2010-12-09 14:23:44 +03:00
|
|
|
from lib.request import inject
|
2010-03-24 00:26:45 +03:00
|
|
|
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.FIREBIRD)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
def getFingerprint(self):
|
2011-04-30 17:20:05 +04:00
|
|
|
value = ""
|
2011-01-28 19:36:09 +03:00
|
|
|
wsOsFp = Format.getOs("web server", kb.headersFp)
|
2010-03-24 00:26:45 +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-24 00:26:45 +03:00
|
|
|
|
|
|
|
if dbmsOsFp:
|
|
|
|
value += "%s\n" % dbmsOsFp
|
|
|
|
|
2011-01-24 14:04:32 +03:00
|
|
|
value += "back-end DBMS: "
|
2011-01-28 19:36:09 +03:00
|
|
|
actVer = Format.getDbms()
|
2010-11-02 15:08:28 +03:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
if not conf.extensiveFp:
|
2011-01-24 14:04:32 +03:00
|
|
|
value += actVer
|
2010-03-24 00:26:45 +03:00
|
|
|
return value
|
2010-11-02 15:08:28 +03:00
|
|
|
|
2012-12-06 17:14:19 +04:00
|
|
|
actVer = Format.getDbms() + " (%s)" % (self._dialectCheck())
|
2011-04-30 17:20:05 +04:00
|
|
|
blank = " " * 15
|
|
|
|
value += "active fingerprint: %s" % actVer
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
if kb.bannerFp:
|
2018-08-25 23:57:49 +03:00
|
|
|
banVer = kb.bannerFp.get("dbmsVersion")
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2019-05-22 10:43:10 +03:00
|
|
|
if banVer:
|
|
|
|
if re.search(r"-log$", kb.data.banner or ""):
|
|
|
|
banVer += ", logging enabled"
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2019-05-22 10:43:10 +03:00
|
|
|
banVer = Format.getDbms([banVer])
|
|
|
|
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
htmlErrorFp = Format.getErrorParsedDBMSes()
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
if htmlErrorFp:
|
|
|
|
value += "\n%shtml error message fingerprint: %s" % (blank, htmlErrorFp)
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
2012-12-06 17:14:19 +04:00
|
|
|
def _sysTablesCheck(self):
|
2010-03-24 00:26:45 +03:00
|
|
|
retVal = None
|
|
|
|
table = (
|
2018-03-13 15:45:42 +03:00
|
|
|
("1.0", ("EXISTS(SELECT CURRENT_USER FROM RDB$DATABASE)",)),
|
|
|
|
("1.5", ("NULLIF(%d,%d) IS NULL", "EXISTS(SELECT CURRENT_TRANSACTION FROM RDB$DATABASE)")),
|
|
|
|
("2.0", ("EXISTS(SELECT CURRENT_TIME(0) FROM RDB$DATABASE)", "BIT_LENGTH(%d)>0", "CHAR_LENGTH(%d)>0")),
|
|
|
|
("2.1", ("BIN_XOR(%d,%d)=0", "PI()>0.%d", "RAND()<1.%d", "FLOOR(1.%d)>=0")),
|
2019-09-02 13:22:32 +03:00
|
|
|
("2.5", ("'%s' SIMILAR TO '%s'",)), # Reference: https://firebirdsql.org/refdocs/langrefupd25-similar-to.html
|
|
|
|
("3.0", ("FALSE IS FALSE",)), # https://www.firebirdsql.org/file/community/conference-2014/pdf/02_fb.2014.whatsnew.30.en.pdf
|
2018-03-13 15:45:42 +03:00
|
|
|
)
|
2010-08-30 17:29:19 +04:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
for i in xrange(len(table)):
|
|
|
|
version, checks = table[i]
|
|
|
|
failed = False
|
2019-09-02 13:22:32 +03:00
|
|
|
check = checks[randomRange(0, len(checks) - 1)].replace("%d", getUnicode(randomRange(1, 100))).replace("%s", getUnicode(randomStr()))
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression(check)
|
2011-01-20 02:06:15 +03:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
if result:
|
|
|
|
retVal = version
|
|
|
|
else:
|
|
|
|
failed = True
|
|
|
|
break
|
2011-01-20 02:06:15 +03:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
if failed:
|
|
|
|
break
|
2010-08-30 17:29:19 +04:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
return retVal
|
|
|
|
|
2012-12-06 17:14:19 +04:00
|
|
|
def _dialectCheck(self):
|
2010-03-24 00:26:45 +03:00
|
|
|
retVal = None
|
2011-01-14 15:47:07 +03:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms():
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("EXISTS(SELECT CURRENT_DATE FROM RDB$DATABASE)")
|
2010-03-24 00:26:45 +03:00
|
|
|
retVal = "dialect 3" if result else "dialect 1"
|
2011-01-14 15:47:07 +03:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
return retVal
|
2010-08-30 17:29:19 +04:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
def checkDbms(self):
|
2017-03-06 14:53:04 +03:00
|
|
|
if not conf.extensiveFp and Backend.isDbmsWithin(FIREBIRD_ALIASES):
|
2011-01-28 19:36:09 +03:00
|
|
|
setDbms("%s %s" % (DBMS.FIREBIRD, Backend.getVersion()))
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
2011-01-24 14:04:32 +03:00
|
|
|
return True
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2011-04-30 19:29:59 +04:00
|
|
|
infoMsg = "testing %s" % DBMS.FIREBIRD
|
|
|
|
logger.info(infoMsg)
|
2010-08-30 17:29:19 +04:00
|
|
|
|
2013-02-04 18:26:44 +04:00
|
|
|
result = inject.checkBooleanExpression("(SELECT COUNT(*) FROM RDB$DATABASE WHERE [RANDNUM]=[RANDNUM])>0")
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
if result:
|
2011-04-30 19:29:59 +04:00
|
|
|
infoMsg = "confirming %s" % DBMS.FIREBIRD
|
|
|
|
logger.info(infoMsg)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("EXISTS(SELECT CURRENT_USER FROM RDB$DATABASE)")
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
if not result:
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.FIREBIRD
|
2022-06-22 13:04:34 +03:00
|
|
|
logger.warning(warnMsg)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
return False
|
|
|
|
|
2010-11-02 14:59:24 +03:00
|
|
|
setDbms(DBMS.FIREBIRD)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg = "actively fingerprinting %s" % DBMS.FIREBIRD
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2012-12-06 17:14:19 +04:00
|
|
|
version = self._sysTablesCheck()
|
2011-01-20 02:06:15 +03:00
|
|
|
|
|
|
|
if version is not None:
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersion(version)
|
2011-01-24 14:04:32 +03:00
|
|
|
setDbms("%s %s" % (DBMS.FIREBIRD, version))
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2010-12-10 13:54:17 +03:00
|
|
|
self.getBanner()
|
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
return True
|
|
|
|
else:
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.FIREBIRD
|
2022-06-22 13:04:34 +03:00
|
|
|
logger.warning(warnMsg)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def forceDbmsEnum(self):
|
2010-12-12 01:13:19 +03:00
|
|
|
conf.db = "%s%s" % (DBMS.FIREBIRD, METADB_SUFFIX)
|
2010-12-12 17:38:07 +03:00
|
|
|
|
|
|
|
if conf.tbl:
|
|
|
|
conf.tbl = conf.tbl.upper()
|