Lucene search
K

NetLink Shell Upload

🗓️ 01 Feb 2011 00:00:00Reported by lumutType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 26 Views

NetLink Remote Arbitrary File Upload Vulnerability, File Upload PHP Script, File Destination Change Vulnerability, User Session Vulnerability, File Size Display, User Shell Acces

Code
`======================================  
NetLink Remote Arbitrary File Upload Vulnerability  
Download: http://sourceforge.net/projects/kp-netlink/  
by lumut--  
Homepage: lumutcherenza.biz  
======================================  
  
[upload.php]  
  
<?php  
extract($_POST);  
if ($submit)  
{  
$file_name=$_FILES['filename']['name'];  
$file_type=$_FILES['filename']['type'];  
$file_tmp=$_FILES['filename']['tmp_name'];  
$file_size=$_FILES['filename']['size'];  
  
$user=$_SESSION['login'];  
echo "Upload Stats:<br/>";  
echo "<blockquote style='font-size:10pt;'>";  
echo "Filename: ".$file_name;  
echo "<br/>File Type: ".$file_type;  
echo "<br/>File Size: ".$file_size;  
  
#now that the stats have been declared & displayed, now we process and  
upload the file  
$file_dest = "Users/$user/";  
$file_dest = $file_dest . $_FILES['filename']['name'];  
  
echo "<br/><br/>Copying $file_name....";  
echo "<br/>Moving copied file to $user's account...";  
echo "</blockquote>";  
if (move_uploaded_file($_FILES['filename']['tmp_name'], $file_dest))  
print "File '$file_name' was successfully uploaded to account  
<b>$user</b>.<br/> ";  
else  
{  
print "Possible file upload attack! Here's some debugging info:\n";  
print_r($_FILES);  
}  
touch("Users/$user/$file_name");  
include("options.php");  
echo "<hr color='#000000'/>";  
}  
  
?>  
  
  
expl: http://[target]/[netlink_path]/upload.php  
shell: http://[target]/[netlink_path]/Users/yourshell.php  
  
======================================================================  
  
thx to : cr4wl3r, Team_elitE, kisame, aNtI_hAcK, kazuya, PunkRock and  
manadocoding team :D  
======================================================================  
  
`

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