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
    • 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-2026-25920

CVE-2026-25920: SumatraPDF Buffer Overflow Vulnerability

CVE-2026-25920 is a heap out-of-bounds read vulnerability in SumatraPDF's MOBI decompressor that can crash the application. This article covers the technical details, affected versions, impact, and mitigation steps.

Published: February 13, 2026

CVE-2026-25920 Overview

CVE-2026-25920 is an Out-of-Bounds Read vulnerability affecting SumatraPDF, a popular multi-format document reader for Windows. In versions 3.5.2 and earlier, a heap out-of-bounds read vulnerability exists in SumatraPDF's MOBI HuffDic decompressor. The bounds check in AddCdicData() only validates half the range that DecodeOne() actually accesses, creating a dangerous security gap.

When a user opens a specially crafted .mobi file, the application can read nearly (1 << codeLength) bytes beyond the CDIC dictionary buffer, leading to an application crash. This vulnerability requires user interaction to exploit, as the victim must open a malicious MOBI file.

Critical Impact

Opening a maliciously crafted MOBI file can cause SumatraPDF to crash due to heap out-of-bounds memory access, potentially exposing sensitive memory contents or causing denial of service.

Affected Products

  • SumatraPDF version 3.5.2 and earlier (Windows)
  • MOBI file format processing component
  • HuffDic decompressor module in MobiDoc.cpp

Discovery Timeline

  • 2026-02-09 - CVE CVE-2026-25920 published to NVD
  • 2026-02-11 - Last updated in NVD database

Technical Details for CVE-2026-25920

Vulnerability Analysis

This vulnerability stems from an incomplete bounds validation in the MOBI file format parser within SumatraPDF. The HuffDic (Huffman Dictionary) decompression routine used for processing MOBI e-book files contains a flaw in how it validates buffer boundaries before accessing dictionary data.

The AddCdicData() function performs bounds checking, but the validation only covers approximately half of the memory range that DecodeOne() subsequently accesses during decompression operations. This mismatch between the validated range and the actual accessed range creates an exploitable condition where memory beyond the allocated CDIC dictionary buffer can be read.

When processing a malformed MOBI file with carefully crafted dictionary entries, the decompressor can be tricked into reading up to (1 << codeLength) bytes beyond the legitimate buffer boundary. This heap-based out-of-bounds read typically results in an application crash, though it could potentially be leveraged to leak sensitive information from adjacent memory regions.

Root Cause

The root cause is CWE-125 (Out-of-bounds Read), specifically an insufficient bounds check in the AddCdicData() function within the MOBI document processing code. The function validates only a portion of the memory range that will be accessed during subsequent decoding operations, allowing DecodeOne() to access memory outside the allocated buffer boundaries.

The vulnerability exists in the MobiDoc.cpp source file where the CDIC dictionary data handling occurs.

Attack Vector

The attack requires local access with user interaction. An attacker must craft a malicious MOBI file and convince the victim to open it using SumatraPDF. The attack flow involves:

  1. Attacker creates a specially crafted .mobi file with malformed CDIC dictionary entries
  2. The crafted file manipulates codeLength values to maximize out-of-bounds read distance
  3. Victim opens the malicious file in SumatraPDF 3.5.2 or earlier
  4. During HuffDic decompression, DecodeOne() reads beyond the allocated buffer
  5. Application crashes or potentially leaks memory contents

The vulnerability mechanism involves improper boundary validation in the dictionary decompression routine. For technical implementation details, refer to the GitHub Security Advisory GHSA-5mwx-65x7-cffp and the associated commit fix.

Detection Methods for CVE-2026-25920

Indicators of Compromise

  • Unexpected SumatraPDF crashes when opening MOBI files
  • Memory access violations or heap corruption errors in crash dumps referencing MobiDoc.cpp or HuffDic functions
  • Suspicious .mobi files received via email or downloaded from untrusted sources
  • Process crash events with exception codes indicating heap out-of-bounds access

Detection Strategies

  • Monitor for SumatraPDF process crashes and analyze crash dumps for memory access violations in the MOBI parsing code path
  • Implement file inspection rules to identify potentially malicious MOBI files with abnormal CDIC dictionary structures
  • Use endpoint detection and response (EDR) solutions to track SumatraPDF behavior and detect exploitation attempts
  • Deploy application allowlisting to control which document readers can process MOBI files in enterprise environments

Monitoring Recommendations

  • Enable Windows Error Reporting to capture crash telemetry for SumatraPDF instances across the organization
  • Configure SIEM alerts for repeated SumatraPDF crashes that may indicate exploitation attempts
  • Monitor network traffic for MOBI file downloads from suspicious or untrusted sources
  • Implement user behavior analytics to detect unusual document access patterns involving MOBI files

How to Mitigate CVE-2026-25920

Immediate Actions Required

  • Update SumatraPDF to the latest version that includes the security fix
  • Warn users against opening MOBI files from untrusted or unknown sources
  • Consider temporarily blocking or quarantining MOBI file attachments in email gateways until patching is complete
  • Review recent MOBI file access logs for potential exploitation attempts

Patch Information

The SumatraPDF development team has addressed this vulnerability in a security commit that corrects the bounds checking in the AddCdicData() function. Users should update to the latest available version of SumatraPDF that includes this fix.

For detailed vulnerability information, refer to the GitHub Security Advisory GHSA-5mwx-65x7-cffp.

Workarounds

  • Disable or avoid opening MOBI files in SumatraPDF until the patched version is deployed
  • Use alternative e-book readers that are not affected by this vulnerability for MOBI file viewing
  • Implement email attachment filtering to block or scan MOBI files before delivery to end users
  • Configure application control policies to prevent execution of vulnerable SumatraPDF versions
bash
# Configuration example
# Block MOBI file associations for vulnerable SumatraPDF versions (Windows Registry)
# Remove SumatraPDF association with .mobi files until patched
reg delete "HKEY_CURRENT_USER\Software\Classes\.mobi" /f
# Alternatively, use Group Policy to restrict SumatraPDF execution
# until update deployment is complete

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechSumatrapdf

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • GitHub Source Code File

  • GitHub Commit Update

  • GitHub Security Advisory GHSA-5mwx-65x7-cffp
  • Related CVEs
  • CVE-2026-25880: SumatraPDF RCE Vulnerability

  • CVE-2026-25961: SumatraPDF RCE Vulnerability

  • CVE-2026-23951: SumatraPDF DOS Vulnerability

  • CVE-2026-23512: SumatraPDF RCE Vulnerability
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