sqlmap/plugins/dbms/hsqldb/takeover.py

29 lines
971 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2013-06-24 17:53:41 +04:00
"""
2023-01-03 01:24:59 +03:00
Copyright (c) 2006-2023 sqlmap developers (https://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 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)