mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor bug fix, thanks Alex
This commit is contained in:
parent
78d7b17483
commit
0c8918bf07
|
@ -242,6 +242,7 @@ Anastasios Monachos <anastasiosm@gmail.com>
|
|||
for providing some useful data
|
||||
|
||||
Alejo Murillo Moya <alex@65535.com>
|
||||
for reporting a minor bug
|
||||
for suggesting a feature
|
||||
|
||||
Roberto Nemirovsky <roberto.paes@gmail.com>
|
||||
|
|
|
@ -23,7 +23,7 @@ class Enumeration(GenericEnumeration):
|
|||
def __init__(self):
|
||||
GenericEnumeration.__init__(self, DBMS.MSSQL)
|
||||
|
||||
def getPrivileges(self):
|
||||
def getPrivileges(self, *args):
|
||||
warnMsg = "on Microsoft SQL Server it is not possible to fetch "
|
||||
warnMsg += "database users privileges"
|
||||
logger.warn(warnMsg)
|
||||
|
|
|
@ -42,7 +42,7 @@ class Enumeration(GenericEnumeration):
|
|||
|
||||
return {}
|
||||
|
||||
def getPrivileges(self):
|
||||
def getPrivileges(self, *args):
|
||||
warnMsg = "on SQLite it is not possible to enumerate the user privileges"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user