Skip to main content
Live Webinar with SANS (June 25)— Agentic CTI Automation for Fun & ProfitRegister Free
Mallory
HighCISA KEVExploited in the wildPublic exploit

Prototype Pollution RCE in Adobe Acrobat and Reader

IdentifiersCVE-2026-34621CWE-1321· Improperly Controlled Modification…

CVE-2026-34621 is a critical prototype pollution vulnerability in Adobe Acrobat and Adobe Reader. Adobe states that Acrobat Reader versions 24.001.30356 and earlier and 26.001.21367 and earlier are affected; supporting content also indicates affected Acrobat DC/Reader DC Continuous 26.001.21367 and earlier and Acrobat 2024 Classic 24.001.30356 and earlier on Windows and macOS. The flaw is classified as CWE-1321, Improperly Controlled Modification of Object Prototype Attributes. A remote attacker can deliver a crafted malicious PDF containing attacker-controlled JavaScript that pollutes prototype attributes in the Acrobat JavaScript environment, altering downstream execution logic and enabling arbitrary code execution in the context of the current user when the file is opened. Multiple sources in the content state the issue was exploited in the wild as a zero-day before patching. Some supporting reporting attributes exploitation to abuse of privileged Acrobat JavaScript APIs after prototype manipulation, but Adobe’s public description is limited to prototype pollution leading to arbitrary code execution.

Share:
For your environment

Are you exposed to this one?

Mallory correlates every CVE against your assets, your vendors, and active adversary campaigns. Know which vulnerabilities matter for you, not just which ones are loud.

ANALYST BRIEF

Impact, mitigation & remediation

What it means. What to do now. Patch path, mitigations, and the assume-compromise checklist.

Impact

What an attacker gets, and what they’ve been doing with it.

Successful exploitation can result in arbitrary code execution in the security context of the logged-in user. Supporting reporting also indicates the exploit may enable access to privileged Acrobat JavaScript APIs, local file access and exfiltration, malware delivery, persistence, credential theft, and follow-on activity such as lateral movement, subject to the privileges of the compromised user. Because the vulnerability was reportedly exploited in the wild, the practical impact includes full compromise of the user session and installation of additional payloads from a malicious PDF.

Mitigation

If you can’t patch tonight, do this now.

If immediate patching is not possible, reduce exposure by preventing users from opening untrusted PDF files, routing inbound PDFs through detonation/sandbox analysis at mail and web gateways, disabling Acrobat JavaScript where operationally feasible, enforcing least privilege on endpoints, and monitoring for suspicious Acrobat/Reader child-process creation, unexpected network egress, and anomalous PDF-driven activity. These are interim risk-reduction measures only; patching is the primary corrective action.

Remediation

Patch, then assume compromise.

Apply Adobe’s security updates referenced in APSB26-43. Supporting content indicates fixed versions include 26.001.21411 for Acrobat DC/Reader DC Continuous, 24.001.30362 for Acrobat 2024 Classic on Windows, and 24.001.30360 for Acrobat 2024 Classic on macOS. Upgrade all affected Acrobat and Reader installations to these versions or later and prioritize emergency deployment because the vulnerability has been reported as actively exploited in the wild.
PUBLIC EXPLOITS

Exploits

4 valid exploits after Mallory filtered fakes, detection scripts, and README-only repos (4 hidden).

VALID 4 / 8 TOTALView more in app
CVE-2026-3462MaturityPoCVerified exploit

