Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/plugins/dbms/oracle/takeover.py
2992 views
1
#!/usr/bin/env python
2
3
"""
4
Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)
5
See the file 'LICENSE' for copying permission
6
"""
7
8
from lib.core.exception import SqlmapUnsupportedFeatureException
9
from plugins.generic.takeover import Takeover as GenericTakeover
10
11
class Takeover(GenericTakeover):
12
def osCmd(self):
13
errMsg = "Operating system command execution functionality not "
14
errMsg += "yet implemented for Oracle"
15
raise SqlmapUnsupportedFeatureException(errMsg)
16
17
def osShell(self):
18
errMsg = "Operating system shell functionality not yet "
19
errMsg += "implemented for Oracle"
20
raise SqlmapUnsupportedFeatureException(errMsg)
21
22
def osPwn(self):
23
errMsg = "Operating system out-of-band control functionality "
24
errMsg += "not yet implemented for Oracle"
25
raise SqlmapUnsupportedFeatureException(errMsg)
26
27
def osSmb(self):
28
errMsg = "One click operating system out-of-band control "
29
errMsg += "functionality not yet implemented for Oracle"
30
raise SqlmapUnsupportedFeatureException(errMsg)
31
32