Lucene search

K
openvasCopyright (c) 2011 Greenbone Networks GmbHOPENVAS:801922
HistoryApr 22, 2011 - 12:00 a.m.

Adobe Flash Player Arbitrary Code Execution Vulnerability (Linux)

2011-04-2200:00:00
Copyright (c) 2011 Greenbone Networks GmbH
plugins.openvas.org
15

0.97 High

EPSS

Percentile

99.7%

This host has Adobe flash Player installed, and is prone to code
execution vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_adobe_flash_player_code_execution_vuln_apr11_lin.nasl 5424 2017-02-25 16:52:36Z teissa $
#
# Adobe Flash Player Arbitrary Code Execution Vulnerability (Linux)
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2011 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 let attackers to corrupt memory
and execute arbitrary code on the system with elevated privileges.

Impact Level: System/Application";

tag_affected = "Adobe Flash Player version 10.2.153.1 and prior on Linux";

tag_insight = "The flaw is due to an error in handling 'SWF' file in adobe flash
player, which allows attackers to execute arbitrary code or cause a denial
of service via crafted flash content.";

tag_solution = "Upgrade adobe flash player to version 10.2.159.1 or later,
Update Adobe Reader/Acrobat to version 9.4.4 or 10.0.3 or later,
For updates refer to http://www.adobe.com";

tag_summary = "This host has Adobe flash Player installed, and is prone to code
execution vulnerability.";

if(description)
{
  script_id(801922);
  script_version("$Revision: 5424 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-25 17:52:36 +0100 (Sat, 25 Feb 2017) $");
  script_tag(name:"creation_date", value:"2011-04-22 16:38:12 +0200 (Fri, 22 Apr 2011)");
  script_cve_id("CVE-2011-0611");
  script_bugtraq_id(47314);
  script_tag(name:"cvss_base", value:"9.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
  script_name("Adobe Flash Player Arbitrary Code Execution Vulnerability (Linux)");
  script_xref(name : "URL" , value : "https://www.kb.cert.org/vuls/id/230057");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/advisories/apsa11-02.html");
  script_xref(name : "URL" , value : "http://blogs.adobe.com/psirt/2011/04/security-advisory-for-adobe-flash-player-adobe-reader-and-acrobat-apsa11-02.html");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (c) 2011 Greenbone Networks GmbH");
  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");
  exit(0);
}


include("version_func.inc");

## Check for Adobe Flash Player version
flashVer = get_kb_item("AdobeFlashPlayer/Linux/Ver");
flashVer = ereg_replace(pattern:",", string:flashVer, replace: ".");
if(flashVer)
{
  if(version_is_less_equal(version:flashVer, test_version:"10.2.153.1")){
    security_message(0);
  }
}