Vulnerabilities > CVE-2010-4086 - Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in Adobe Shockwave Player
Attack vector
UNKNOWN Attack complexity
UNKNOWN Privileges required
UNKNOWN Confidentiality impact
UNKNOWN Integrity impact
UNKNOWN Availability impact
UNKNOWN Summary
dirapi.dll in Adobe Shockwave Player before 11.5.9.615 allows attackers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted Director (.dir) media file with an invalid element size, a different vulnerability than CVE-2010-2581, CVE-2010-2880, CVE-2010-4084, CVE-2010-4085, and CVE-2010-4088.
Vulnerable Configurations
Common Weakness Enumeration (CWE)
Common Attack Pattern Enumeration and Classification (CAPEC)
- Buffer Overflow via Environment Variables This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the attacker finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.
- Overflow Buffers Buffer Overflow attacks target improper or missing bounds checking on buffer operations, typically triggered by input injected by an attacker. As a consequence, an attacker is able to write past the boundaries of allocated buffer regions in memory, causing a program crash or potentially redirection of execution as per the attackers' choice.
- Client-side Injection-induced Buffer Overflow This type of attack exploits a buffer overflow vulnerability in targeted client software through injection of malicious content from a custom-built hostile service.
- Filter Failure through Buffer Overflow In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. the user input is let into the system unfiltered).
- MIME Conversion An attacker exploits a weakness in the MIME conversion routine to cause a buffer overflow and gain control over the mail server machine. The MIME system is designed to allow various different information formats to be interpreted and sent via e-mail. Attack points exist when data are converted to MIME compatible format and back.
Nessus
NASL family Windows NASL id SHOCKWAVE_PLAYER_APSB10-25.NASL description The remote Windows host contains a version of Adobe last seen 2020-06-01 modified 2020-06-02 plugin id 50387 published 2010-10-28 reporter This script is Copyright (C) 2010-2018 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/50387 title Shockwave Player < 11.5.9.615 code # # (C) Tenable Network Security, Inc. # include('compat.inc'); if (description) { script_id(50387); script_version("1.15"); script_cvs_date("Date: 2018/07/27 18:38:15"); script_cve_id("CVE-2010-2581", "CVE-2010-2582", "CVE-2010-3653", "CVE-2010-3655", "CVE-2010-4084", "CVE-2010-4085", "CVE-2010-4086", "CVE-2010-4087", "CVE-2010-4088", "CVE-2010-4089", "CVE-2010-4090"); script_bugtraq_id(44291, 44512, 44513, 44514, 44515, 44516, 44517, 44518, 44510, 44520, 44521); script_xref(name:"CERT", value:"402231"); script_xref(name:"Secunia", value:"41932"); script_name(english:"Shockwave Player < 11.5.9.615"); script_summary(english:"Checks version of Shockwave Player"); script_set_attribute(attribute:"synopsis", value: "The remote Windows host contains a web browser plugin that is affected by multiple vulnerabilities."); script_set_attribute(attribute:"description", value: "The remote Windows host contains a version of Adobe's Shockwave Player that is earlier than 11.5.9.615. Such versions are potentially affected by the following issues : - A memory corruption issue exists that could lead to code execution. Note that there are reports this issue is being exploited in the wild. (CVE-2010-3653) - A heap-based buffer overflow vulnerability could lead to code execution. (CVE-2010-2582) - Multiple memory corruption issues in the 'dirapi.dll' module could lead to code execution. (CVE-2010-2581, CVE-2010-3655, CVE-2010-4084, CVE-2010-4085, CVE-2010-4086, CVE-2010-4088) - Multiple memory corruption issues in the 'IML32.dll' module could lead to code execution. (CVE-2010-4087, CVE-2010-4089) - A memory corruption issue that could lead to code execution. (CVE-2010-4090)"); script_set_attribute(attribute:"see_also", value:"http://www.adobe.com/support/security/bulletins/apsb10-25.html"); script_set_attribute(attribute:"solution", value:"Upgrade to Adobe Shockwave 11.5.9.615 or later."); script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C"); script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C"); script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available"); script_set_attribute(attribute:"exploit_available", value:"true"); script_set_attribute(attribute:"exploited_by_malware", value:"true"); script_set_attribute(attribute:"metasploit_name", value:'Adobe Shockwave rcsL Memory Corruption'); script_set_attribute(attribute:"exploit_framework_metasploit", value:"true"); script_set_attribute(attribute:"exploit_framework_canvas", value:"true"); script_set_attribute(attribute:"canvas_package", value:'CANVAS'); script_set_attribute(attribute:"vuln_publication_date", value:"2010/10/21"); script_set_attribute(attribute:"patch_publication_date", value:"2010/10/28"); script_set_attribute(attribute:"plugin_publication_date", value:"2010/10/28"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:shockwave_player"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_family(english:"Windows"); script_copyright(english:"This script is Copyright (C) 2010-2018 Tenable Network Security, Inc."); script_dependencies("shockwave_player_apsb09_08.nasl"); script_require_keys("SMB/shockwave_player"); exit(0); } include("global_settings.inc"); include("misc_func.inc"); include("smb_func.inc"); port = kb_smb_transport(); installs = get_kb_list('SMB/shockwave_player/*/path'); if (isnull(installs)) exit(0, 'Shockwave Player was not detected on the remote host.'); info = NULL; pattern = 'SMB/shockwave_player/([^/]+)/([^/]+)/path'; foreach install (keys(installs)) { match = eregmatch(string:install, pattern:pattern); if (!match) exit(1, 'Unexpected format of KB key "' + install + '".'); file = installs[install]; variant = match[1]; version = match[2]; if (ver_compare(ver:version, fix:'11.5.9.615') == -1) { if (variant == 'Plugin') info += '\n - Browser Plugin (for Firefox / Netscape / Opera) :\n'; else if (variant == 'ActiveX') info += '\n - ActiveX control (for Internet Explorer) :\n'; info += ' ' + file + ', ' + version + '\n'; } } if (!info) exit(0, 'No vulnerable installs of Shockwave Player were found.'); if (report_verbosity > 0) { if (max_index(split(info)) > 2) s = "s"; else s = ""; report = '\nNessus has identified the following vulnerable instance'+s+' of Shockwave'+ '\nPlayer installed on the remote host :\n'+ info; security_hole(port:port, extra:report); } else security_hole(port);
NASL family MacOS X Local Security Checks NASL id MACOSX_SHOCKWAVE_PLAYER_APSB10-25.NASL description The remote Mac OS X host contains a version of Adobe Shockwave Player that is 11.5.8.612 or earlier. It is, therefore, affected by multiple vulnerabilities : - A memory corruption issue exists that allows code execution. Note that there are reports that this issue is being exploited in the wild. (CVE-2010-3653) - A heap-based buffer overflow vulnerability allows code execution. (CVE-2010-2582) - Multiple memory corruption issues in the last seen 2020-06-01 modified 2020-06-02 plugin id 80174 published 2014-12-22 reporter This script is Copyright (C) 2014-2018 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/80174 title Adobe Shockwave Player <= 11.5.8.612 (APSB10-25) (Mac OS X) code # # (C) Tenable Network Security, Inc. # include('compat.inc'); if (description) { script_id(80174); script_version("1.6"); script_cvs_date("Date: 2018/07/14 1:59:35"); script_cve_id( "CVE-2010-2581", "CVE-2010-2582", "CVE-2010-3653", "CVE-2010-3655", "CVE-2010-4084", "CVE-2010-4085", "CVE-2010-4086", "CVE-2010-4087", "CVE-2010-4088", "CVE-2010-4089", "CVE-2010-4090" ); script_bugtraq_id( 44291, 44512, 44513, 44514, 44515, 44516, 44517, 44518, 44510, 44520, 44521 ); script_xref(name:"CERT", value:"402231"); script_name(english:"Adobe Shockwave Player <= 11.5.8.612 (APSB10-25) (Mac OS X)"); script_summary(english:"Checks the version of Shockwave Player."); script_set_attribute(attribute:"synopsis", value: "The remote Mac OS X host contains a web browser plugin that is affected by multiple vulnerabilities."); script_set_attribute(attribute:"description", value: "The remote Mac OS X host contains a version of Adobe Shockwave Player that is 11.5.8.612 or earlier. It is, therefore, affected by multiple vulnerabilities : - A memory corruption issue exists that allows code execution. Note that there are reports that this issue is being exploited in the wild. (CVE-2010-3653) - A heap-based buffer overflow vulnerability allows code execution. (CVE-2010-2582) - Multiple memory corruption issues in the 'dirapi.dll' module allow code execution. (CVE-2010-2581, CVE-2010-3655, CVE-2010-4084, CVE-2010-4085, CVE-2010-4086, CVE-2010-4088) - Multiple memory corruption issues in the 'IML32.dll' module allow code execution. (CVE-2010-4087, CVE-2010-4089) - A memory corruption issue allows code execution. (CVE-2010-4090)"); script_set_attribute(attribute:"see_also", value:"http://www.adobe.com/support/security/bulletins/apsb10-25.html"); script_set_attribute(attribute:"solution", value:"Upgrade to Adobe Shockwave 11.5.9.615 or later."); script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C"); script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C"); script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available"); script_set_attribute(attribute:"exploit_available", value:"true"); script_set_attribute(attribute:"exploited_by_malware", value:"true"); script_set_attribute(attribute:"metasploit_name", value:'Adobe Shockwave rcsL Memory Corruption'); script_set_attribute(attribute:"exploit_framework_metasploit", value:"true"); script_set_attribute(attribute:"exploit_framework_canvas", value:"true"); script_set_attribute(attribute:"canvas_package", value:'CANVAS'); script_set_attribute(attribute:"vuln_publication_date", value:"2010/10/21"); script_set_attribute(attribute:"patch_publication_date", value:"2010/10/28"); script_set_attribute(attribute:"plugin_publication_date", value:"2014/12/22"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:shockwave_player"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_family(english:"MacOS X Local Security Checks"); script_copyright(english:"This script is Copyright (C) 2014-2018 Tenable Network Security, Inc."); script_dependencies("shockwave_player_detect_macosx.nbin"); script_require_keys("installed_sw/Shockwave Player", "Host/MacOSX/Version"); exit(0); } include("audit.inc"); include("global_settings.inc"); include("misc_func.inc"); include("install_func.inc"); os = get_kb_item("Host/MacOSX/Version"); if (!os) audit(AUDIT_OS_NOT, "Mac OS X"); app = 'Shockwave Player'; get_install_count(app_name:app, exit_if_zero:TRUE); install = get_single_install(app_name:app, exit_if_unknown_ver:TRUE); ver = install['version']; path = install['path']; if (ver_compare(ver:ver, fix:'11.5.8.612', strict:FALSE) <= 0) { if (report_verbosity > 0) { report = '\n Path : ' + path + '\n Installed version : ' + ver + '\n Fixed versions : 11.5.9.615' + '\n'; security_hole(port:0, extra:report); } else security_hole(port:0); } else audit(AUDIT_INST_PATH_NOT_VULN, app, ver, path);
Oval
accepted | 2014-11-10T04:00:23.706-05:00 | ||||||||||||
class | vulnerability | ||||||||||||
contributors |
| ||||||||||||
definition_extensions |
| ||||||||||||
description | dirapi.dll in Adobe Shockwave Player before 11.5.9.615 allows attackers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted Director (.dir) media file with an invalid element size, a different vulnerability than CVE-2010-2581, CVE-2010-2880, CVE-2010-4084, CVE-2010-4085, and CVE-2010-4088. | ||||||||||||
family | windows | ||||||||||||
id | oval:org.mitre.oval:def:12030 | ||||||||||||
status | accepted | ||||||||||||
submitted | 2010-11-22T12:30:17 | ||||||||||||
title | Denial of service vulnerability in dirapi.dll in Adobe Shockwave Player before 11.5.9.615 via a crafted Director (.dir) media file with an invalid element size | ||||||||||||
version | 70 |
References
- http://www.adobe.com/support/security/bulletins/apsb10-25.html
- http://www.adobe.com/support/security/bulletins/apsb10-25.html
- http://www.securityfocus.com/archive/1/514578/100/0/threaded
- http://www.securityfocus.com/archive/1/514578/100/0/threaded
- http://www.securitytracker.com/id?1024664
- http://www.securitytracker.com/id?1024664
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A12030
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A12030