2013-06-24 17:53:41 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2016-01-06 02:06:12 +03:00
|
|
|
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
|
2013-06-24 17:53:41 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.exception import SqlmapUnsupportedFeatureException
|
|
|
|
from plugins.generic.takeover import Takeover as GenericTakeover
|
|
|
|
|
|
|
|
class Takeover(GenericTakeover):
|
|
|
|
def __init__(self):
|
|
|
|
GenericTakeover.__init__(self)
|
|
|
|
|
|
|
|
def osCmd(self):
|
2013-07-01 15:01:53 +04:00
|
|
|
errMsg = "on HSQLDB it is not possible to execute commands"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
|
|
|
def osShell(self):
|
2013-07-01 15:01:53 +04:00
|
|
|
errMsg = "on HSQLDB it is not possible to execute commands"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
|
|
|
def osPwn(self):
|
2013-07-01 15:01:53 +04:00
|
|
|
errMsg = "on HSQLDB it is not possible to establish an "
|
2013-07-01 14:11:09 +04:00
|
|
|
errMsg += "out-of-band connection"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
|
|
|
def osSmb(self):
|
2013-07-01 15:01:53 +04:00
|
|
|
errMsg = "on HSQLDB it is not possible to establish an "
|
2013-07-01 14:11:09 +04:00
|
|
|
errMsg += "out-of-band connection"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|