2020-02-25 14:36:07 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2024-01-04 01:11:52 +03:00
|
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
2020-02-25 14:36:07 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.common import Backend
|
|
|
|
from lib.core.common import Format
|
|
|
|
from lib.core.common import hashDBRetrieve
|
|
|
|
from lib.core.common import hashDBWrite
|
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.enums import DBMS
|
|
|
|
from lib.core.enums import FORK
|
|
|
|
from lib.core.enums import HASHDB_KEYS
|
|
|
|
from lib.core.session import setDbms
|
|
|
|
from lib.core.settings import CACHE_ALIASES
|
|
|
|
from lib.request import inject
|
|
|
|
from plugins.generic.fingerprint import Fingerprint as GenericFingerprint
|
|
|
|
|
|
|
|
class Fingerprint(GenericFingerprint):
|
|
|
|
def __init__(self):
|
|
|
|
GenericFingerprint.__init__(self, DBMS.CACHE)
|
|
|
|
|
|
|
|
def getFingerprint(self):
|
|
|
|
fork = hashDBRetrieve(HASHDB_KEYS.DBMS_FORK)
|
|
|
|
|
|
|
|
if fork is None:
|
|
|
|
if inject.checkBooleanExpression("$ZVERSION LIKE '%IRIS%'"):
|
|
|
|
fork = FORK.IRIS
|
|
|
|
else:
|
|
|
|
fork = ""
|
|
|
|
|
|
|
|
hashDBWrite(HASHDB_KEYS.DBMS_FORK, fork)
|
|
|
|
|
|
|
|
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: "
|
|
|
|
|
|
|
|
if not conf.extensiveFp:
|
|
|
|
value += DBMS.CACHE
|
|
|
|
if fork:
|
|
|
|
value += " (%s fork)" % fork
|
|
|
|
return value
|
|
|
|
|
|
|
|
actVer = Format.getDbms()
|
|
|
|
blank = " " * 15
|
|
|
|
value += "active fingerprint: %s" % actVer
|
|
|
|
|
|
|
|
if kb.bannerFp:
|
|
|
|
banVer = kb.bannerFp.get("dbmsVersion")
|
|
|
|
|
|
|
|
if banVer:
|
|
|
|
banVer = Format.getDbms([banVer])
|
|
|
|
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
|
|
|
|
|
|
|
|
htmlErrorFp = Format.getErrorParsedDBMSes()
|
|
|
|
|
|
|
|
if htmlErrorFp:
|
|
|
|
value += "\n%shtml error message fingerprint: %s" % (blank, htmlErrorFp)
|
|
|
|
|
|
|
|
if fork:
|
|
|
|
value += "\n%sfork fingerprint: %s" % (blank, fork)
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
def checkDbms(self):
|
|
|
|
if not conf.extensiveFp and Backend.isDbmsWithin(CACHE_ALIASES):
|
|
|
|
setDbms(DBMS.CACHE)
|
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
infoMsg = "testing %s" % DBMS.CACHE
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
result = inject.checkBooleanExpression("$LISTLENGTH(NULL) IS NULL")
|
|
|
|
|
|
|
|
if result:
|
|
|
|
infoMsg = "confirming %s" % DBMS.CACHE
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
result = inject.checkBooleanExpression("%EXTERNAL %INTERNAL NULL IS NULL")
|
|
|
|
|
|
|
|
if not result:
|
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.CACHE
|
2022-06-22 13:04:34 +03:00
|
|
|
logger.warning(warnMsg)
|
2020-02-25 14:36:07 +03:00
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
setDbms(DBMS.CACHE)
|
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.CACHE
|
2022-06-22 13:04:34 +03:00
|
|
|
logger.warning(warnMsg)
|
2020-02-25 14:36:07 +03:00
|
|
|
|
|
|
|
return False
|