How to Fix CVE-2013-0643: Security Vulnerability in Flash Player
By Sai Kiran Pandrala
| Severity | CVSS 8.8 - High |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2024-09-17) |
| Affected | Flash Player (see advisory for affected versions) |
| Fixed in | See vendor advisory |
| Type (CWE) | Not verified - see official advisory |
Patch immediately. CISA added CVE-2013-0643 to the Known Exploited Vulnerabilities catalog on 2024-09-17. Federal civilian agencies must remediate by 2024-10-08. Treat every internet-reachable instance as a priority patch.
What is CVE-2013-0643?
CVE-2013-0643 is a Security Vulnerability flaw in Adobe Flash Player. It carries a CVSS base score of 8.8 (high). CISA confirmed real-world exploitation by adding it to the Known Exploited Vulnerabilities catalog on 2024-09-17.
From the source record: The Firefox sandbox in Adobe Flash Player before 10.3.183.67 and 11.x before 11.6.602.171 on Windows and Mac OS X, and before 10.3.183.67 and 11.x before 11.2.202.273 on Linux, does not properly restrict privileges, which makes it easier for remote attackers to execute arbitrary code via crafted SWF content, as exploited in the wild in February 2013.
Why it matters in practice: KEV-listed CVEs draw continuous internet-wide scanning. Any unpatched, internet-reachable installation is on borrowed time. The blast radius depends on how the affected service is exposed. An internet-facing instance with no compensating controls is the highest-risk configuration.
Am I affected?
You are affected if your installation of Flash Player matches a version listed in the Affected row above.
On the desktop client, open Help -> About to read the installed version. From a shell:
Get-CimInstance Win32_Product | Where-Object Name -like "*Flash Player*" | Select-Object Name, Version
How to fix CVE-2013-0643
Apply the vendor patch. Target the patched build listed on the vendor advisory. The runnable command set below covers the most common deployment patterns for Flash Player.
Adobe (Windows, silent install)
# Vendor advisory: https://www.adobe.com/products/flashplayer/end-of-life-alternative.html#eol-alternative-faq
# Download the patched MSP from the Adobe advisory then:
msiexec.exe /update "AcrobatDCUpd<patched>.msp" /qn /norestart
Get-ItemProperty "HKLM:\Software\Adobe\Acrobat Reader\DC\Installer" | Select-Object Version
Adobe (macOS)
Open the application and choose Help -> Check for Updates, or use Adobe Remote Update Manager:
sudo /Applications/Utilities/Adobe\ Application\ Manager/CCLibrary/CCLibrary.app/Contents/MacOS/RemoteUpdateManager --action=install
After applying the patch
- Restart the service or device so the patched binary loads.
- Confirm the running version matches the Fixed in row using the verification command below.
- Rotate credentials and API keys that the affected service could access if the asset was exposed during the disclosure window.
If you can't patch immediately
Until the patch lands, narrow the attack surface with these runnable controls.
Reduce the attack surface
Restrict network reach to the affected service to the smallest set of hosts that must access it. On Linux:
# Vendor advisory: https://www.adobe.com/products/flashplayer/end-of-life-alternative.html#eol-alternative-faq
sudo iptables -A INPUT -p tcp --dport <service-port> -s 10.10.10.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport <service-port> -j DROP
On Windows:
# Vendor advisory: https://www.adobe.com/products/flashplayer/end-of-life-alternative.html#eol-alternative-faq
New-NetFirewallRule -DisplayName "Block CVE-2013-0643 inbound" -Direction Inbound -Action Block -Protocol TCP -LocalPort <service-port>
Mitigations are temporary. Apply the vendor patch as soon as a maintenance window opens.
How to verify the fix worked
Confirm the patched build is the one actually running.
Run the product's --version or about command and compare against the Fixed in row (See vendor advisory). Re-run an authenticated vulnerability scan and confirm the scanner no longer flags CVE-2013-0643.
Also worth doing: pull recent log windows for any indicators of compromise listed in the vendor advisory, and re-run an authenticated vulnerability scan with up-to-date signatures.
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2013-3346: Out-of-bounds write in Adobe Reader — Out-of-bounds write in Adobe Reader
- How to Fix CVE-2013-0641: Buffer copy without checking size of in Adobe Reader — Buffer copy without checking size of in Adobe Reader
- How to Fix CVE-2013-0631: n/a in Adobe ColdFusion , n/a in Adobe ColdFusion
- How to Fix CVE-2013-0640: Out-of-bounds write in Adobe Reader , Out-of-bounds write in Adobe Reader
- How to Fix CVE-2013-0629: n/a in Adobe ColdFusion , n/a in Adobe ColdFusion
Is CVE-2013-0643 being exploited in the wild?
Yes. CISA added CVE-2013-0643 to the Known Exploited Vulnerabilities catalog on 2024-09-17. KEV listing means at least one confirmed real-world exploitation report exists.
Do I have to take downtime to patch?
For most Adobe Flash Player deployments, the patched build needs a service restart or device reboot. HA pairs and clusters can roll the upgrade by patching the standby first, failing over, then patching the former primary.
Will a WAF or IDS rule alone close CVE-2013-0643?
No. Network filters cut down opportunistic scans but they do not remove the flaw. The vendor patch is the only durable fix.
How quickly should I act on CVE-2013-0643?
Within the standard patch cycle if the asset is internal-only. Inside one to two weeks for any internet-facing instance, sooner if compensating controls are not in place.
References
- Official vendor advisory: https://www.adobe.com/products/flashplayer/end-of-life-alternative.html#eol-alternative-faq
- NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2013-0643
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- CISA KEV entry: "Adobe Flash Player Incorrect Default Permissions Vulnerability" - added 2024-09-17, due 2024-10-08
- Additional reference: http://lists.opensuse.org/opensuse-security-announce/2013-02/msg00025.html
- Additional reference: http://lists.opensuse.org/opensuse-security-announce/2013-02/msg00026.html
- Additional reference: http://lists.opensuse.org/opensuse-security-announce/2013-02/msg00035.html
- Additional reference: http://rhn.redhat.com/errata/RHSA-2013-0574.html
*Assembled from the official vendor advisory, the NVD record, and the CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*