Lucene search

K
openvasCopyright (C) 2013 Greenbone Networks GmbHOPENVAS:803408
HistoryFeb 14, 2013 - 12:00 a.m.

Adobe Flash Player Multiple Vulnerabilities -02 Feb13 (Mac OS X)

2013-02-1400:00:00
Copyright (C) 2013 Greenbone Networks GmbH
plugins.openvas.org
6

0.018 Low

EPSS

Percentile

86.7%

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

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_adobe_flash_player_mult_vuln02_feb13_macosx.nasl 6115 2017-05-12 09:03:25Z teissa $
#
# Adobe Flash Player Multiple Vulnerabilities -02 Feb13 (Mac OS X)
#
# Authors:
# Thanga Prakash S <[email protected]>
#
# Copyright:
# Copyright (c) 2013 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 remote attackers to cause buffer
  overflow, remote code execution and corrupt system memory.
  Impact Level: System/Application";

tag_affected = "Adobe Flash Player prior to 10.3.183.61 and 11.x prior to 11.6.602.167
  on Mac OS X";
tag_insight = "Multiple flaws due to
  - Dereference already freed memory
  - Use-after-free errors
  - Integer overflow and some unspecified error.";
tag_solution = "Update to version 11.6.602.167 or later,
  For updates refer to http://get.adobe.com/flashplayer";
tag_summary = "This host is installed with Adobe Flash Player and is prone to
  multiple vulnerabilities.";

if(description)
{
  script_id(803408);
  script_version("$Revision: 6115 $");
  script_tag(name:"last_modification", value:"$Date: 2017-05-12 11:03:25 +0200 (Fri, 12 May 2017) $");
  script_tag(name:"creation_date", value:"2013-02-14 13:32:22 +0530 (Thu, 14 Feb 2013)");
  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_cve_id("CVE-2013-0637", "CVE-2013-0638", "CVE-2013-0639", "CVE-2013-0642",
                "CVE-2013-0644", "CVE-2013-0645", "CVE-2013-0647", "CVE-2013-0649",
                "CVE-2013-1365", "CVE-2013-1366", "CVE-2013-1367", "CVE-2013-1368",
                "CVE-2013-1369", "CVE-2013-1370", "CVE-2013-1372", "CVE-2013-1373",
                "CVE-2013-1374");
  script_bugtraq_id(57929, 57926, 57925, 57923, 57933, 57916, 57927, 57930, 57920,
                    57924, 57922, 57918, 57919, 57912, 57917);
  script_name("Adobe Flash Player Multiple Vulnerabilities -02 Feb13 (Mac OS X)");
  script_xref(name : "URL" , value : "https://lwn.net/Articles/537746");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/52166");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/bulletins/apsb13-05.html");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2013 Greenbone Networks GmbH");
  script_family("General");
  script_dependencies("secpod_adobe_prdts_detect_macosx.nasl", "ssh_authorization_init.nasl");
  script_require_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");
  exit(0);
}


include("version_func.inc");

## Variable Initialization
playerVer = "";

# Check for Adobe Flash Player version prior to 10.3.183.61 or 11.6.602.167
playerVer = get_kb_item("Adobe/Flash/Player/MacOSX/Version");
if(playerVer != NULL)
{
  if(version_is_less(version:playerVer, test_version:"10.3.183.61") ||
     version_in_range(version:playerVer, test_version:"11.0",
                                         test_version2:"11.6.602.166"))
  {
    security_message(0);
    exit(0);
  }
}