We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe3967b commit 24e4429Copy full SHA for 24e4429
2 files changed
plugins/dbms/mssqlserver/enumeration.py
@@ -22,7 +22,7 @@ class Enumeration(GenericEnumeration):
22
def __init__(self):
23
GenericEnumeration.__init__(self, "Microsoft SQL Server")
24
25
- def getPrivileges(self, *args):
+ def getPrivileges(self):
26
warnMsg = "on Microsoft SQL Server it is not possible to fetch "
27
warnMsg += "database users privileges"
28
logger.warn(warnMsg)
plugins/dbms/sqlite/enumeration.py
@@ -41,7 +41,7 @@ def getPasswordHashes(self):
41
42
return {}
43
44
45
warnMsg = "on SQLite it is not possible to enumerate the user privileges"
46
47
0 commit comments