2013-06-24 17:53:41 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
|
|
|
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 13:57:47 +04:00
|
|
|
errMsg = "Not implemented in HSQLDB"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
|
|
|
def osShell(self):
|
2013-07-01 13:57:47 +04:00
|
|
|
errMsg = "Not implemented in HSQLDB"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
|
|
|
def osPwn(self):
|
2013-07-01 13:57:47 +04:00
|
|
|
errMsg = "Not implemented in HSQLDB"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
|
|
|
def osSmb(self):
|
2013-07-01 13:57:47 +04:00
|
|
|
errMsg = "Not implemented in HSQLDB"
|
2013-06-24 17:53:41 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|