Path: blob/master/plugins/dbms/monetdb/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 getPasswordHashes(self):12warnMsg = "on MonetDB it is not possible to enumerate password hashes"13logger.warning(warnMsg)1415return {}1617def getStatements(self):18warnMsg = "on MonetDB it is not possible to enumerate the SQL statements"19logger.warning(warnMsg)2021return []2223def getPrivileges(self, *args, **kwargs):24warnMsg = "on MonetDB it is not possible to enumerate the user privileges"25logger.warning(warnMsg)2627return {}2829def getRoles(self, *args, **kwargs):30warnMsg = "on MonetDB it is not possible to enumerate the user roles"31logger.warning(warnMsg)3233return {}3435def getHostname(self):36warnMsg = "on MonetDB it is not possible to enumerate the hostname"37logger.warning(warnMsg)383940