The host is installed with VMWare product(s) which are vulnerable
to security bypass vulnerability.
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_vmware_prdts_sec_bypass_vuln_lin_sep10.nasl 5401 2017-02-23 09:46:07Z teissa $
#
# VMware Products Security Bypass Vulnerability (Linux) -Sep10
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2010 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 = "Upgrade to player 3.1.2 build 301548
http://www.vmware.com/products/player/
Upgrade VMware Workstation 7.1.2 build 301548
http://www.vmware.com/download/ace/";
tag_impact = "Successful exploitation allows attackers to display a malicious file if they
manage to get their file onto the system prior to installation.
Impact Level: Application";
tag_affected = "VMware Player 3.0 before 3.1.2 build 301548
VMware Workstation 7.0 before 7.1.2 build 301548 on Linux.";
tag_insight = "The vulnerability is due to an error in the 'installer', which will
load an 'index.htm' file located in the current working directory.";
tag_summary = "The host is installed with VMWare product(s) which are vulnerable
to security bypass vulnerability.";
if(description)
{
script_id(902261);
script_version("$Revision: 5401 $");
script_tag(name:"last_modification", value:"$Date: 2017-02-23 10:46:07 +0100 (Thu, 23 Feb 2017) $");
script_tag(name:"creation_date", value:"2010-10-01 08:36:34 +0200 (Fri, 01 Oct 2010)");
script_cve_id("CVE-2010-3277");
script_tag(name:"cvss_base", value:"2.1");
script_tag(name:"cvss_base_vector", value:"AV:L/AC:L/Au:N/C:N/I:P/A:N");
script_name("VMware Products Security Bypass Vulnerability (Linux) -Sep10");
script_xref(name : "URL" , value : "http://secunia.com/advisories/41574");
script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2010/2491");
script_xref(name : "URL" , value : "http://securitytracker.com/alerts/2010/Sep/1024481.html");
script_xref(name : "URL" , value : "http://www.vmware.com/security/advisories/VMSA-2010-0014.html");
script_xref(name : "URL" , value : "http://lists.vmware.com/pipermail/security-announce/2010/000105.html");
script_tag(name:"qod_type", value:"executable_version");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2010 SecPod");
script_family("General");
script_dependencies("gb_vmware_prdts_detect_lin.nasl");
script_require_keys("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);
exit(0);
}
include("version_func.inc");
if(!get_kb_item("VMware/Linux/Installed")){
exit(0);
}
# VMware Player
vmpVer = get_kb_item("VMware/Player/Linux/Ver");
if(vmpVer)
{
if(version_in_range(version:vmpVer, test_version:"3.0", test_version2:"3.1.1"))
{
security_message(0);
exit(0);
}
}
# VMware Workstation
vmwtnVer = get_kb_item("VMware/Workstation/Linux/Ver");
if(vmwtnVer)
{
if(version_in_range(version:vmwtnVer, test_version:"7.0", test_version2:"7.1.1")){
security_message(0);
}
}