sqlmap/plugins/dbms/hsqldb/takeover.py

32 lines
1.0 KiB
Python
Raw Normal View History

2013-06-24 17:53:41 +04:00
#!/usr/bin/env python
"""
2017-01-02 16:19:18 +03:00
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2013-06-24 17:53:41 +04:00
"""
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)