Lucene search

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

Adobe Flash Player Multiple Vulnerabilities August-2011 (Linux)

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

0.894 High

EPSS

Percentile

98.5%

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

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_adobe_flash_player_mult_vuln_aug11_lin.nasl 7029 2017-08-31 11:51:40Z teissa $
#
# Adobe Flash Player Multiple Vulnerabilities August-2011 (Linux)
#
# 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 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
  For updates refer to http://www.adobe.com";
tag_summary = "This host is installed with Adobe Flash Player and is prone to
  multiple vulnerabilities.";

if(description)
{
  script_id(902710);
  script_version("$Revision: 7029 $");
  script_tag(name:"last_modification", value:"$Date: 2017-08-31 13:51:40 +0200 (Thu, 31 Aug 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 Flash Player Multiple Vulnerabilities August-2011 (Linux)");


  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("General");
  script_dependencies("gb_adobe_flash_player_detect_lin.nasl");
  script_require_keys("AdobeFlashPlayer/Linux/Ver");
  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:"executable_version");
  script_tag(name:"solution_type", value:"VendorFix");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/bulletins/apsb11-21.html");
  exit(0);
}


include("version_func.inc");

## Get Adobe Flash Player version from KB
flashVer = get_kb_item("AdobeFlashPlayer/Linux/Ver");
if(flashVer)
{
  flashVer = ereg_replace(pattern:",", string:flashVer, replace: ".");

  ## 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);
  }
}