Path: blob/master/plugins/dbms/mckoi/filesystem.py
2992 views
#!/usr/bin/env python12"""3Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)4See the file 'LICENSE' for copying permission5"""67from lib.core.exception import SqlmapUnsupportedFeatureException8from plugins.generic.filesystem import Filesystem as GenericFilesystem910class Filesystem(GenericFilesystem):11def readFile(self, remoteFile):12errMsg = "on Mckoi it is not possible to read files"13raise SqlmapUnsupportedFeatureException(errMsg)1415def writeFile(self, localFile, remoteFile, fileType=None, forceCheck=False):16errMsg = "on Mckoi it is not possible to write files"17raise SqlmapUnsupportedFeatureException(errMsg)181920