mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-06-16 19:13:29 +03:00
fix for a bug reported by alessio.dallapiazza@gmail.com (AttributeError: users)
This commit is contained in:
parent
6845d402fa
commit
9853c1ec7f
|
@ -43,3 +43,19 @@ class Enumeration(GenericEnumeration):
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
def getCurrentUser(self):
|
||||||
|
warnMsg = "on Microsoft Access it is not possible to enumerate the current user"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
def getUsers(self):
|
||||||
|
warnMsg = "on Microsoft Access it is not possible to enumerate the users"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
return []
|
||||||
|
|
||||||
|
def getPrivileges(self, *args):
|
||||||
|
warnMsg = "on Microsoft Access it is not possible to enumerate the user privileges"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
return {}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user