The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-55780

CVE-2025-55780: Artifex MuPDF Buffer Overflow Vulnerability

CVE-2025-55780 is a buffer overflow flaw in Artifex MuPDF 1.26.4 that causes crashes when rendering malformed EPUB documents. This article covers technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2025-55780 Overview

A null pointer dereference vulnerability exists in MuPDF 1.26.4, specifically within the break_word_for_overflow_wrap() function used during EPUB document rendering. When processing a malformed EPUB document, the function calls fz_html_split_flow() to split a FLOW_WORD node but fails to validate whether node->next is a valid pointer before accessing node->next->overflow_wrap. This results in a crash if the split operation fails or returns an incomplete node chain.

Critical Impact

Processing malicious EPUB files can crash applications using MuPDF, causing denial of service conditions in document viewers, readers, and any software embedding the MuPDF library.

Affected Products

  • Artifex MuPDF 1.26.4
  • Applications embedding MuPDF for EPUB rendering
  • Document processing systems utilizing MuPDF library

Discovery Timeline

  • 2025-09-23 - CVE-2025-55780 published to NVD
  • 2025-10-08 - Last updated in NVD database

Technical Details for CVE-2025-55780

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference), a memory corruption flaw that occurs when an application attempts to dereference a pointer that is expected to be valid but is actually NULL.

The vulnerable code path exists in the EPUB rendering engine of MuPDF, specifically in the text layout and word wrapping functionality. When the break_word_for_overflow_wrap() function processes text nodes that need to be split for overflow wrapping purposes, it calls fz_html_split_flow() to divide a FLOW_WORD node into smaller segments.

The core issue is a missing validation check: after the split operation completes, the code immediately accesses node->next->overflow_wrap without first verifying that node->next points to a valid node structure. In scenarios where the split fails or produces an incomplete node chain (such as when processing malformed EPUB content), this unchecked access triggers a null pointer dereference, causing an immediate application crash.

Root Cause

The root cause is insufficient input validation and missing null pointer checks in the HTML/EPUB rendering flow control logic. The fz_html_split_flow() function can return partial or empty node chains under certain malformed input conditions, but the calling code in break_word_for_overflow_wrap() assumes the operation always succeeds and produces valid linked list structures.

Attack Vector

This vulnerability can be exploited remotely without authentication. An attacker can craft a malicious EPUB file with specially constructed content that triggers the vulnerable code path during rendering. When a user opens this malformed document using any application that relies on MuPDF for EPUB processing, the null pointer dereference occurs, crashing the application.

The attack scenario requires user interaction (opening a malicious file), but the crafted EPUB can be distributed through various channels including email attachments, websites, or file sharing platforms. Since this is a denial of service vulnerability affecting availability, it does not enable arbitrary code execution or data theft, but can disrupt document viewing workflows and potentially be used in targeted attacks against specific users or systems.

Technical details and proof-of-concept materials are available through the GitHub PoC repository referenced in the vulnerability disclosure.

Detection Methods for CVE-2025-55780

Indicators of Compromise

  • Application crashes when opening specific EPUB files
  • Crash dumps showing null pointer dereference in break_word_for_overflow_wrap() function
  • Repeated segmentation faults in processes using MuPDF library during document rendering

Detection Strategies

  • Monitor for application crashes in document viewers and EPUB readers that utilize MuPDF
  • Implement file inspection for malformed EPUB structures before processing
  • Deploy application stability monitoring for MuPDF-dependent services

Monitoring Recommendations

  • Enable crash reporting and analysis for applications using MuPDF library
  • Log and alert on repeated document rendering failures from the same source
  • Monitor for unusual EPUB file characteristics in email gateways and file upload systems

How to Mitigate CVE-2025-55780

Immediate Actions Required

  • Update MuPDF to a patched version that includes the fix from commit bdd5d241748807378a78a622388e0312332513c5
  • Restrict processing of untrusted EPUB files until patches are applied
  • Implement file type filtering to quarantine suspicious EPUB documents

Patch Information

Artifex has addressed this vulnerability through a code commit that adds proper null pointer validation before accessing node->next->overflow_wrap. The fix is available in the MuPDF commit bdd5d2417488.

Organizations should review the Ghostscript Bug Report #708720 for additional details on the vulnerability and patch verification.

Workarounds

  • Disable EPUB rendering functionality if not required in your deployment
  • Use alternative document viewers for untrusted EPUB content until MuPDF is updated
  • Implement input sanitization and validation for EPUB files before processing with MuPDF
  • Consider sandboxing MuPDF-based applications to limit crash impact on system stability

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechArtifex Mupdf

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • Ghostscript Bug Report #708720

  • MuPDF Commit bdd5d2417488

  • GitHub PoC for CVE-2025-55780
  • Related CVEs
  • CVE-2026-7233: Artifex MuPDF Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English