From 6e784e766b2da7ed50bfdf500936d17e4c9f01f5 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Sat, 7 May 2011 21:20:47 +0000 Subject: [PATCH] Minor bug fix --- doc/THANKS | 3 +++ plugins/dbms/access/enumeration.py | 4 ++++ 2 files changed, 7 insertions(+) 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)