2010-10-13 22:55:17 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2013-01-18 18:07:51 +04:00
|
|
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-10-13 22:55:17 +04:00
|
|
|
"""
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
|
|
|
from lib.core.common import Format
|
2010-10-13 22:55:17 +04: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
|
2011-04-23 20:25:09 +04:00
|
|
|
from lib.core.enums import OS
|
2010-10-13 22:55:17 +04:00
|
|
|
from lib.core.session import setDbms
|
|
|
|
from lib.core.settings import SYBASE_ALIASES
|
|
|
|
from lib.request import inject
|
|
|
|
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.SYBASE)
|
2010-10-13 22:55:17 +04: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-10-13 22:55:17 +04: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-10-13 22:55:17 +04:00
|
|
|
|
|
|
|
if dbmsOsFp:
|
|
|
|
value += "%s\n" % dbmsOsFp
|
|
|
|
|
|
|
|
value += "back-end DBMS: "
|
|
|
|
|
|
|
|
if not conf.extensiveFp:
|
2010-11-02 15:08:28 +03:00
|
|
|
value += DBMS.SYBASE
|
2010-10-13 22:55:17 +04:00
|
|
|
return value
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
actVer = Format.getDbms()
|
2011-04-30 17:20:05 +04:00
|
|
|
blank = " " * 15
|
2010-10-13 22:55:17 +04:00
|
|
|
value += "active fingerprint: %s" % actVer
|
|
|
|
|
|
|
|
if kb.bannerFp:
|
|
|
|
banVer = kb.bannerFp["dbmsVersion"]
|
2011-01-28 19:36:09 +03:00
|
|
|
banVer = Format.getDbms([banVer])
|
2010-10-13 22:55:17 +04:00
|
|
|
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
htmlErrorFp = Format.getErrorParsedDBMSes()
|
2010-10-13 22:55:17 +04:00
|
|
|
|
|
|
|
if htmlErrorFp:
|
|
|
|
value += "\n%shtml error message fingerprint: %s" % (blank, htmlErrorFp)
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
def checkDbms(self):
|
2011-01-28 19:36:09 +03:00
|
|
|
if not conf.extensiveFp and (Backend.isDbmsWithin(SYBASE_ALIASES) \
|
|
|
|
or conf.dbms in SYBASE_ALIASES) and Backend.getVersion() and \
|
|
|
|
Backend.getVersion().isdigit():
|
|
|
|
setDbms("%s %s" % (DBMS.SYBASE, Backend.getVersion()))
|
2010-10-13 22:55:17 +04:00
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
2011-04-23 20:25:09 +04:00
|
|
|
Backend.setOs(OS.WINDOWS)
|
2010-10-13 22:55:17 +04:00
|
|
|
|
2011-01-14 15:47:07 +03:00
|
|
|
return True
|
2010-10-13 22:55:17 +04:00
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg = "testing %s" % DBMS.SYBASE
|
2010-10-13 22:55:17 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
if conf.direct:
|
|
|
|
result = True
|
|
|
|
else:
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("tempdb_id()=tempdb_id()")
|
2010-10-13 22:55:17 +04:00
|
|
|
|
|
|
|
if result:
|
2011-04-30 19:29:59 +04:00
|
|
|
infoMsg = "confirming %s" % DBMS.SYBASE
|
|
|
|
logger.info(infoMsg)
|
2010-10-13 22:55:17 +04:00
|
|
|
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("suser_id()=suser_id()")
|
2010-10-13 22:55:17 +04:00
|
|
|
|
|
|
|
if not result:
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.SYBASE
|
2010-10-13 22:55:17 +04:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2010-11-02 14:59:24 +03:00
|
|
|
setDbms(DBMS.SYBASE)
|
2010-10-13 22:55:17 +04:00
|
|
|
|
|
|
|
self.getBanner()
|
|
|
|
|
|
|
|
if not conf.extensiveFp:
|
|
|
|
return True
|
2010-11-03 13:08:27 +03:00
|
|
|
|
2011-01-20 02:06:15 +03:00
|
|
|
infoMsg = "actively fingerprinting %s" % DBMS.SYBASE
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2011-10-22 02:34:27 +04:00
|
|
|
for version in xrange(12, 16):
|
2010-12-14 00:33:42 +03:00
|
|
|
result = inject.checkBooleanExpression("@@VERSION_NUMBER/1000=%d" % version)
|
2011-01-20 02:06:15 +03:00
|
|
|
|
2010-10-13 22:55:17 +04:00
|
|
|
if result:
|
2011-01-28 19:36:09 +03:00
|
|
|
Backend.setVersion(str(version))
|
2010-10-13 22:55:17 +04:00
|
|
|
break
|
|
|
|
|
|
|
|
return True
|
|
|
|
else:
|
2011-01-20 02:06:15 +03:00
|
|
|
warnMsg = "the back-end DBMS is not %s" % DBMS.SYBASE
|
2010-10-13 22:55:17 +04:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return False
|