mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Minor bug fix
This commit is contained in:
parent
6653907700
commit
6e784e766b
|
@ -172,6 +172,9 @@ Kristian Erik Hermansen <kristian.hermansen@gmail.com>
|
||||||
for reporting a bug
|
for reporting a bug
|
||||||
for donating to sqlmap development
|
for donating to sqlmap development
|
||||||
|
|
||||||
|
Alexander Hagenah <ah@primepage.de>
|
||||||
|
for reporting a minor bug
|
||||||
|
|
||||||
Jorge Hoya <aquinadie@gmail.com>
|
Jorge Hoya <aquinadie@gmail.com>
|
||||||
for suggesting a minor enhancement
|
for suggesting a minor enhancement
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,10 @@ class Enumeration(GenericEnumeration):
|
||||||
warnMsg = "on Microsoft Access it is not possible to get name of the current database"
|
warnMsg = "on Microsoft Access it is not possible to get name of the current database"
|
||||||
logger.warn(warnMsg)
|
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):
|
def getUsers(self):
|
||||||
warnMsg = "on Microsoft Access it is not possible to enumerate the users"
|
warnMsg = "on Microsoft Access it is not possible to enumerate the users"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user