Lucene search

K
openvasCopyright (C) 2011 SecPodOPENVAS:902709
HistoryAug 31, 2011 - 12:00 a.m.

Adobe Air and Flash Player Multiple Vulnerabilities August-2011 (Windows)

2011-08-3100:00:00
Copyright (C) 2011 SecPod
plugins.openvas.org
11

0.894 High

EPSS

Percentile

98.5%

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

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_adobe_prdts_mult_vuln_aug11_win.nasl 8210 2017-12-21 10:26:31Z cfischer $
#
# Adobe Air and Flash Player Multiple Vulnerabilities August-2011 (Windows)
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2011 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 let attackers to execute arbitrary code in the
  context of the user running the affected application. Failed exploit attempts
  will likely result in denial-of-service conditions.

  Impact Level: System/Application";

tag_affected = "Adobe Air versions prior to 2.7.1

  Adobe Flash Player versions prior to 10.3.183.5";

tag_insight = "Multiple flaws are caused by memory corruptions, cross-site information
  disclosure, buffer overflow and integer overflow errors.";

tag_solution = "Upgrade to Adobe Flash Player version 10.3.183.5 and Adobe Air version
  2.7.1 or later.
  For updates refer to http://www.adobe.com";

tag_summary = "This host is installed with Adobe Air and/or Flash Player and is
  prone to multiple vulnerabilities.";

if(description)
{
  script_id(902709);
  script_version("$Revision: 8210 $");
  script_tag(name:"last_modification", value:"$Date: 2017-12-21 11:26:31 +0100 (Thu, 21 Dec 2017) $");
  script_tag(name:"creation_date", value:"2011-08-31 10:37:30 +0200 (Wed, 31 Aug 2011)");
  script_cve_id("CVE-2011-2130", "CVE-2011-2134", "CVE-2011-2137",
                "CVE-2011-2135", "CVE-2011-2136", "CVE-2011-2138",
                "CVE-2011-2139", "CVE-2011-2140", "CVE-2011-2414",
                "CVE-2011-2415", "CVE-2011-2416", "CVE-2011-2417",
                "CVE-2011-2425", "CVE-2011-2424");
  script_bugtraq_id(49073, 49074, 49075, 49082, 49079, 49080, 49086, 49083,
                    49076, 49077, 49081, 49084, 49085);
  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_name("Adobe Air and Flash Player Multiple Vulnerabilities August-2011 (Windows)");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/bulletins/apsb11-21.html");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("General");
  script_dependencies("gb_adobe_flash_player_detect_win.nasl");
  script_mandatory_keys("Adobe/Air_or_Flash_or_Reader_or_Acrobat/Win/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 : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"qod_type", value:"registry");
  script_tag(name:"solution_type", value:"VendorFix");
  exit(0);
}

include("host_details.inc");
include("version_func.inc");

CPE = "cpe:/a:adobe:flash_player";
if(flashVer = get_app_version(cpe:CPE, nofork:TRUE))
{
  ## Check for Adobe flash player versions < 10.3.183.5
  if(version_is_less(version:flashVer, test_version:"10.3.183.5"))
  {
    security_message(0);
    exit(0);
  }
}

CPE = "cpe:/a:adobe:adobe_air";
if(airVer = get_app_version(cpe:CPE))
{
   ## Check for Adobe air versions < 2.7.1
  if(version_is_less(version:airVer, test_version:"2.7.1")){
    security_message(0);
  }
}