diff --git a/doc/THANKS b/doc/THANKS index 0cbe74da1..e4bb0c8e5 100644 --- a/doc/THANKS +++ b/doc/THANKS @@ -172,6 +172,9 @@ Kristian Erik Hermansen for reporting a bug for donating to sqlmap development +Alexander Hagenah + for reporting a minor bug + Jorge Hoya for suggesting a minor enhancement diff --git a/plugins/dbms/access/enumeration.py b/plugins/dbms/access/enumeration.py index ff959ebe4..0254a92ee 100644 --- a/plugins/dbms/access/enumeration.py +++ b/plugins/dbms/access/enumeration.py @@ -28,6 +28,10 @@ class Enumeration(GenericEnumeration): warnMsg = "on Microsoft Access it is not possible to get name of the current database" logger.warn(warnMsg) + def isDba(self): + warnMsg = "on Microsoft Access it is not possible to test if current user is DBA" + logger.warn(warnMsg) + def getUsers(self): warnMsg = "on Microsoft Access it is not possible to enumerate the users" logger.warn(warnMsg)