Path: blob/master/plugins/dbms/firebird/enumeration.py
2992 views
#!/usr/bin/env python12"""3Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)4See the file 'LICENSE' for copying permission5"""67from lib.core.data import logger8from plugins.generic.enumeration import Enumeration as GenericEnumeration910class Enumeration(GenericEnumeration):11def getDbs(self):12warnMsg = "on Firebird it is not possible to enumerate databases (use only '--tables')"13logger.warning(warnMsg)1415return []1617def getPasswordHashes(self):18warnMsg = "on Firebird it is not possible to enumerate the user password hashes"19logger.warning(warnMsg)2021return {}2223def searchDb(self):24warnMsg = "on Firebird it is not possible to search databases"25logger.warning(warnMsg)2627return []2829def getHostname(self):30warnMsg = "on Firebird it is not possible to enumerate the hostname"31logger.warning(warnMsg)3233def getStatements(self):34warnMsg = "on Firebird it is not possible to enumerate the SQL statements"35logger.warning(warnMsg)3637return []383940