Lucene search

K
openvasCopyright (C) 2012 SecPodOPENVAS:802805
HistoryFeb 22, 2012 - 12:00 a.m.

Adobe Flash Player Multiple Vulnerabilities (Mac OS X) - Feb12

2012-02-2200:00:00
Copyright (C) 2012 SecPod
plugins.openvas.org
21

0.973 High

EPSS

Percentile

99.8%

This host is installed with Adobe Flash Player and is prone to
multiple vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_adobe_flash_player_mult_vuln_macosx_feb12.nasl 6521 2017-07-04 14:51:10Z cfischer $
#
# Adobe Flash Player Multiple Vulnerabilities (Mac OS X) - Feb12
#
# Authors:
# Rachana Shetty <[email protected]>
#
# Copyright:
# Copyright (c) 2012 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_impact = "Successful exploitation will allow remote attackers to execute arbitrary
  code in the context of the affected application or cause a denial of
  service condition.
  Impact Level: Application.";
tag_affected = "Adobe Flash Player version before 10.3.183.15
  Adobe Flash Player version 11.x through 11.1.102.55 on Mac OS X";
tag_insight = "The flaws are due to,
  - A memory corruption error in ActiveX control
  - A type confusion memory corruption error
  - An unspecified error related to MP4 parsing
  - Many unspecified erros which allows to bypass certain security
    restrictions
  - Improper validation of user supplied input which allows
    attackers to execute arbitrary HTML and script code in a user's browser
    session";
tag_solution = "Upgrade to Adobe Flash Player version 10.3.183.15 or 11.1.102.62 or later,
  For updates refer to http://www.adobe.com/downloads/";
tag_summary = "This host is installed with Adobe Flash Player and is prone to
  multiple vulnerabilities.";

if(description)
{
  script_id(802805);
  script_version("$Revision: 6521 $");
  script_cve_id("CVE-2012-0752", "CVE-2012-0753", "CVE-2012-0754", "CVE-2012-0757",
                "CVE-2012-0756", "CVE-2012-0767");
  script_bugtraq_id(52032, 52033, 52034, 51999, 52036, 52040);
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_tag(name:"last_modification", value:"$Date: 2017-07-04 16:51:10 +0200 (Tue, 04 Jul 2017) $");
  script_tag(name:"creation_date", value:"2012-02-22 14:54:18 +0530 (Wed, 22 Feb 2012)");
  script_name("Adobe Flash Player Multiple Vulnerabilities (Mac OS X) - Feb12");


  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2012 SecPod");
  script_family("General");
  script_dependencies("secpod_adobe_prdts_detect_macosx.nasl");
  script_mandatory_keys("Adobe/Flash/Player/MacOSX/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);
  script_tag(name:"qod_type", value:"package");
  script_tag(name:"solution_type", value:"VendorFix");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/48033");
  script_xref(name : "URL" , value : "http://securitytracker.com/id/1026694");
  script_xref(name : "URL" , value : "http://www.securelist.com/en/advisories/48033");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/bulletins/apsb12-03.html");
  exit(0);
}


include("version_func.inc");

# Variable Initialization
flashVer = NULL;

#Get Adobe Flash Player Version
flashVer = get_kb_item("Adobe/Flash/Player/MacOSX/Version");
if(isnull(flashVer)){
  exit(0);
}

## Check for Adobe Flash Player versions 11.1.102.55 and prior
if(version_is_less(version:flashVer, test_version:"10.3.183.15")||
   version_in_range(version:flashVer, test_version:"11.0", test_version2:"11.1.102.55")){
  security_message(0);
}