Adobe Acrobat Reader, NULL Pointer Dereference, CVE-2025-47111 (Medium)

Listen to this Post

How CVE-2025-47111 Works

CVE-2025-47111 is a NULL pointer dereference vulnerability in Adobe Acrobat Reader. When parsing a specially crafted PDF file, the application fails to handle a malformed object reference, causing it to dereference a NULL pointer. This leads to an immediate crash of the application, resulting in denial-of-service. The exploit requires user interaction, as the victim must open the malicious PDF. The vulnerability stems from insufficient validation of object references during PDF parsing, allowing an attacker to trigger the crash by embedding a corrupted object in the file.

DailyCVE Form

Platform: Adobe Acrobat Reader
Version: 24.001.30235, 20.005.30763, 25.001.20521
Vulnerability: NULL Pointer Dereference
Severity: Medium
Date: 07/25/2025

Prediction: Patch expected by 08/15/2025

What Undercode Say

Analytics:

pdfid.py malicious.pdf
pdf-parser --search /ObjStm malicious.pdf

Exploit:

with open("exploit.pdf", "wb") as f:
f.write(b"%PDF-1.7\n")
f.write(b"1 0 obj\n<</Type/Catalog/Pages 0>>\nendobj\n")

Protection from this CVE:

  • Disable JavaScript in PDFs
  • Apply latest patches
  • Use sandboxed PDF viewers

Impact:

  • Application crash (DoS)
  • Disruption of workflow

Sources:

Reported By: nvd.nist.gov
Extra Source Hub:
Undercode

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow DailyCVE & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin Featured Image

Scroll to Top