This repository is a standalone Python exploit generator, not tied to a major exploitation framework. It contains two identical Python scripts (`poc.py` and `cve_2026_34621_advanced/cve_2026_34621_advanced.py`) plus top-level and subdirectory README files. The main purpose is to generate a malicious PDF that embeds JavaScript intended to exploit CVE-2026-34621 in Adobe Acrobat/Reader via prototype pollution leading to sandbox escape and arbitrary command execution. Repository structure is simple: the root README gives a short description; the detailed README documents installation, CLI options, usage examples, affected versions, and attack flow; the Python script implements the generator. The code imports standard Python libraries plus optional `PyPDF2` for lure-PDF merging. Visible code sections show helper utilities for polymorphism/randomization, a multi-level JavaScript obfuscator, payload generation flow, PDF building, and report generation. The script accepts command-line options for output file, Windows/macOS commands, stage URL, persistence, obfuscation level, delay, hostname keying, lure PDF path, trigger type, and report suppression. Main exploit capabilities described by the code and documentation include: generating PDF-embedded JavaScript, OS auto-detection, Windows/macOS-specific execution paths, optional staged payload download from a remote URL, optional persistence installation, optional lure PDF merging, multiple trigger vectors (`openaction`, `pageopen`, `doclevel`), and HTML/TXT/JSON reporting. The exploit is operational rather than a mere PoC because it provides configurable payload delivery and persistence features, though it is still a standalone generator rather than a framework-integrated weaponized module. Fingerprintable observables are mostly example endpoints and execution artifacts from the README: staged payload URLs (`http://10.0.0.5/shell.ps1`, `http://192.168.1.100/payload.exe`, `http://10.0.0.5/mac_payload.sh`), reverse-shell endpoint `10.0.0.5:4444`, macOS application paths, `/bin/sh`, Windows execution components (`cmd.exe`, PowerShell, WScript.Shell), and persistence locations such as the Windows Run registry key and macOS LaunchAgents directory. Because the Python source was truncated in the provided content, some exact embedded strings from the payload generator cannot be fully verified from code alone, but the repository clearly implements an exploit generator rather than a detector or benign demo.

open-flawDisclosed Apr 20, 2026pythonmarkdownfilelocal
CVE-2026-34621MaturityPoCVerified exploit

This repository is a small, self-contained research PoC for an Adobe Acrobat exploit chain centered on malicious PDF JavaScript execution and post-exploitation file theft. It contains 4 files: a Python PDF generator (CVE-2026-34621.py), a Python HTTP collection server (c2.py), the main Acrobat JavaScript payload (payload_steal.js), and documentation (ReadMe.md). The main exploit flow is: the operator embeds payload_steal.js into a PDF using CVE-2026-34621.py; the generated PDF sets /OpenAction to a JavaScript action so code runs when the document is opened; the JavaScript then abuses Acrobat-specific internal functions and trust mechanisms to obtain privileged execution; finally it reads a local Windows file and exfiltrates it over HTTP in chunks. CVE-2026-34621.py is not itself the vulnerability trigger beyond embedding arbitrary JavaScript into a PDF. It is a helper utility that reads an external JS file, escapes it for PDF syntax, and writes a minimal PDF object structure with /OpenAction pointing to a /JavaScript action. This makes it the delivery builder for the exploit document. payload_steal.js contains the actual exploit logic. It defines a privileged file-stealing routine using app.beginPriv(), util.readFileIntoStream(), and app.launchURL(). It hardcodes the victim file path /C/Windows/System32/drivers/etc/hosts and exfiltrates the resulting hex data to http://192.168.56.1:45191/exfil. The script also contains the exploit chain primitives described in the README: injection through ANFancyAlertImpl with a crafted button key, prototype pollution using Object.prototype.__defineGetter__('swConn', ...), trusted function registration via app.trustedFunction.bind, fake object methods for path processing, and invocation of ANShareFile/SilentDocCenterLogin to redirect privileged workflow execution. c2.py is a simple operational support component rather than the exploit itself. It listens on 0.0.0.0:45191, accepts GET requests to /exfil, reconstructs chunked hex data into binary, and saves recovered files under exfiltrated_files/. It prints progress and validates whether the recovered file begins with a PDF header. Overall, this is a real exploit PoC repository rather than a detector. It demonstrates a file-based attack vector against vulnerable Adobe Acrobat Reader environments, with a hardcoded but functional payload and a matching receiver, making it operational rather than a bare conceptual proof.

azefzafyoussefDisclosed May 12, 2026pythonjavascriptfileweblocal
CVE-2026-3462MaturityPoCVerified exploit

