File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,3 +75,7 @@ def searchColumn(self):
7575 def search (self ):
7676 warnMsg = "on Microsoft Access search option is not available"
7777 logger .warn (warnMsg )
78+
79+ def getHostname (self ):
80+ warnMsg = "on Microsoft Access it is not possible to enumerate the hostname"
81+ logger .warn (warnMsg )
Original file line number Diff line number Diff line change @@ -45,3 +45,7 @@ def searchColumn(self):
4545 def search (self ):
4646 warnMsg = "on Firebird search option is not available"
4747 logger .warn (warnMsg )
48+
49+ def getHostname (self ):
50+ warnMsg = "on Firebird it is not possible to enumerate the hostname"
51+ logger .warn (warnMsg )
Original file line number Diff line number Diff line change @@ -167,3 +167,7 @@ def searchDb(self):
167167 logger .warn (warnMsg )
168168
169169 return []
170+
171+ def getHostname (self ):
172+ warnMsg = "on SAP MaxDB it is not possible to enumerate the hostname"
173+ logger .warn (warnMsg )
Original file line number Diff line number Diff line change 1010class Enumeration (GenericEnumeration ):
1111 def __init__ (self ):
1212 GenericEnumeration .__init__ (self )
13+
14+ def getHostname (self ):
15+ warnMsg = "on PostgreSQL it is not possible to enumerate the hostname"
16+ logger .warn (warnMsg )
Original file line number Diff line number Diff line change @@ -62,3 +62,7 @@ def searchDb(self):
6262 def searchColumn (self ):
6363 errMsg = "on SQLite you must specify the table and columns to dump"
6464 raise sqlmapUnsupportedFeatureException , errMsg
65+
66+ def getHostname (self ):
67+ warnMsg = "on SQLite it is not possible to enumerate the hostname"
68+ logger .warn (warnMsg )
Original file line number Diff line number Diff line change @@ -270,3 +270,7 @@ def searchColumn(self):
270270 def search (self ):
271271 warnMsg = "on Sybase search option is not available"
272272 logger .warn (warnMsg )
273+
274+ def getHostname (self ):
275+ warnMsg = "on Sybase it is not possible to enumerate the hostname"
276+ logger .warn (warnMsg )
You can’t perform that action at this time.
0 commit comments