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-2026-41142

CVE-2026-41142: OpenEXR Buffer Overflow Vulnerability

CVE-2026-41142 is a buffer overflow flaw in OpenEXR caused by an integer overflow in ImageChannel::resize that leads to heap out-of-bounds write. This article covers technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-41142 Overview

CVE-2026-41142 is an integer overflow vulnerability [CWE-190] in OpenEXR, the reference implementation of the EXR image file format used widely in the motion picture industry. The flaw resides in ImageChannel::resize within the OpenEXRUtil public API. An overflow in pixel count calculations leads to a heap out-of-bounds write when a victim processes a crafted EXR file. Affected versions include 3.0.0 through 3.2.8, 3.3.0 through 3.3.10, and 3.4.0 through 3.4.10. Patches are available in 3.2.9, 3.3.11, and 3.4.11.

Critical Impact

Attackers can trigger heap memory corruption through a malicious EXR file, potentially leading to arbitrary code execution in applications and pipelines that consume untrusted image input.

Affected Products

  • OpenEXR versions 3.0.0 to before 3.2.9
  • OpenEXR versions 3.3.0 to before 3.3.11
  • OpenEXR versions 3.4.0 to before 3.4.11

Discovery Timeline

  • 2026-05-07 - CVE-2026-41142 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-41142

Vulnerability Analysis

The vulnerability stems from unchecked arithmetic when computing the pixel buffer size inside ImageChannel::resize. OpenEXR multiplies width and height values supplied by image metadata to determine allocation size. When the product exceeds the maximum value of the integer type, the result wraps around to a smaller value. The library then allocates an undersized heap buffer based on the truncated count.

Subsequent write operations iterate using the original (unwrapped) dimensions, writing past the end of the allocation. This produces a heap out-of-bounds write reachable through the OpenEXRUtil public API. Any application using OpenEXRUtil to load or process EXR files inherits the flaw.

Root Cause

The root cause is a missing overflow check in pixel count arithmetic. The fix in commit 0592ee5 introduces <cstdint> and <limits> headers in src/lib/OpenEXRUtil/ImfImageChannel.cpp to enable validated 64-bit math and std::numeric_limits bounds checks before allocation occurs.

Attack Vector

Exploitation requires a victim to open or process a malicious EXR file using a tool or pipeline built on OpenEXRUtil. The attack vector is network-reachable when files arrive through email, web uploads, asset pipelines, or rendering farms. User interaction is required to trigger processing of the crafted file.

cpp
// Patch excerpt: src/lib/OpenEXRUtil/ImfImageChannel.cpp
#include "ImfImageLevel.h"
#include <Iex.h>

+#include <cstdint>
+#include <limits>
+
using namespace IMATH_NAMESPACE;
using namespace IEX_NAMESPACE;
using namespace std;

Source: GitHub Commit 0592ee5

Detection Methods for CVE-2026-41142

Indicators of Compromise

  • Crashes or aborts in processes linked against libOpenEXRUtil when handling EXR inputs
  • EXR files with abnormally large declared dataWindow or channel dimensions that overflow 32-bit pixel counts
  • Heap corruption signatures (e.g., glibc malloc() aborts, ASan heap-buffer-overflow reports) in image processing services

Detection Strategies

  • Inventory build dependencies and identify binaries linking OpenEXR versions earlier than 3.2.9, 3.3.11, or 3.4.11
  • Run fuzzing or AddressSanitizer-instrumented builds against EXR ingestion paths to surface heap OOB writes
  • Apply YARA or content rules that flag EXR files with channel dimensions exceeding rational pipeline limits

Monitoring Recommendations

  • Log unexpected terminations of rendering, compositing, and asset ingestion services that parse EXR content
  • Alert on EDR detection of child process spawning or shellcode execution from image processing applications
  • Monitor file upload gateways and shared storage for inbound EXR files originating from untrusted sources

How to Mitigate CVE-2026-41142

Immediate Actions Required

  • Upgrade OpenEXR to 3.2.9, 3.3.11, or 3.4.11 depending on the deployed branch
  • Rebuild and redeploy any internal tools, plugins, or services that statically link OpenEXR
  • Restrict EXR ingestion to trusted sources until patching completes across the pipeline

Patch Information

The upstream fix is delivered in commit 0592ee539f33c122c90f09238579b902d838afb4 and tracked under GitHub Pull Request #2367 and GHSA-m25w-72cj-q6mg. Operators should pull the patched releases directly from the Academy Software Foundation OpenEXR repository or distribution package mirrors.

Workarounds

  • Sandbox EXR processing in isolated containers or seccomp-filtered processes to limit blast radius
  • Pre-validate EXR header dataWindow dimensions and reject files exceeding sane width/height bounds before invoking OpenEXRUtil
  • Disable automatic EXR thumbnailing or preview generation in shared file servers until patches are applied
bash
# Verify installed OpenEXR version on Linux hosts
pkg-config --modversion OpenEXR

# Example: pin patched version in a Debian/Ubuntu build environment
apt-get install --only-upgrade libopenexr-3-1=3.4.11-*

# Rebuild downstream consumers against the patched headers
cmake -DCMAKE_PREFIX_PATH=/opt/openexr-3.4.11 .. && make -j

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechOpenexr

  • SeverityHIGH

  • CVSS Score8.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-190
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request Discussion

  • GitHub Security Advisory GHSA-m25w-72cj-q6mg
  • Related CVEs
  • CVE-2026-42217: OpenEXR Buffer Overflow Vulnerability

  • CVE-2026-42216: OpenEXR Buffer Overflow Vulnerability

  • CVE-2026-40250: OpenEXR Buffer Overflow Vulnerability

  • CVE-2026-40244: OpenEXR 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