Vulnerabilities > CVE-2012-5678 - Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in Adobe AIR and Flash Player
Summary
Adobe Flash Player before 10.3.183.48 and 11.x before 11.5.502.135 on Windows, before 10.3.183.48 and 11.x before 11.5.502.136 on Mac OS X, before 10.3.183.48 and 11.x before 11.2.202.258 on Linux, before 11.1.111.29 on Android 2.x and 3.x, and before 11.1.115.34 on Android 4.x; Adobe AIR before 3.5.0.880 on Windows and before 3.5.0.890 on Mac OS X; and Adobe AIR SDK before 3.5.0.880 on Windows and before 3.5.0.890 on Mac OS X allow attackers to execute arbitrary code or cause a denial of service (memory corruption) via unspecified vectors.
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 FLASH_PLAYER_APSB12-27.NASL description According to its version, the instance of Flash Player installed on the remote Windows host is 11.x equal to or earlier than 11.5.502.110, or 10.x equal to or earlier than 10.3.183.43. It is, therefore, potentially affected by multiple vulnerabilities : - An unspecified error exists that can allow a buffer overflow and arbitrary code execution. (CVE-2012-5676) - An unspecified error exists that can allow an integer overflow and arbitrary code execution. (CVE-2012-5677) - An unspecified error exists that can lead to memory corruption and arbitrary code execution. (CVE-2012-5678) last seen 2020-06-01 modified 2020-06-02 plugin id 63242 published 2012-12-12 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63242 title Flash Player <= 10.3.183.43 / 11.5.502.110 Multiple Vulnerabilities (APSB12-27) code # # (C) Tenable Network Security, Inc. # include("compat.inc"); if (description) { script_id(63242); script_version("1.13"); script_cvs_date("Date: 2019/12/04"); script_cve_id("CVE-2012-5676", "CVE-2012-5677", "CVE-2012-5678"); script_bugtraq_id(56892, 56896, 56898); script_name(english:"Flash Player <= 10.3.183.43 / 11.5.502.110 Multiple Vulnerabilities (APSB12-27)"); script_summary(english:"Checks version of Flash Player"); script_set_attribute(attribute:"synopsis", value: "The remote Windows host has a browser plugin that is affected by multiple vulnerabilities."); script_set_attribute(attribute:"description", value: "According to its version, the instance of Flash Player installed on the remote Windows host is 11.x equal to or earlier than 11.5.502.110, or 10.x equal to or earlier than 10.3.183.43. It is, therefore, potentially affected by multiple vulnerabilities : - An unspecified error exists that can allow a buffer overflow and arbitrary code execution. (CVE-2012-5676) - An unspecified error exists that can allow an integer overflow and arbitrary code execution. (CVE-2012-5677) - An unspecified error exists that can lead to memory corruption and arbitrary code execution. (CVE-2012-5678)"); script_set_attribute(attribute:"see_also", value:"http://www.zerodayinitiative.com/advisories/ZDI-13-021/"); script_set_attribute(attribute:"see_also", value:"http://www.adobe.com/support/security/bulletins/apsb12-27.html"); script_set_attribute(attribute:"solution", value: "Upgrade to Adobe Flash Player version 10.3.183.48 / 11.5.502.135 or later, or Google Chrome PepperFlash 11.5.31.5 or later."); script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C"); script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C"); script_set_attribute(attribute:"cvss_score_source", value:"CVE-2012-5678"); 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:"vuln_publication_date", value:"2012/12/11"); script_set_attribute(attribute:"patch_publication_date", value:"2012/12/11"); script_set_attribute(attribute:"plugin_publication_date", value:"2012/12/12"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:flash_player"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_family(english:"Windows"); script_copyright(english:"This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof."); script_dependencies("flash_player_installed.nasl"); script_require_keys("SMB/Flash_Player/installed"); exit(0); } include("global_settings.inc"); include("misc_func.inc"); get_kb_item_or_exit("SMB/Flash_Player/installed"); # Identify vulnerable versions. info = ""; # we're checking for versions less than *or equal to* the cutoff! foreach variant (make_list("Plugin", "ActiveX", "Chrome", "Chrome_Pepper")) { vers = get_kb_list("SMB/Flash_Player/"+variant+"/Version/*"); files = get_kb_list("SMB/Flash_Player/"+variant+"/File/*"); if (!isnull(vers) && !isnull(files)) { foreach key (keys(vers)) { ver = vers[key]; if (ver) { iver = split(ver, sep:'.', keep:FALSE); for (i=0; i<max_index(iver); i++) iver[i] = int(iver[i]); if ( ( # Chrome Flash <= 11.5.31.2 variant == "Chrome_Pepper" && ( iver[0] == 11 && ( iver[1] < 5 || ( iver[1] == 5 && ( iver[2] < 31 || (iver[2] == 31 && iver[3] <= 2) ) ) ) ) ) || ( variant != "Chrome_Pepper" && ( # 10.x <= 10.3.183.43 ( iver[0] == 10 && ( iver[1] < 3 || ( iver[1] == 3 && ( iver[2] < 183 || (iver[2] == 183 && iver[3] <= 43) ) ) ) ) || # 11.x <= 11.5.502.110 ( iver[0] == 11 && ( iver[1] < 5 || ( iver[1] == 5 && ( iver[2] < 502 || (iver[2] == 502 && iver[3] <= 110) ) ) ) ) ) ) ) { num = key - ("SMB/Flash_Player/"+variant+"/Version/"); file = files["SMB/Flash_Player/"+variant+"/File/"+num]; if (variant == "Plugin") { info += '\n Product: Browser Plugin (for Firefox / Netscape / Opera)'; } else if (variant == "ActiveX") { info += '\n Product : ActiveX control (for Internet Explorer)'; } else if ("Chrome" >< variant) { info += '\n Product : Browser Plugin (for Google Chrome)'; } info += '\n Path : ' + file + '\n Installed version : ' + ver; if (variant == "Chrome_Pepper") info += '\n Fixed version : 11.5.31.5 (Chrome PepperFlash)'; else info += '\n Fixed version : 10.3.183.48 / 11.5.502.135'; info += '\n'; } } } } } if (info) { port = get_kb_item("SMB/transport"); if (report_verbosity > 0) security_hole(port:port, extra:info); else security_hole(port); } else { if (thorough_tests) exit(0, 'No vulnerable versions of Adobe Flash Player were found.'); else exit(1, 'Google Chrome\'s built-in Flash Player may not have been detected because the \'Perform thorough tests\' setting was not enabled.'); }
NASL family SuSE Local Security Checks NASL id SUSE_FLASH-PLAYER-8395.NASL description This version upgrade of flash-player fixes multiple unspecified code execution vulnerabilities. last seen 2020-06-05 modified 2012-12-17 plugin id 63279 published 2012-12-17 reporter This script is Copyright (C) 2012-2020 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63279 title SuSE 10 Security Update : flash-player (ZYPP Patch Number 8395) code #%NASL_MIN_LEVEL 80502 # # (C) Tenable Network Security, Inc. # # The text description of this plugin is (C) Novell, Inc. # include("compat.inc"); if (description) { script_id(63279); script_version("1.4"); script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/04"); script_cve_id("CVE-2012-5676", "CVE-2012-5677", "CVE-2012-5678"); script_name(english:"SuSE 10 Security Update : flash-player (ZYPP Patch Number 8395)"); script_summary(english:"Checks rpm output for the updated package"); script_set_attribute( attribute:"synopsis", value:"The remote SuSE 10 host is missing a security-related patch." ); script_set_attribute( attribute:"description", value: "This version upgrade of flash-player fixes multiple unspecified code execution vulnerabilities." ); script_set_attribute( attribute:"see_also", value:"http://support.novell.com/security/cve/CVE-2012-5676.html" ); script_set_attribute( attribute:"see_also", value:"http://support.novell.com/security/cve/CVE-2012-5677.html" ); script_set_attribute( attribute:"see_also", value:"http://support.novell.com/security/cve/CVE-2012-5678.html" ); script_set_attribute(attribute:"solution", value:"Apply ZYPP patch number 8395."); script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A: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:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"cpe:/o:suse:suse_linux"); script_set_attribute(attribute:"vuln_publication_date", value:"2012/12/12"); script_set_attribute(attribute:"patch_publication_date", value:"2012/12/13"); script_set_attribute(attribute:"plugin_publication_date", value:"2012/12/17"); script_set_attribute(attribute:"generated_plugin", value:"current"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2012-2020 and is owned by Tenable, Inc. or an Affiliate thereof."); script_family(english:"SuSE Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/cpu", "Host/SuSE/release", "Host/SuSE/rpm-list"); exit(0); } include("global_settings.inc"); include("rpm.inc"); if (!get_kb_item("Host/local_checks_enabled")) exit(0, "Local checks are not enabled."); if (!get_kb_item("Host/SuSE/release")) exit(0, "The host is not running SuSE."); if (!get_kb_item("Host/SuSE/rpm-list")) exit(1, "Could not obtain the list of installed packages."); cpu = get_kb_item("Host/cpu"); if (isnull(cpu)) exit(1, "Failed to determine the architecture type."); if (cpu >!< "x86_64" && cpu !~ "^i[3-6]86$") exit(1, "Local checks for SuSE 10 on the '"+cpu+"' architecture have not been implemented."); flag = 0; if (rpm_check(release:"SLED10", sp:4, reference:"flash-player-11.2.202.258-0.5.1")) flag++; if (flag) { if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get()); else security_hole(0); exit(0); } else exit(0, "The host is not affected.");
NASL family SuSE Local Security Checks NASL id OPENSUSE-2012-850.NASL description This version upgrade of flash-player fixed multiple unspecified code execution vulnerabiliies. last seen 2020-06-05 modified 2014-06-13 plugin id 74842 published 2014-06-13 reporter This script is Copyright (C) 2014-2020 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/74842 title openSUSE Security Update : flash-player (openSUSE-SU-2012:1643-1) code #%NASL_MIN_LEVEL 80502 # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from openSUSE Security Update openSUSE-2012-850. # # The text description of this plugin is (C) SUSE LLC. # include("compat.inc"); if (description) { script_id(74842); script_version("1.5"); script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/04"); script_cve_id("CVE-2012-5676", "CVE-2012-5677", "CVE-2012-5678"); script_name(english:"openSUSE Security Update : flash-player (openSUSE-SU-2012:1643-1)"); script_summary(english:"Check for the openSUSE-2012-850 patch"); script_set_attribute( attribute:"synopsis", value:"The remote openSUSE host is missing a security update." ); script_set_attribute( attribute:"description", value: "This version upgrade of flash-player fixed multiple unspecified code execution vulnerabiliies." ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.novell.com/show_bug.cgi?id=794062" ); script_set_attribute( attribute:"see_also", value:"https://lists.opensuse.org/opensuse-updates/2012-12/msg00027.html" ); script_set_attribute( attribute:"solution", value:"Update the affected flash-player packages." ); script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A: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:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:flash-player"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:flash-player-gnome"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:flash-player-kde4"); script_set_attribute(attribute:"cpe", value:"cpe:/o:novell:opensuse:12.1"); script_set_attribute(attribute:"vuln_publication_date", value:"2012/12/12"); script_set_attribute(attribute:"patch_publication_date", value:"2012/12/12"); script_set_attribute(attribute:"plugin_publication_date", value:"2014/06/13"); script_set_attribute(attribute:"generated_plugin", value:"current"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2014-2020 and is owned by Tenable, Inc. or an Affiliate thereof."); script_family(english:"SuSE Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/SuSE/release", "Host/SuSE/rpm-list", "Host/cpu"); exit(0); } include("audit.inc"); include("global_settings.inc"); include("rpm.inc"); if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED); release = get_kb_item("Host/SuSE/release"); if (isnull(release) || release =~ "^(SLED|SLES)") audit(AUDIT_OS_NOT, "openSUSE"); if (release !~ "^(SUSE12\.1)$") audit(AUDIT_OS_RELEASE_NOT, "openSUSE", "12.1", release); if (!get_kb_item("Host/SuSE/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING); ourarch = get_kb_item("Host/cpu"); if (!ourarch) audit(AUDIT_UNKNOWN_ARCH); if (ourarch !~ "^(i586|i686|x86_64)$") audit(AUDIT_ARCH_NOT, "i586 / i686 / x86_64", ourarch); flag = 0; if ( rpm_check(release:"SUSE12.1", reference:"flash-player-11.2.202.258-38.1") ) flag++; if ( rpm_check(release:"SUSE12.1", reference:"flash-player-gnome-11.2.202.258-38.1") ) flag++; if ( rpm_check(release:"SUSE12.1", reference:"flash-player-kde4-11.2.202.258-38.1") ) flag++; if (flag) { if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get()); else security_hole(0); exit(0); } else { tested = pkg_tests_get(); if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested); else audit(AUDIT_PACKAGE_NOT_INSTALLED, "flash-player / flash-player-gnome / flash-player-kde4"); }
NASL family Red Hat Local Security Checks NASL id REDHAT-RHSA-2012-1569.NASL description An updated Adobe Flash Player package that fixes three security issues is now available for Red Hat Enterprise Linux 5 and 6 Supplementary. The Red Hat Security Response Team has rated this update as having critical security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section. The flash-plugin package contains a Mozilla Firefox compatible Adobe Flash Player web browser plug-in. This update fixes three vulnerabilities in Adobe Flash Player. These vulnerabilities are detailed in the Adobe Security bulletin APSB12-27, listed in the References section. Specially crafted SWF content could cause flash-plugin to crash or, potentially, execute arbitrary code when a victim loads a page containing the malicious SWF content. (CVE-2012-5676, CVE-2012-5677, CVE-2012-5678) All users of Adobe Flash Player should install this updated package, which upgrades Flash Player to version 11.2.202.258. last seen 2020-06-01 modified 2020-06-02 plugin id 63258 published 2012-12-13 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63258 title RHEL 5 / 6 : flash-plugin (RHSA-2012:1569) NASL family FreeBSD Local Security Checks NASL id FREEBSD_PKG_1657A3E6458511E2A39610BF48230856.NASL description Adobe reports : These updates address vulnerabilities that could cause a crash and potentially allow an attacker to take control of the affected system. last seen 2020-06-01 modified 2020-06-02 plugin id 63263 published 2012-12-14 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63263 title FreeBSD : linux-flashplugin -- multiple vulnerabilities (1657a3e6-4585-11e2-a396-10bf48230856) NASL family SuSE Local Security Checks NASL id OPENSUSE-2012-849.NASL description This version upgrade of flash-player fixed multiple unspecified code execution vulnerabiliies. last seen 2020-06-05 modified 2014-06-13 plugin id 74840 published 2014-06-13 reporter This script is Copyright (C) 2014-2020 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/74840 title openSUSE Security Update : flash-player (openSUSE-SU-2013:0368-1) NASL family Windows NASL id ADOBE_AIR_APSB12-27.NASL description According to its version, the instance of Adobe AIR 3.x on the remote Windows host is 3.5.0.600 or earlier. It is, therefore, reportedly affected by multiple vulnerabilities : - An unspecified error exists that can allow a buffer overflow and arbitrary code execution. (CVE-2012-5676) - An unspecified error exists that can allow an integer overflow and arbitrary code execution. (CVE-2012-5677) - An unspecified error exists that can lead to memory corruption and arbitrary code execution. (CVE-2012-5678) last seen 2020-06-01 modified 2020-06-02 plugin id 63241 published 2012-12-12 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63241 title Adobe AIR 3.x <= 3.5.0.600 Multiple Vulnerabilities (APSB12-27) NASL family MacOS X Local Security Checks NASL id MACOSX_FLASH_PLAYER_11_5_502_136.NASL description According to its version, the instance of Flash Player installed on the remote Mac OS X host is 11.x equal to or earlier than 11.5.502.110, or 10.x equal to or earlier than 10.3.183.43. It is, therefore, potentially affected by multiple vulnerabilities : - An unspecified error exists that can allow a buffer overflow and arbitrary code execution. (CVE-2012-5676) - An unspecified error exists that can allow an integer overflow and arbitrary code execution. (CVE-2012-5677) - An unspecified error exists that can lead to memory corruption and arbitrary code execution. (CVE-2012-5678) last seen 2020-06-01 modified 2020-06-02 plugin id 63244 published 2012-12-12 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63244 title Flash Player for Mac <= 10.3.183.43 / 11.5.502.110 Multiple Vulnerabilities (APSB12-27) NASL family Windows NASL id SMB_KB2785605.NASL description The remote host is missing KB2785605. It may, therefore, be affected by the following vulnerabilities related to the installed version of the Adobe Flash ActiveX control : - An unspecified error exists that could allow a buffer overflow and arbitrary code execution. (CVE-2012-5676) - An unspecified error exists that could allow an integer overflow and arbitrary code execution. (CVE-2012-5677) - An unspecified error exists that could lead to memory corruption and arbitrary code execution. (CVE-2012-5678) last seen 2020-06-01 modified 2020-06-02 plugin id 63231 published 2012-12-11 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63231 title MS KB2785605: Update for Vulnerabilities in Adobe Flash Player in Internet Explorer 10 NASL family Windows NASL id GOOGLE_CHROME_23_0_1271_97.NASL description The version of Google Chrome installed on the remote host is earlier than 23.0.1271.97 and is, therefore, affected by the following vulnerabilities : - Use-after-free errors exist related to visibility events and the URL loader. (CVE-2012-5139, CVE-2012-5140) - An unspecified error exists related to instantiation of the last seen 2020-06-01 modified 2020-06-02 plugin id 63232 published 2012-12-12 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63232 title Google Chrome < 23.0.1271.97 Multiple Vulnerabilities NASL family MacOS X Local Security Checks NASL id MACOSX_ADOBE_AIR_3_5_0_890.NASL description According to its version, the instance of Adobe AIR 3.x on the remote Mac OS X host is 3.5.0.600 or earlier. It is, therefore, reportedly affected by multiple vulnerabilities : - An unspecified error exists that can allow a buffer overflow and arbitrary code execution. (CVE-2012-5676) - An unspecified error exists that can allow an integer overflow and arbitrary code execution. (CVE-2012-5677) - An unspecified error exists that can lead to memory corruption and arbitrary code execution. (CVE-2012-5678) last seen 2020-06-01 modified 2020-06-02 plugin id 63243 published 2012-12-12 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/63243 title Adobe AIR for Mac 3.x <= 3.5.0.600 Multiple Vulnerabilities (APSB12-27) NASL family Gentoo Local Security Checks NASL id GENTOO_GLSA-201309-06.NASL description The remote host is affected by the vulnerability described in GLSA-201309-06 (Adobe Flash Player: Multiple vulnerabilities) Multiple unspecified vulnerabilities have been discovered in Adobe Flash Player. Please review the CVE identifiers referenced below for details. Impact : A remote attacker could entice a user to open specially crafted SWF content, possibly resulting in execution of arbitrary code with the privileges of the process or a Denial of Service condition. Furthermore, a remote attacker may be able to bypass access restrictions. Workaround : There is no known workaround at this time. last seen 2020-06-01 modified 2020-06-02 plugin id 69889 published 2013-09-14 reporter This script is Copyright (C) 2013-2018 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/69889 title GLSA-201309-06 : Adobe Flash Player: Multiple vulnerabilities NASL family SuSE Local Security Checks NASL id SUSE_11_FLASH-PLAYER-121213.NASL description This version upgrade of flash-player fixed multiple unspecified code execution vulnerabilities. last seen 2020-06-05 modified 2013-01-25 plugin id 64142 published 2013-01-25 reporter This script is Copyright (C) 2013-2020 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/64142 title SuSE 11.2 Security Update : flash-player (SAT Patch Number 7150)
Redhat
rpms |
|
References
- http://lists.opensuse.org/opensuse-security-announce/2013-01/msg00014.html
- http://lists.opensuse.org/opensuse-security-announce/2013-01/msg00014.html
- http://lists.opensuse.org/opensuse-security-announce/2013-02/msg00033.html
- http://lists.opensuse.org/opensuse-security-announce/2013-02/msg00033.html
- http://www.adobe.com/support/security/bulletins/apsb12-27.html
- http://www.adobe.com/support/security/bulletins/apsb12-27.html