Adding support for --privileges to Snowflake implementation (#5980)

This commit is contained in:
Miroslav Stampar
2026-01-12 22:51:48 +01:00
parent ef6c3d40d3
commit f36d040206
5 changed files with 10 additions and 12 deletions

View File

@@ -23,8 +23,3 @@ class Enumeration(GenericEnumeration):
def searchColumn(self):
errMsg = "on Snowflake it is not possible to search columns"
raise SqlmapUnsupportedFeatureException(errMsg)
def getPrivileges(self, *args, **kwargs):
warnMsg = "on Snowflake it is not possible to enumerate the user privileges"
logger.warning(warnMsg)
return {}