sqlmap/plugins/dbms/oracle/fingerprint.py

142 lines
4.1 KiB
Python
Raw Normal View History

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
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
from lib.core.agent import agent
from lib.core.common import formatDBMSfp
from lib.core.common import formatFingerprint
2008-10-15 19:38:22 +04:00
from lib.core.common import getHtmlErrorFp
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 lib.request.connect import Connect as Request
2008-10-15 19:38:22 +04:00
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)
2008-10-15 19:38:22 +04:00
def getFingerprint(self):
value = ""
wsOsFp = formatFingerprint("web server", kb.headersFp)
if wsOsFp:
value += "%s\n" % wsOsFp
if kb.data.banner:
dbmsOsFp = formatFingerprint("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
actVer = formatDBMSfp()
blank = " " * 15
value += "active fingerprint: %s" % actVer
2008-10-15 19:38:22 +04:00
if kb.bannerFp:
2010-03-04 12:16:45 +03:00
banVer = kb.bannerFp["dbmsVersion"] if 'dbmsVersion' in kb.bannerFp else None
banVer = formatDBMSfp([banVer])
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
2008-10-15 19:38:22 +04:00
htmlErrorFp = getHtmlErrorFp()
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):
if (kb.dbms is not None and kb.dbms.lower() in ORACLE_ALIASES) or conf.dbms in ORACLE_ALIASES:
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
logMsg = "testing Oracle"
logger.info(logMsg)
# NOTE: SELECT ROWNUM=ROWNUM FROM DUAL does not work connecting
# directly to the Oracle database
if conf.direct:
result = True
else:
result = inject.checkBooleanExpression("ROWNUM=ROWNUM", expectingNone=True)
2008-10-15 19:38:22 +04:00
if result:
2008-10-15 19:38:22 +04:00
logMsg = "confirming Oracle"
logger.info(logMsg)
# 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)", expectingNone=True)
2008-10-15 19:38:22 +04:00
if not result:
2010-11-12 13:02:02 +03:00
warnMsg = "the back-end DBMS is not 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
query = "SELECT SUBSTR((VERSION), 1, 2) FROM SYS.PRODUCT_COMPONENT_VERSION WHERE ROWNUM=1"
2010-10-11 17:52:32 +04:00
version = inject.getValue(query, unpack=False, suppressOutput=True)
if re.search("^11", version):
2008-10-15 19:38:22 +04:00
kb.dbmsVersion = ["11i"]
elif re.search("^10", version):
2008-10-15 19:38:22 +04:00
kb.dbmsVersion = ["10g"]
elif re.search("^9", version):
2008-10-15 19:38:22 +04:00
kb.dbmsVersion = ["9i"]
elif re.search("^8", version):
2008-10-15 19:38:22 +04:00
kb.dbmsVersion = ["8i"]
return True
else:
2010-11-12 13:02:02 +03:00
warnMsg = "the back-end DBMS is not 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()
else:
conf.db = "USERS"
warnMsg = "on Oracle it is only possible to enumerate "
warnMsg += "if you provide a TABLESPACE_NAME as database "
warnMsg += "name. sqlmap is going to use 'USERS' as database "
warnMsg += "name"
logger.warn(warnMsg)
if conf.tbl:
conf.tbl = conf.tbl.upper()