Path: blob/master/plugins/dbms/frontbase/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 getBanner(self):12warnMsg = "on FrontBase it is not possible to get the banner"13logger.warning(warnMsg)1415return None1617def getPrivileges(self, *args, **kwargs):18warnMsg = "on FrontBase it is not possible to enumerate the user privileges"19logger.warning(warnMsg)2021return {}2223def getHostname(self):24warnMsg = "on FrontBase it is not possible to enumerate the hostname"25logger.warning(warnMsg)2627def getStatements(self):28warnMsg = "on FrontBase it is not possible to enumerate the SQL statements"29logger.warning(warnMsg)3031return []323334