Repository contains a Python-based exploit generator rather than a simple detector. There are 4 files total: a top-level README, a subdirectory README, and two identical Python scripts (poc.py and cve_2026_34621_advanced/cve_2026_34621_advanced.py, both ~35 KB). The Python script is the main entry point and presents itself as an 'Advanced Cross-Platform Exploit Generator' for CVE-2026-34621 affecting Adobe Acrobat/Reader. The script structure, based on visible code and documentation, includes: utility helpers for randomization/polymorphism; a JavaScript obfuscator supporting multiple levels including string-to-charcode conversion, junk/dead-code insertion, and base64 wrapping; a payload generator that builds OS-aware JavaScript for Windows/macOS execution; a PDF generator that embeds the JavaScript into a PDF with selectable trigger vectors; optional lure PDF merging using PyPDF2; and a report generator that emits HTML/TXT/JSON artifacts describing the generated payload/configuration. Primary exploit capability is malicious PDF generation for file-based delivery. The generated PDF is intended to exploit Adobe JavaScript prototype pollution and claimed sandbox escape to reach privileged APIs and execute attacker-controlled system commands. The repository advertises Windows execution through cmd.exe, PowerShell, and WScript.Shell, and macOS execution through Terminal.app or osascript. It also supports optional staged payload retrieval from a remote URL, execution delay, hostname/environment keying, persistence installation, and obfuscation to hinder analysis. Fingerprintable observables are mostly examples in documentation rather than hardcoded C2: sample staging URLs (http://10.0.0.5/shell.ps1, http://192.168.1.100/payload.exe, http://10.0.0.5/mac_payload.sh), a reverse-shell callback endpoint (10.0.0.5:4444), example local file paths for Calculator.app and lure PDFs, and claimed persistence locations including the Windows Run registry key and macOS LaunchAgents directory. No evidence in the provided excerpt suggests a fixed attacker-controlled infrastructure embedded in the code itself; payload endpoints appear operator-supplied via CLI options such as --stage. Overall, this is an operational exploit builder with configurable payloads and delivery options, not merely a proof-of-concept or scanner.

dajneem23Disclosed Apr 20, 2026pythonmarkdownfilelocalweb
cve_2026_34621_advancedMaturityPoCVerified exploit

Repository contains a single substantive Python script, cve_2026_34621_advanced.py, plus a README. The script is an exploit generator rather than a direct network exploit: it builds a malicious PDF intended to trigger claimed CVE-2026-34621 in Adobe Acrobat/Reader via embedded JavaScript. Based on the visible code and README, the workflow is: parse CLI options, generate a cross-platform JavaScript payload, optionally obfuscate it with polymorphic techniques, embed it into a PDF with selectable trigger vectors, optionally merge with a lure PDF using PyPDF2, then write the PDF and produce HTML/TXT/JSON reports. Main capabilities described in the repository include Windows/macOS command execution, staged payload retrieval from attacker-controlled URLs, optional persistence, execution delay, hostname/environment keying, and multiple JavaScript obfuscation levels. The README explicitly documents offensive examples such as PowerShell download-and-execute, curl|bash, and a Python reverse shell callback to 10.0.0.5:4444. The code excerpt confirms supporting components such as RandomUtils, JavaScriptObfuscator, PayloadGenerator, PDFGenerator, ReportGenerator, and a main() routine orchestrating payload generation and file output. Attack vector is primarily file-based: the operator generates a malicious PDF and delivers it to a victim, who must open it in a vulnerable Adobe product. A secondary web/network aspect exists when staged payload URLs are used by the embedded commands. No evidence suggests this is merely a detector or README-only repository. Although the provided code is truncated, the repository appears operational as a PDF exploit generator with configurable payload execution rather than a simple proof-of-concept trigger.

NULL200OKDisclosed Apr 15, 2026pythonmarkdownfileweb
EXPOSURE SURFACE

Affected products & vendors

Products and vendors Mallory has correlated with this vulnerability. Open in Mallory to drill down to specific CPE configurations and version ranges.

VendorProductType
AdobeAcrobatapplication
AdobeAcrobat Dcapplication
AdobeAcrobat Readerapplication
AdobeAcrobat Reader Dcapplication

Vendor-confirmed product mapping. Mallory continuously reconciles this list against your asset inventory.

ACTIVITY FEED

Recent activity

213 sources tracked across advisories, community write-ups, and news. New activity surfaces here as Mallory finds it.

What this page doesn’t show

The version that knows your environment.

This page is what’s public. Mallory adds the parts that aren’t: which of your assets are affected, which adversaries are exploiting it right now, which detections to deploy, and what to do tonight.
Exposure mapping

Query your assets running an affected version, and investigate the blast radius.

Threat actor evidence

Every observed campaign linking this CVE to a named adversary.

Associated malware1

Malware families riding this exploit, with evidence and IOCs.

Detection signatures3

YARA, Sigma, Snort, and vendor rules, auto-deployed to your SIEM.

Vendor-by-vendor mapping

Cross-references every affected SKU, including bundled OEM variants.

Social activity176

Community discussion across Reddit, Mastodon, and other social sources.