Lucene search

K
openvasCopyright (C) 2009 Greenbone Networks GmbHOPENVAS:800222
HistoryJan 09, 2009 - 12:00 a.m.

webcamXP URL Directory Traversal Vulnerability

2009-01-0900:00:00
Copyright (C) 2009 Greenbone Networks GmbH
plugins.openvas.org
14

EPSS

0.03

Percentile

91.0%

This host is installed with webcamXP and is prone to Directory
Traversal Vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $dI: gb_webcamxp_dir_trav_vuln.nasl 821 2009-01-09 19:30:24Z jan $
#
# webcamXP URL Directory Traversal Vulnerability
#
# Authors:
# Sujit Ghosal <[email protected]>
#
# Copyright:
# Copyright (c) 2009 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 execute malicious URL into
  the web browser in the attacking machine and can get sensitive information
  about the application or about the remote system.
  Impact Level: System/Application";
tag_affected = "Darkwet, webcamXP version 5.3.2.410 and prior on Windows.";
tag_insight = "The flaw is due to improper handling of URL-encoded forward-slashes i.e, ../
  which causes execution of malicious URI into the context of the application.";
tag_solution = "Upgrade to webcamXP version 5.5.0.8 or later
  For updates refer to http://www.webcamxp.com";
tag_summary = "This host is installed with webcamXP and is prone to Directory
  Traversal Vulnerability.";

if(description)
{
  script_id(800222);
  script_version("$Revision: 4906 $");
  script_tag(name:"last_modification", value:"$Date: 2017-01-02 14:06:55 +0100 (Mon, 02 Jan 2017) $");
  script_tag(name:"creation_date", value:"2009-01-09 13:48:55 +0100 (Fri, 09 Jan 2009)");
  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-2008-5862");
  script_bugtraq_id(32928);
  script_name("webcamXP URL Directory Traversal Vulnerability");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/33257");
  script_xref(name : "URL" , value : "http://www.milw0rm.com/exploits/7521");

  script_tag(name:"qod_type", value:"remote_banner");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
  script_family("Web application abuses");
  script_dependencies("gb_webcamxp_detect.nasl");
  script_require_keys("WebcamXP/Version");
  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);
  exit(0);
}


include("version_func.inc");

wcVer = get_kb_item("WebcamXP/Version");
if(!wcVer){
  exit(0);
}

#Check for webcamXP version 5.3.2.410 or prior
if(version_is_less_equal(version:wcVer, test_version:"5.3.2.410")){
  security_message(0);
}

EPSS

0.03

Percentile

91.0%