Lucene search

K
openvasCopyright (C) 2009 SecPodOPENVAS:900899
HistoryDec 21, 2009 - 12:00 a.m.

VMware Server Multiple Cross-Site Scripting Vulnerabilities (Linux)

2009-12-2100:00:00
Copyright (C) 2009 SecPod
plugins.openvas.org
5

0.003 Low

EPSS

Percentile

67.8%

The host is installed with VMWare Server that is vulnerable to
multiple Cross-Site Scripting vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_vmware_server_mult_xss_vuln_dec09_lin.nasl 6518 2017-07-04 13:49:06Z cfischer $
#
# VMware Server Multiple Cross-Site Scripting Vulnerabilities (Linux)
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2009 SecPod, http://www.secpod.com
#
# 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_solution = "Apply patch,
  http://kb.vmware.com/kb/1016594

  *****
  NOTE: Ignore this warning, if above mentioned patch is manually applied.
  *****";

tag_impact = "Successful exploitation will lets attackers to cause a Denial of Service, or
  compromise a user's system.
  Impact Level: System/Application";
tag_affected = "VMware Server version 2.0.2 on Linux.";
tag_insight = "- Multiple vulnerabilities can be exploited to disclose sensitive information,
    conduct cross-site scripting attacks, manipulate certain data, bypass certain
    security restrictions, cause a DoS, or compromise a user's system.
  - Certain unspecified input passed to WebWorks help pages is not properly
    sanitised before being returned to the user. This can be exploited to execute
    arbitrary HTML and script code in a user's browser session in context of an
    affected site.";
tag_summary = "The host is installed with VMWare Server that is vulnerable to
  multiple Cross-Site Scripting vulnerabilities.";

if(description)
{
  script_id(900899);
  script_version("$Revision: 6518 $");
  script_tag(name:"last_modification", value:"$Date: 2017-07-04 15:49:06 +0200 (Tue, 04 Jul 2017) $");
  script_tag(name:"creation_date", value:"2009-12-21 07:14:17 +0100 (Mon, 21 Dec 2009)");
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_cve_id("CVE-2009-3731");
  script_bugtraq_id(37346);
  script_name("VMware Server Multiple Cross-Site Scripting Vulnerabilities (Linux)");

  script_xref(name : "URL" , value : "http://secunia.com/advisories/37460/");
  script_xref(name : "URL" , value : "http://www.webworks.com/Security/2009-0001/");
  script_xref(name : "URL" , value : "http://www.vmware.com/security/advisories/VMSA-2009-0017.html");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2009 SecPod");
  script_family("Denial of Service");
  script_dependencies("gb_vmware_prdts_detect_lin.nasl");
  script_mandatory_keys("VMware/Server/Linux/Ver", "VMware/Linux/Installed");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name:"qod_type", value:"executable_version");
  script_tag(name:"solution_type", value:"VendorFix");
  exit(0);
}


include("version_func.inc");

if(!get_kb_item("VMware/Linux/Installed")){
  exit(0);
}

# VMware Server
vmserVer = get_kb_item("VMware/Server/Linux/Ver");
if(vmserVer)
{
  if(version_is_equal(version:vmserVer, test_version:"2.0.2")){
    security_message(0);
  }
}

0.003 Low

EPSS

Percentile

67.8%