Some more cleanup (Issue #475)

This commit is contained in:
stamparm
2013-07-01 12:11:09 +02:00
parent b5e644694a
commit 4fb33bb26c
5 changed files with 11 additions and 17 deletions

View File

@@ -13,17 +13,19 @@ class Takeover(GenericTakeover):
GenericTakeover.__init__(self)
def osCmd(self):
errMsg = "Not implemented in HSQLDB"
errMsg = "on HyperSQL it is not possible to execute commands"
raise SqlmapUnsupportedFeatureException(errMsg)
def osShell(self):
errMsg = "Not implemented in HSQLDB"
errMsg = "on HyperSQL it is not possible to execute commands"
raise SqlmapUnsupportedFeatureException(errMsg)
def osPwn(self):
errMsg = "Not implemented in HSQLDB"
errMsg = "on HyperSQL it is not possible to establish an "
errMsg += "out-of-band connection"
raise SqlmapUnsupportedFeatureException(errMsg)
def osSmb(self):
errMsg = "Not implemented in HSQLDB"
errMsg = "on HyperSQL it is not possible to establish an "
errMsg += "out-of-band connection"
raise SqlmapUnsupportedFeatureException(errMsg)