mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-30 23:47:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			127 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| """
 | |
| Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
 | |
| See the file 'doc/COPYING' for copying permission
 | |
| """
 | |
| 
 | |
| import re
 | |
| 
 | |
| from lib.core.common import Backend
 | |
| from lib.core.common import Format
 | |
| 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.session import setDbms
 | |
| from lib.core.settings import ORACLE_ALIASES
 | |
| from lib.request import inject
 | |
| from plugins.generic.fingerprint import Fingerprint as GenericFingerprint
 | |
| 
 | |
| class Fingerprint(GenericFingerprint):
 | |
|     def __init__(self):
 | |
|         GenericFingerprint.__init__(self, DBMS.ORACLE)
 | |
| 
 | |
|     def getFingerprint(self):
 | |
|         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.ORACLE
 | |
|             return value
 | |
| 
 | |
|         actVer = Format.getDbms()
 | |
|         blank = " " * 15
 | |
|         value += "active fingerprint: %s" % actVer
 | |
| 
 | |
|         if kb.bannerFp:
 | |
|             banVer = kb.bannerFp["dbmsVersion"] if 'dbmsVersion' in kb.bannerFp else None
 | |
|             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)
 | |
| 
 | |
|         return value
 | |
| 
 | |
|     def checkDbms(self):
 | |
|         if not conf.extensiveFp and (Backend.isDbmsWithin(ORACLE_ALIASES) or (conf.dbms or "").lower() in ORACLE_ALIASES):
 | |
|             setDbms(DBMS.ORACLE)
 | |
| 
 | |
|             self.getBanner()
 | |
| 
 | |
|             return True
 | |
| 
 | |
|         infoMsg = "testing %s" % DBMS.ORACLE
 | |
|         logger.info(infoMsg)
 | |
| 
 | |
|         # 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")
 | |
| 
 | |
|         if result:
 | |
|             infoMsg = "confirming %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)")
 | |
| 
 | |
|             if not result:
 | |
|                 warnMsg = "the back-end DBMS is not %s" % DBMS.ORACLE
 | |
|                 logger.warn(warnMsg)
 | |
| 
 | |
|                 return False
 | |
| 
 | |
|             setDbms(DBMS.ORACLE)
 | |
| 
 | |
|             self.getBanner()
 | |
| 
 | |
|             if not conf.extensiveFp:
 | |
|                 return True
 | |
| 
 | |
|             infoMsg = "actively fingerprinting %s" % DBMS.ORACLE
 | |
|             logger.info(infoMsg)
 | |
| 
 | |
|             # Reference: https://en.wikipedia.org/wiki/Oracle_Database
 | |
|             for version in ("12c", "11g", "10g", "9i", "8i"):
 | |
|                 number = int(re.search("([\d]+)", version).group(1))
 | |
|                 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
 | |
| 
 | |
|             return True
 | |
|         else:
 | |
|             warnMsg = "the back-end DBMS is not %s" % DBMS.ORACLE
 | |
|             logger.warn(warnMsg)
 | |
| 
 | |
|             return False
 | |
| 
 | |
|     def forceDbmsEnum(self):
 | |
|         if conf.db:
 | |
|             conf.db = conf.db.upper()
 | |
| 
 | |
|         if conf.tbl:
 | |
|             conf.tbl = conf.tbl.upper()
 |