| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| Oracle 9iAS .JSP File Request Default Error Information Disclosure | 20 Aug 200400:00 | – | nessus | |
| Nonexistent Page (404) Physical Path Disclosure | 11 Jun 200300:00 | – | nessus | |
| Oracle 9iAS Nonexistent .jsp File Request Error Message Path Disclosure | 11 Feb 200300:00 | – | nessus | |
| Oracle Application Server Multiple Vulnerabilities | 24 Jan 201200:00 | – | nessus | |
| CVE-2001-1372 | 2 Apr 200305:00 | – | cve | |
| CVE-2001-1372 | 2 Apr 200305:00 | – | cvelist | |
| EUVD-2001-1353 | 7 Oct 202500:30 | – | euvd | |
| CVE-2001-1372 | 6 Feb 200205:00 | – | nvd | |
| Non-Existant Page Physical Path Disclosure Vulnerability | 3 Nov 200500:00 | – | openvas | |
| Oracle 9i Application Server Default Error Information Disclosure Vulnerability - Active Check | 3 Nov 200500:00 | – | openvas |
# OpenVAS Vulnerability Test
# $Id: oracle9i_jspdefaulterror.nasl 8023 2017-12-07 08:36:26Z teissa $
# Description: Oracle 9iAS default error information disclosure
#
# Authors:
# Javier Fernandez-Sanguino <[email protected]>
#
# Copyright:
# Copyright (C) 2003 Javier Fernandez-Sanguino
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2,
# as published by the Free Software Foundation
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
tag_solution = "Ensure that virtual paths of URL is different from the actual directory
path. Also, do not use the <servletzonepath> directory in
'ApJServMount <servletzonepath> <servletzone>' to store data or files.
Upgrading to Oracle 9iAS 1.1.2.0.0 will also fix this issue.
http://www.nextgenss.com/papers/hpoas.pdf";
tag_summary = "It is possible to obtain the physical path of the remote server
web root.
Description :
Oracle 9iAS allows remote attackers to obtain the physical path of a file
under the server root via a request for a non-existent .JSP file. The default
error generated leaks the pathname in an error message.";
if(description)
{
script_id(11226);
script_version("$Revision: 8023 $");
script_tag(name:"last_modification", value:"$Date: 2017-12-07 09:36:26 +0100 (Thu, 07 Dec 2017) $");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_bugtraq_id(3341);
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:N/A:N");
script_cve_id("CVE-2001-1372");
name = "Oracle 9iAS default error information disclosure";
script_name(name);
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_vul");
script_copyright("This script is Copyright (C) 2003 Javier Fernandez-Sanguino");
family = "Web application abuses";
script_family(family);
script_dependencies("find_service.nasl", "http_version.nasl");
script_require_ports("Services/www", 80);
script_require_keys("www/OracleApache");
script_tag(name : "summary" , value : tag_summary);
script_tag(name : "solution" , value : tag_solution);
script_xref(name : "URL" , value : "http://otn.oracle.com/deploy/security/pdf/jspexecute_alert.pdf");
script_xref(name : "URL" , value : "http://www.kb.cert.org/vuls/id/278971");
script_xref(name : "URL" , value : "http://www.cert.org/advisories/CA-2002-08.html");
exit(0);
}
# Check starts here
include("http_func.inc");
port = get_http_port(default:80);
if(get_port_state(port))
{
# Make a request for the configuration file
errorjsp = "/nonexistant.jsp";
req = http_get(item: errorjsp, port: port);
soc = http_open_socket(port);
if(soc) {
send(socket:soc, data:req);
r = http_recv(socket:soc);
http_close_socket(soc);
location = egrep(pattern:"java.io.FileNotFoundException", string :r);
if ( location ) {
# Thanks to Paul Johnston for the tip that made the following line
# work (jfs)
# MA 2005-02-13: This did not work on Windows where / is replaced by \
path = ereg_replace(pattern: strcat("(java.io.FileNotFoundException: )(.*[^/\])[/\]+",substr(errorjsp, 1),".*"), replace:"\2", string: location);
security_message(port:port, data:string("The web root physical is ", path ));
}
} # if (soc)
}
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