mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Fix for an Issue #201
This commit is contained in:
parent
56832fe9c4
commit
ed2d163269
|
@ -75,3 +75,7 @@ class Enumeration(GenericEnumeration):
|
||||||
def search(self):
|
def search(self):
|
||||||
warnMsg = "on Microsoft Access search option is not available"
|
warnMsg = "on Microsoft Access search option is not available"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on Microsoft Access it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
|
@ -45,3 +45,7 @@ class Enumeration(GenericEnumeration):
|
||||||
def search(self):
|
def search(self):
|
||||||
warnMsg = "on Firebird search option is not available"
|
warnMsg = "on Firebird search option is not available"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on Firebird it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
|
@ -167,3 +167,7 @@ class Enumeration(GenericEnumeration):
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on SAP MaxDB it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
|
@ -10,3 +10,7 @@ from plugins.generic.enumeration import Enumeration as GenericEnumeration
|
||||||
class Enumeration(GenericEnumeration):
|
class Enumeration(GenericEnumeration):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
GenericEnumeration.__init__(self)
|
GenericEnumeration.__init__(self)
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on PostgreSQL it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
|
@ -62,3 +62,7 @@ class Enumeration(GenericEnumeration):
|
||||||
def searchColumn(self):
|
def searchColumn(self):
|
||||||
errMsg = "on SQLite you must specify the table and columns to dump"
|
errMsg = "on SQLite you must specify the table and columns to dump"
|
||||||
raise sqlmapUnsupportedFeatureException, errMsg
|
raise sqlmapUnsupportedFeatureException, errMsg
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on SQLite it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
|
@ -270,3 +270,7 @@ class Enumeration(GenericEnumeration):
|
||||||
def search(self):
|
def search(self):
|
||||||
warnMsg = "on Sybase search option is not available"
|
warnMsg = "on Sybase search option is not available"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
def getHostname(self):
|
||||||
|
warnMsg = "on Sybase it is not possible to enumerate the hostname"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user