Lucene search

K
nessusThis script is Copyright (C) 2000-2018 Tenable Network Security, Inc.ANALOGX_TRAVERSAL.NASL
HistoryAug 06, 2000 - 12:00 a.m.

AnalogX SimpleServer:WWW Encoded Traversal Arbitrary File Access

2000-08-0600:00:00
This script is Copyright (C) 2000-2018 Tenable Network Security, Inc.
www.tenable.com
14

The remote host is running a version of the AnalogX SimpleServer web server that is affected by a directory traversal vulnerability. An attacker could exploit this in order to read arbitrary files in the context of the affected server.

#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
 script_id(10489);
 script_version("1.30");
 script_cvs_date("Date: 2018/06/29 12:01:03");

 script_cve_id("CVE-2000-0664");
 script_bugtraq_id(1508);
 
 script_name(english:"AnalogX SimpleServer:WWW Encoded Traversal Arbitrary File Access");
 script_summary(english:"Attempts a Directory Traversal");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server is vulnerable to a directory traversal.");
 script_set_attribute(attribute:"description", value:
"The remote host is running a version of the AnalogX SimpleServer web
server that is affected by a directory traversal vulnerability.  An
attacker could exploit this in order to read arbitrary files in the
context of the affected server.");
 script_set_attribute(attribute:"solution", value:
"Upgrade to SimpleServer 1.07 or later.");
 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:POC/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"true");

 script_set_attribute(attribute:"vuln_publication_date", value:"2000/07/26");
 script_set_attribute(attribute:"plugin_publication_date", value:"2000/08/06");

 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:analogx:simpleserver_www");
 script_end_attributes();
 
 script_category(ACT_ATTACK);
 
 script_copyright(english:"This script is Copyright (C) 2000-2018 Tenable Network Security, Inc.");
 script_family(english:"Web Servers");

 script_dependencie("http_version.nasl");
 script_require_ports("Services/www", 80);
 exit(0);
}

#
# The script code starts here
#
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

port = get_http_port(default:80);

server = get_http_banner(port:port);
if ( ! server || ( "AnalogX" >!< server && "Simple Server" >!< server) ) exit(0);

foreach d (make_list("windows", "winnt"))
{
 u = strcat("%2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/", d, "/win.ini");
 if (check_win_dir_trav(port: port, url: u))
 {
   security_warning(port);
   exit(0);
 }
}
VendorProductVersionCPE
analogxsimpleserver_wwwcpe:/a:analogx:simpleserver_www
Related for ANALOGX_TRAVERSAL.NASL