- The Mess: Adobe patched two critical Acrobat Reader vulnerabilities involving use-after-free memory corruption. Both can lead to arbitrary code execution.
- The Damage: A malicious PDF can turn a normal document-opening operation into code execution on the victim’s machine.
- The Fix: Install Adobe’s September 2026 Acrobat and Reader security update immediately.
PDF files are supposed to be boring.
Open one. Read it. Close it.
Acrobat keeps proving that the format can still be an excellent delivery mechanism for memory corruption.
Adobe’s September security update addresses two critical vulnerabilities in Acrobat Reader:
- CVE-2026-81973 — use-after-free in the DigSig component
- CVE-2026-81976 — use-after-free in the Annotation component
Both vulnerabilities carry a CVSS 7.8 score and can result in arbitrary code execution.
The PDF Is the Attack Surface
Neither vulnerability requires an exposed network service.
The attacker needs something much simpler: a victim willing to interact with a malicious PDF.
That makes the attack model particularly practical.
The document can arrive through email, a messaging platform, a download, a shared drive or a compromised website.
Once opened by a vulnerable Acrobat installation, specially crafted PDF content can trigger memory corruption inside the application.
The attacker doesn’t need the user to install an executable.
The PDF is the payload.
CVE-2026-81973: DigSig
The first vulnerability sits in Acrobat’s Digital Signatures functionality.
It is a use-after-free condition.
The underlying problem occurs when Acrobat continues to operate on memory after the object occupying that memory has already been released.
If an attacker can control the relevant document structures, that can turn an application crash into something considerably more useful.
Adobe rates the vulnerability as critical and capable of arbitrary code execution.
CVE-2026-81976: Annotations
The second flaw affects Acrobat’s Annotation functionality.
Again, the weakness is a use-after-free.
PDF annotations are not simply static pixels. They can contain structured objects, metadata and interactive behavior that Acrobat has to parse and manipulate.
That creates another memory-management attack surface.
A malicious document can abuse the vulnerable processing path and potentially gain execution inside the Acrobat process.
Why Use-After-Free Bugs Matter
Use-after-free vulnerabilities are particularly valuable in native applications.
The basic failure looks simple:
- an object is allocated;
- the object is released;
- another part of the program still references it;
- the freed memory gets reused;
- attacker-controlled data can influence what the program now treats as the original object.
Turning that into reliable RCE usually requires additional heap manipulation and careful control over program state.
That’s attacker work.
The defender’s job is easier.
Patch the application.
User Interaction Is Still Required
These aren’t remote, unauthenticated Acrobat server vulnerabilities.
The victim has to open or otherwise interact with malicious content.
That lowers the theoretical attack surface compared with an Internet-facing RCE.
It doesn’t eliminate the operational risk.
PDF files remain one of the most common formats exchanged between businesses, customers, suppliers and government institutions.
A phishing email containing invoice.pdf doesn’t look suspicious enough to many users.
The attacker only needs one successful opening.
Check More Than Acrobat.exe
Enterprises should not limit remediation to machines where users actively launch Acrobat.
Acrobat and Reader are frequently integrated into document-management workflows, browsers, email environments and automated document-processing systems.
Inventory:
- Acrobat Reader installations;
- Acrobat desktop installations;
- managed Creative Cloud deployments;
- systems automatically opening or converting PDF documents;
- shared workstations used for document processing.
Then verify the installed build against Adobe’s September 2026 security update.
Adobe has published the corresponding security bulletin and recommends applying the available updates.
Bugstoday Opinion
The PDF format has survived decades of security research because every new feature adds another parser, object type or processing path.
Digital signatures and annotations sound harmless.
Inside a native PDF reader, they’re executable complexity.
Two fresh use-after-free bugs in separate Acrobat components are another reminder that attackers don’t need a spectacular zero-day chain when a victim will happily open invoice.pdf.
Patch Acrobat.
Then stop assuming that a PDF is just a document.
Today’s Bugs. Tomorrow’s Breaches.
Technical Sources
Adobe — September 2026 Security Update for Acrobat and Reader
CVE.org / MITRE — CVE-2026-81973
CVE.org / MITRE — CVE-2026-81976
TrendAI Zero Day Initiative — Adobe Acrobat security research




