mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor patch for Snowflake implementation (#5980)
This commit is contained in:
parent
f36d040206
commit
8c63d4c4a6
4 changed files with 13 additions and 10 deletions
|
|
@ -15,6 +15,12 @@ class Enumeration(GenericEnumeration):
|
|||
logger.warning(warnMsg)
|
||||
return {}
|
||||
|
||||
def getRoles(self, *args, **kwargs):
|
||||
warnMsg = "on Snowflake it is not possible to enumerate the user roles"
|
||||
logger.warning(warnMsg)
|
||||
|
||||
return {}
|
||||
|
||||
def searchDb(self):
|
||||
warnMsg = "on Snowflake it is not possible to search databases"
|
||||
logger.warning(warnMsg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue