Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6e784e7

Browse files
committed
Minor bug fix
1 parent 6653907 commit 6e784e7

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

doc/THANKS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ Kristian Erik Hermansen <[email protected]>
172172
for reporting a bug
173173
for donating to sqlmap development
174174

175+
Alexander Hagenah <[email protected]>
176+
for reporting a minor bug
177+
175178
Jorge Hoya <[email protected]>
176179
for suggesting a minor enhancement
177180

plugins/dbms/access/enumeration.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ def getCurrentDb(self):
2828
warnMsg = "on Microsoft Access it is not possible to get name of the current database"
2929
logger.warn(warnMsg)
3030

31+
def isDba(self):
32+
warnMsg = "on Microsoft Access it is not possible to test if current user is DBA"
33+
logger.warn(warnMsg)
34+
3135
def getUsers(self):
3236
warnMsg = "on Microsoft Access it is not possible to enumerate the users"
3337
logger.warn(warnMsg)

0 commit comments

Comments
 (0)