Lucene search

K
openvasCopyright (C) 2010 Greenbone Networks GmbHOPENVAS:801360
HistoryJun 15, 2010 - 12:00 a.m.

Adobe Products Remote Code Execution Vulnerability - jun10 (Windows)

2010-06-1500:00:00
Copyright (C) 2010 Greenbone Networks GmbH
plugins.openvas.org
18

0.355 Low

EPSS

Percentile

96.7%

This host is installed with Adobe products and is prone to
remote code execution vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_adobe_prdts_code_exec_vuln_win_jun10.nasl 8210 2017-12-21 10:26:31Z cfischer $
#
# Adobe Products Remote Code Execution Vulnerability - jun10 (Windows)
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2010 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_solution = "For Adobe Flash Player,
Update to Adobe Flash Player 10.1.53.64 or 9.0.277.0 or later,
For updates refer to http://www.adobe.com/support/flashplayer/downloads.html

For Adobe Reader
Vendor has released a patch for the issue, refer below link,
http://www.adobe.com/support/security/advisories/apsa10-01.html
For updates refer to http://www.adobe.com/";

tag_impact = "Successful exploitation will allow remote attackers to execute
arbitrary code by tricking a user into opening a specially crafted PDF file.

Impact Level: System/Application";

tag_affected = "Adobe Reader/Acrobat version 9.x to 9.3.2

Adobe Flash Player version 9.0.x to 9.0.262 and 10.x to 10.0.45.2";

tag_insight = "The flaw is due to a memory corruption error in the 'authplay.dll'
library and 'SWF' file when processing ActionScript Virtual Machine 2 (AVM2)
'newfunction' instructions within Flash content in a PDF document.";

tag_summary = "This host is installed with Adobe products and is prone to
remote code execution vulnerability.";

if(description)
{
  script_id(801360);
  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:"2010-06-15 06:05:27 +0200 (Tue, 15 Jun 2010)");
  script_cve_id("CVE-2010-1297");
  script_bugtraq_id(40586);
  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 Products Remote Code Execution Vulnerability - jun10 (Windows)");

  script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2010/1349");
  script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2010/1348");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/advisories/apsa10-01.html");

  script_tag(name:"qod_type", value:"registry");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2010 Greenbone Networks GmbH");
  script_family("General");
  script_dependencies("secpod_adobe_prdts_detect_win.nasl", "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 : "summary" , value : tag_summary);
  script_tag(name : "solution" , value : tag_solution);
  exit(0);
}

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

CPE = "cpe:/a:adobe:flash_player";
if(pVer = get_app_version(cpe:CPE, nofork:TRUE))
{
  #  Adobe Flash Player version 9.0.0 to 9.0.262 and 10.x to 10.0.45.2
  if(version_in_range(version:pVer, test_version:"9.0.0", test_version2:"9.0.262") ||
     version_in_range(version:pVer, test_version:"10.0", test_version2:"10.0.45.2"))
  {
    security_message(0);
    exit(0);
  }
}

CPE = "cpe:/a:adobe:acrobat";
if(acVer = get_app_version(cpe:CPE, nofork:TRUE))
{
  # Grep for Adobe Acrobat version 9.0 to 9.3.2
  if(version_in_range(version:acVer, test_version:"9.0", test_version2:"9.3.2"))
  {
    security_message(0);
    exit(0);
  }
}

CPE = "cpe:/a:adobe:acrobat_reader";
if(arVer = get_app_version(cpe:CPE))
{
  # Grep for Adobe Reader version 9.0 to 9.3.2
  if(version_in_range(version:arVer, test_version:"9.0", test_version2:"9.3.2")){
    security_message(0);
  }
}