mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor refactoring
This commit is contained in:
parent
f8e9f9c87d
commit
257fa3e9e4
14 changed files with 19 additions and 19 deletions
|
|
@ -18,7 +18,7 @@ class Enumeration(GenericEnumeration):
|
|||
warnMsg = "on SQLite it is not possible to get name of the current database"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
def isDba(self):
|
||||
def isDba(self, *args, **kwargs):
|
||||
warnMsg = "on SQLite the current user has all privileges"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
|
|
@ -36,7 +36,7 @@ class Enumeration(GenericEnumeration):
|
|||
|
||||
return {}
|
||||
|
||||
def getPrivileges(self, *args):
|
||||
def getPrivileges(self, *args, **kwargs):
|
||||
warnMsg = "on SQLite it is not possible to enumerate the user privileges"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue