mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Fix for an Issue #818
This commit is contained in:
parent
90869244fd
commit
ae8c12c9c3
|
@ -30,3 +30,13 @@ class Enumeration(GenericEnumeration):
|
||||||
kb.data.banner = unArrayizeValue(inject.getValue(query, safeCharEncode=True))
|
kb.data.banner = unArrayizeValue(inject.getValue(query, safeCharEncode=True))
|
||||||
|
|
||||||
return kb.data.banner
|
return kb.data.banner
|
||||||
|
|
||||||
|
def getPrivileges(self, *args):
|
||||||
|
warnMsg = "on HSQLDB it is not possible to enumerate the user privileges"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
return {}
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on HSQLDB it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user