Path: blob/master/plugins/dbms/mimersql/takeover.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.takeover import Takeover as GenericTakeover910class Takeover(GenericTakeover):11def osCmd(self):12errMsg = "on MimerSQL it is not possible to execute commands"13raise SqlmapUnsupportedFeatureException(errMsg)1415def osShell(self):16errMsg = "on MimerSQL it is not possible to execute commands"17raise SqlmapUnsupportedFeatureException(errMsg)1819def osPwn(self):20errMsg = "on MimerSQL it is not possible to establish an "21errMsg += "out-of-band connection"22raise SqlmapUnsupportedFeatureException(errMsg)2324def osSmb(self):25errMsg = "on MimerSQL it is not possible to establish an "26errMsg += "out-of-band connection"27raise SqlmapUnsupportedFeatureException(errMsg)282930