Lucene search
K

gwebTraversal.txt

🗓️ 03 Mar 2004 00:00:00Reported by Donato FerranteType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 18 Views

GWeb HTTP Server version 0.6 has a directory traversal vulnerability allowing file access.

Code
`  
Donato Ferrante  
  
  
Application: GWeb HTTP Server  
http://freshmeat.net/projects/gweb/  
  
Version: 0.6  
  
Bug: directory traversal bug  
  
Author: Donato Ferrante  
e-mail: [email protected]  
web: www.autistici.org/fdonato  
  
  
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
  
1. Description  
2. The bug  
3. The code  
4. The Fix  
  
  
  
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
  
----------------  
1. Description:  
----------------  
  
Vendor's Description:  
  
"GWeb is a project to develop an HTTP server using Java, making it  
small and portable. It will run on any system running the Java  
Runtime Environment."  
  
  
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
  
------------  
2. The bug:  
------------  
  
The program doesn't check for malicious patterns like "/../", so an  
attacker is able to see and download all the files on the remote  
system simply using a browser.  
  
  
  
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
  
-------------  
3. The code:  
-------------  
  
To test the vulnerability:  
  
http://[host]/../../../../../../windows/system.ini  
  
or:  
  
http://[host]/../someFile  
  
  
  
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
  
------------  
4. The Fix:  
------------  
  
No fix.  
The vendor has not answered to my signalations.  
  
If you want, you can use my following little patch, that should fix  
the bug for this version of GWeb HTTP Server:  
  
...  
..  
.  
  
(line: 136) String dir="www"+System.getProperty("file.separator");  
  
/* start of patch */  
  
int f_len = f.length();  
boolean check = false;  
  
for(int bi = 0; bi < f.length()-2 && check == false; bi++){  
  
if(  
(f.charAt(bi) == '\"') || (f.charAt(bi)=='/') &&  
(f.charAt(bi+1)=='.') && (f.charAt(bi+2) == '.')  
  
){  
  
f_len = 0;  
check = true;  
}  
  
else if(  
(f.charAt(bi)=='.') &&   
(f.charAt(bi+1) == '.')  
  
){  
  
f_len = 0;  
check = true;  
}  
  
}  
  
if(f_len <= 2) // before "if(f.length()==0)"  
  
/* end of patch */  
  
{  
file=dir+"index.html";  
  
}  
  
.  
..  
...  
  
  
  
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
`

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