sqlmap/plugins/dbms/oracle/fingerprint.py

129 lines
3.8 KiB
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2008-10-15 19:38:22 +04:00
"""
2020-12-31 13:46:27 +03:00
Copyright (c) 2006-2021 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2008-10-15 19:38:22 +04:00
"""
import re
from lib.core.common import Backend
from lib.core.common import Format
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
from lib.core.enums import DBMS
2008-10-15 19:38:22 +04:00
from lib.core.session import setDbms
from lib.core.settings import ORACLE_ALIASES
from lib.request import inject
from plugins.generic.fingerprint import Fingerprint as GenericFingerprint
2008-10-15 19:38:22 +04:00
class Fingerprint(GenericFingerprint):
2008-10-15 19:38:22 +04:00
def __init__(self):
GenericFingerprint.__init__(self, DBMS.ORACLE)
2008-10-15 19:38:22 +04:00
def getFingerprint(self):
2011-04-30 17:20:05 +04:00
value = ""
wsOsFp = Format.getOs("web server", kb.headersFp)
if wsOsFp:
value += "%s\n" % wsOsFp
if kb.data.banner:
dbmsOsFp = Format.getOs("back-end DBMS", kb.bannerFp)
if dbmsOsFp:
value += "%s\n" % dbmsOsFp
value += "back-end DBMS: "
2008-10-15 19:38:22 +04:00
if not conf.extensiveFp:
2010-11-02 15:08:28 +03:00
value += DBMS.ORACLE
return value
2008-10-15 19:38:22 +04:00
2011-04-30 17:20:05 +04:00
actVer = Format.getDbms()
blank = " " * 15
value += "active fingerprint: %s" % actVer
2008-10-15 19:38:22 +04:00
if kb.bannerFp:
2018-08-25 23:57:49 +03:00
banVer = kb.bannerFp.get("dbmsVersion")
2019-05-22 10:43:10 +03:00
if banVer:
banVer = Format.getDbms([banVer])
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
2008-10-15 19:38:22 +04:00
htmlErrorFp = Format.getErrorParsedDBMSes()
2008-10-15 19:38:22 +04: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):
2017-03-06 14:53:04 +03:00
if not conf.extensiveFp and Backend.isDbmsWithin(ORACLE_ALIASES):
2010-11-02 14:59:24 +03:00
setDbms(DBMS.ORACLE)
2008-10-15 19:38:22 +04:00
self.getBanner()
return True
2008-10-15 19:38:22 +04:00
2011-04-30 19:29:59 +04:00
infoMsg = "testing %s" % DBMS.ORACLE
logger.info(infoMsg)
# NOTE: SELECT LENGTH(SYSDATE)=LENGTH(SYSDATE) FROM DUAL does
# not work connecting directly to the Oracle database
if conf.direct:
result = True
else:
result = inject.checkBooleanExpression("LENGTH(SYSDATE)=LENGTH(SYSDATE)")
2008-10-15 19:38:22 +04:00
if result:
2011-04-30 19:29:59 +04:00
infoMsg = "confirming %s" % DBMS.ORACLE
logger.info(infoMsg)
2008-10-15 19:38:22 +04:00
# NOTE: SELECT NVL(RAWTOHEX([RANDNUM1]),[RANDNUM1])=RAWTOHEX([RANDNUM1]) FROM DUAL does
# not work connecting directly to the Oracle database
if conf.direct:
result = True
else:
result = inject.checkBooleanExpression("NVL(RAWTOHEX([RANDNUM1]),[RANDNUM1])=RAWTOHEX([RANDNUM1])")
2008-10-15 19:38:22 +04:00
if not result:
warnMsg = "the back-end DBMS is not %s" % DBMS.ORACLE
2008-10-15 19:38:22 +04:00
logger.warn(warnMsg)
return False
2010-11-02 14:59:24 +03:00
setDbms(DBMS.ORACLE)
2008-10-15 19:38:22 +04:00
self.getBanner()
2008-10-15 19:38:22 +04:00
if not conf.extensiveFp:
return True
infoMsg = "actively fingerprinting %s" % DBMS.ORACLE
logger.info(infoMsg)
2016-06-03 03:27:59 +03:00
# Reference: https://en.wikipedia.org/wiki/Oracle_Database
2021-05-19 19:20:39 +03:00
for version in ("21c", "19c", "18c", "12c", "11g", "10g", "9i", "8i", "7"):
2017-10-31 13:38:09 +03:00
number = int(re.search(r"([\d]+)", version).group(1))
2013-06-26 15:53:42 +04:00
output = inject.checkBooleanExpression("%d=(SELECT SUBSTR((VERSION),1,%d) FROM SYS.PRODUCT_COMPONENT_VERSION WHERE ROWNUM=1)" % (number, 1 if number < 10 else 2))
if output:
Backend.setVersion(version)
break
2008-10-15 19:38:22 +04:00
return True
else:
warnMsg = "the back-end DBMS is not %s" % DBMS.ORACLE
2008-10-15 19:38:22 +04:00
logger.warn(warnMsg)
return False
def forceDbmsEnum(self):
if conf.db:
conf.db = conf.db.upper()
if conf.tbl:
conf.tbl = conf.tbl.upper()