Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/plugins/dbms/extremedb/connector.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.connector import Connector as GenericConnector
10
11
class Connector(GenericConnector):
12
def connect(self):
13
errMsg = "on eXtremeDB it is not (currently) possible to establish a "
14
errMsg += "direct connection"
15
raise SqlmapUnsupportedFeatureException(errMsg)
16
17