Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/plugins/dbms/virtuoso/filesystem.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.filesystem import Filesystem as GenericFilesystem
10
11
class Filesystem(GenericFilesystem):
12
def readFile(self, remoteFile):
13
errMsg = "on Virtuoso it is not possible to read files"
14
raise SqlmapUnsupportedFeatureException(errMsg)
15
16
def writeFile(self, localFile, remoteFile, fileType=None, forceCheck=False):
17
errMsg = "on Virtuoso it is not possible to write files"
18
raise SqlmapUnsupportedFeatureException(errMsg)
19
20