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-2024-56378

CVE-2024-56378: Poppler Out-of-Bounds Read Vulnerability

CVE-2024-56378 is an out-of-bounds read flaw in Freedesktop Poppler's JBIG2Bitmap::combine function that could allow attackers to access sensitive memory. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-56378 Overview

CVE-2024-56378 is an out-of-bounds read vulnerability discovered in libpoppler.so, a widely-used PDF rendering library. The vulnerability exists within the JBIG2Bitmap::combine function in JBIG2Stream.cc, affecting Poppler versions through 24.12.0. This memory safety issue could allow attackers to read data beyond allocated buffer boundaries when processing specially crafted PDF documents containing malicious JBIG2 image streams.

Critical Impact

Attackers exploiting this vulnerability via malicious PDF documents could potentially read sensitive memory contents or cause application instability in PDF processing applications.

Affected Products

  • Freedesktop Poppler versions through 24.12.0
  • Applications using libpoppler.so for PDF rendering
  • Linux distributions shipping vulnerable Poppler versions (including Debian LTS)

Discovery Timeline

  • 2024-12-23 - CVE-2024-56378 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-56378

Vulnerability Analysis

The vulnerability resides in the JBIG2 image decoding functionality of Poppler, specifically within the JBIG2Bitmap::combine function located in JBIG2Stream.cc. JBIG2 is a bi-level image compression standard commonly used in PDF documents for efficient storage of black-and-white images such as scanned documents.

When processing JBIG2 image segments, the combine function performs bitmap manipulation operations that merge or overlay bitmap data. The out-of-bounds read occurs due to insufficient boundary validation before accessing memory during these bitmap combining operations. An attacker can craft a malicious PDF document with specially constructed JBIG2 stream parameters that cause the function to read beyond the allocated buffer boundaries.

Root Cause

The root cause is classified as CWE-125 (Out-of-bounds Read), stemming from improper input validation in the JBIG2Bitmap::combine function. The function fails to adequately verify that bitmap dimensions and offsets remain within valid memory bounds before performing read operations. This allows malformed JBIG2 segments to trigger reads from unintended memory locations.

Attack Vector

The attack vector is network-based, requiring an attacker to deliver a malicious PDF document to the victim. This can be accomplished through various means including email attachments, web downloads, or embedding PDFs in web content. When the victim opens the crafted PDF using an application that relies on Poppler for rendering (such as document viewers like Evince or Okular), the malicious JBIG2 stream triggers the out-of-bounds read during document parsing.

The vulnerability does not require user authentication and can be exploited with low attack complexity. However, exploitation is limited in scope as it primarily enables unauthorized data reads rather than code execution or system compromise.

The vulnerability manifests during JBIG2 bitmap combination operations when processing malformed PDF documents. Technical details regarding the specific boundary conditions and exploitation mechanism can be found in the GitLab Poppler Issue Discussion.

Detection Methods for CVE-2024-56378

Indicators of Compromise

  • Unexpected crashes or memory access violations in PDF viewer applications
  • Application logs showing JBIG2 decoding errors or segmentation faults when processing PDF files
  • Suspicious PDF documents with anomalous JBIG2 stream structures or malformed segment headers

Detection Strategies

  • Monitor PDF processing applications for abnormal memory access patterns or crashes during document rendering
  • Implement file inspection rules to identify PDFs with potentially malicious JBIG2 streams
  • Deploy application-level monitoring to detect Poppler library crashes or memory access violations
  • Use static analysis tools to scan PDF documents for suspicious JBIG2 segment configurations

Monitoring Recommendations

  • Enable crash reporting and memory dump analysis for PDF viewing applications using Poppler
  • Monitor system logs for repeated crashes in PDF processing workflows
  • Implement network traffic inspection to identify potentially malicious PDF downloads
  • Configure endpoint detection to alert on suspicious PDF-related process behavior

How to Mitigate CVE-2024-56378

Immediate Actions Required

  • Update Poppler to a patched version that includes the fix for CVE-2024-56378
  • Review and update all applications that bundle or depend on libpoppler.so
  • For Debian LTS users, apply the security updates referenced in the Debian LTS Security Announcement
  • Consider temporarily disabling JBIG2 processing if updates cannot be immediately applied

Patch Information

The vulnerability has been addressed by Freedesktop in a commit to the Poppler repository. The fix implements proper boundary checking in the JBIG2Bitmap::combine function to prevent out-of-bounds read operations. Organizations should upgrade to patched versions of Poppler that include commit ade9b5ebed44b0c15522c27669ef6cdf93eff84e. The patch is available in the GitLab Poppler Commit Update.

Workarounds

  • Implement strict PDF input validation and sanitization before processing with Poppler
  • Use application sandboxing to limit the impact of potential exploitation
  • Restrict PDF processing to trusted sources and implement network-level filtering for PDF downloads
  • Consider alternative PDF libraries for processing untrusted documents until patches are applied
bash
# Check installed Poppler version on Linux systems
poppler-utils --version
# or
pkg-config --modversion poppler

# Update Poppler on Debian/Ubuntu
sudo apt-get update && sudo apt-get upgrade poppler-utils libpoppler-dev

# Update Poppler on RHEL/CentOS/Fedora
sudo dnf update poppler poppler-utils

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechFreedesktop Poppler

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.35%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-125
  • Technical References
  • GitLab Poppler CMake File

  • GitLab Poppler Issue Discussion

  • Debian LTS Security Announcement
  • Vendor Resources
  • GitLab Poppler Commit Update
  • Related CVEs
  • CVE-2025-52886: Poppler Use-After-Free 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