A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-32738

CVE-2026-32738: Struktur Libheif DOS Vulnerability

CVE-2026-32738 is a denial of service vulnerability in Struktur Libheif caused by integer underflow in HEIF file processing. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-32738 Overview

CVE-2026-32738 is an integer underflow vulnerability in libheif, a widely used HEIF and AVIF file format decoder and encoder maintained by struktur. The flaw exists in versions 1.21.2 and below. A crafted 792-byte HEIF sequence file with samples_per_chunk=0 in the stsc box triggers an unsigned integer underflow in the Chunk constructor. The computation m_last_sample = 0 + 0 - 1 wraps to UINT32_MAX, mapping all samples to an empty chunk. Accessing any sample then reads index 0 of an empty std::vector, causing a guaranteed segmentation fault. The issue is tracked under [CWE-125] and was fixed in version 1.22.0.

Critical Impact

A single malformed HEIF file causes a null-page read SEGV in any application using libheif, producing a reliable denial of service on first frame access.

Affected Products

  • struktur libheif versions 1.21.2 and earlier
  • Applications embedding libheif for HEIF or AVIF decoding
  • Image processing pipelines and media servers using vulnerable libheif builds

Discovery Timeline

  • 2026-05-19 - CVE-2026-32738 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-32738

Vulnerability Analysis

The vulnerability resides in the parsing of the stsc (Sample-to-Chunk) box within ISO Base Media File Format containers used by HEIF sequences. When samples_per_chunk equals zero, the Chunk constructor performs arithmetic that underflows an unsigned 32-bit integer. The resulting value UINT32_MAX is treated as a valid last-sample index. This mismatch causes every sample lookup to resolve to an empty chunk container.

Parsing itself succeeds without raising an error. The crash occurs later, when the caller requests the first frame. At that point, libheif indexes into an empty std::vector, dereferencing memory at offset zero. The result is a null-page read and process termination.

The attack requires user interaction, typically opening or processing a crafted HEIF file. The vulnerability cannot be used for code execution or data exfiltration, but it produces a reliable crash in any process consuming untrusted HEIF input.

Root Cause

The root cause is missing input validation on the samples_per_chunk field combined with unchecked unsigned arithmetic. The Chunk constructor assumes samples_per_chunk is at least 1 and subtracts 1 without guarding against the zero case. Unsigned wraparound produces a maximal index that silently corrupts internal state.

Attack Vector

An attacker delivers a 792-byte crafted HEIF sequence file through any channel that feeds libheif. Common vectors include email attachments, web image uploads, messaging clients, and thumbnail generators. When the target application calls libheif to decode the first frame, the process crashes. Server-side image processors and headless converters are particularly exposed because they often process untrusted user content automatically.

The vulnerability manifests in the Chunk constructor when handling the stsc box. See the GitHub Security Advisory GHSA-7f2h-cmpf-v9ww for technical details on the affected code path.

Detection Methods for CVE-2026-32738

Indicators of Compromise

  • Repeated process crashes or SIGSEGV signals in applications calling libheif decode functions
  • Core dumps showing null-page reads originating in the Chunk sample access path
  • HEIF or AVIF files near 792 bytes containing an stsc box with samples_per_chunk=0
  • Unexpected restarts of image processing workers handling user-uploaded media

Detection Strategies

  • Inspect inbound HEIF and AVIF files for malformed stsc boxes where samples_per_chunk is zero
  • Monitor application logs and crash reporters for segmentation faults inside libheif symbols
  • Inventory dependencies and identify processes loading libheif.so versions at or below 1.21.2
  • Apply file format validation at upload boundaries before passing media to decoder libraries

Monitoring Recommendations

  • Track crash telemetry for image processing services and correlate with recent file uploads
  • Alert on abnormal restart rates for thumbnailers, mail scanners, and media transcoders
  • Log libheif version strings during application startup to confirm patch state across the fleet

How to Mitigate CVE-2026-32738

Immediate Actions Required

  • Upgrade libheif to version 1.22.0 or later across all systems and container images
  • Audit downstream packages and language bindings such as pyheif and libheif-rs for bundled vulnerable copies
  • Restrict server-side HEIF and AVIF processing to validated input until patches are deployed
  • Isolate image decoding workers in sandboxed processes with automatic restart on crash

Patch Information

The maintainers fixed the issue in libheif 1.22.0. The patch adds validation for the samples_per_chunk field in the stsc box parser, preventing the unsigned underflow. Refer to the libheif GitHub Security Advisory GHSA-7f2h-cmpf-v9ww for the official advisory and commit references.

Workarounds

  • Reject HEIF and AVIF files outside expected size ranges or with malformed stsc boxes at the application gateway
  • Run libheif consumers under process supervisors that restart on SIGSEGV to maintain availability
  • Disable HEIF and AVIF decoding in non-essential services until patched versions are deployed
bash
# Verify installed libheif version on Linux
ldconfig -p | grep libheif
dpkg -l | grep libheif   # Debian/Ubuntu
rpm -q libheif           # RHEL/Fedora

# Upgrade to patched release
apt-get update && apt-get install --only-upgrade libheif1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibheif

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-32882: libheif Heap Buffer Over-Read DoS Flaw

  • CVE-2026-32739: Struktur Libheif DoS Vulnerability

  • CVE-2026-32741: libheif Buffer Overflow Vulnerability

  • CVE-2026-32740: Struktur Libheif Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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