Lucene search

K
nessusThis script is Copyright (C) 2001-2021 Tenable Network Security, Inc.BROADVISION_PATH_DISCLOSURE.NASL
HistoryJun 15, 2001 - 12:00 a.m.

BroadVision One-To-One Enterprise Nonexistent JSP Request Path Disclosure

2001-06-1500:00:00
This script is Copyright (C) 2001-2021 Tenable Network Security, Inc.
www.tenable.com
11

5 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

NONE

AV:N/AC:L/Au:N/C:P/I:N/A:N

0.005 Low

EPSS

Percentile

75.4%

BroadVision reveals the physical path of the webroot when asked for a nonexistent .jsp file if it is configured incorrectly. While displaying errors is useful for debugging applications, this feature should not be enabled on production servers. A remote attacker could use this information to mount further attacks.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#


include('deprecated_nasl_level.inc');
include('compat.inc');


if(description)
{
 script_id(10686);
 script_bugtraq_id(2088);
 script_cve_id("CVE-2001-0031");
 script_version("1.27");
 script_name(english:"BroadVision One-To-One Enterprise Nonexistent JSP Request Path Disclosure");
 script_summary(english:"Tests for BroadVision Physical Path Disclosure Vulnerability");

 script_set_attribute( attribute:"synopsis", value:
"The web application running on the remote host has a path disclosure
vulnerability." );
 script_set_attribute(attribute:"description",  value:
"BroadVision reveals the physical path of the webroot when asked for
a nonexistent .jsp file if it is configured incorrectly.  While
displaying errors is useful for debugging applications, this feature
should not be enabled on production servers.  A remote attacker could
use this information to mount further attacks." );
 script_set_attribute(
   attribute:"see_also",
   value:"https://seclists.org/bugtraq/2000/Dec/115"
 );
 script_set_attribute(
   attribute:"solution", 
   value:"Contact the vendor for a patch."
 );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
 script_set_cvss_temporal_vector("CVSS2#E:H/RL:U/RC:ND");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"true");
 script_set_attribute(attribute:"plugin_publication_date", value: "2001/06/15");
 script_set_attribute(attribute:"vuln_publication_date", value: "2000/12/07");
 script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();
 
 script_category(ACT_GATHER_INFO);
 script_family(english:"CGI abuses");
 
 script_copyright(english:"This script is Copyright (C) 2001-2021 Tenable Network Security, Inc.");
 script_dependencie("http_version.nasl");
 script_require_ports("Services/www", 80);
 exit(0);
}

# Actual check starts here...
# Check makes a request for nonexistent php3 file...

include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

port = get_http_port(default:80, embedded: 0);

w = http_send_recv3(item:string("/nosuchfile-", rand(), "-", rand(), ".jsp"), 
 		method:"GET", port:port);
if (isnull(w)) exit(0);
r = strcat(w[0], w[1], '\r\n', w[2]);
if(egrep(string:r, pattern:".*Script /.*/nosuchfile-.*")) security_warning(port);

5 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

NONE

AV:N/AC:L/Au:N/C:P/I:N/A:N

0.005 Low

EPSS

Percentile

75.4%

Related for BROADVISION_PATH_DISCLOSURE.NASL