Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-39396

CVE-2026-39396: OpenBao OCI Plugin DOS Vulnerability

CVE-2026-39396 is a denial of service flaw in OpenBao's OCI plugin downloader that allows attackers to cause disk exhaustion via decompression bombs. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-39396 Overview

OpenBao, an open source identity-based secrets management system, contains a resource exhaustion vulnerability in its OCI plugin downloader. The ExtractPluginFromImage() function extracts a plugin binary from a container image by streaming decompressed tar data via io.Copy with no upper bound on the number of bytes written. An attacker who controls or compromises the OCI registry referenced in the victim's configuration can serve a crafted image containing a decompression bomb that decompresses to an arbitrarily large file, leading to disk exhaustion on the target system.

Critical Impact

The SHA256 integrity check occurs after the full file is written to disk, meaning the hash mismatch is detected only after disk exhaustion has already occurred. This allows an attacker to replace legitimate plugin images without needing to change the signature.

Affected Products

  • OpenBao versions prior to 2.5.3
  • Systems utilizing OpenBao's OCI plugin downloader functionality
  • Environments referencing external OCI registries for plugin retrieval

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-39396 published to NVD
  • 2026-04-21 - Last updated in NVD database

Technical Details for CVE-2026-39396

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption). The core issue lies in the ExtractPluginFromImage() function within OpenBao's OCI plugin downloader component. When extracting plugin binaries from container images, the function uses io.Copy to stream decompressed tar data without implementing any size restrictions on the output. This unbounded write operation creates an opportunity for resource exhaustion attacks.

The vulnerability is particularly concerning because the integrity verification mechanism (SHA256 hash check) is implemented incorrectly from a security perspective—it validates the hash only after the complete file has been written to disk. This architectural flaw means that even when a malicious payload fails the integrity check, the denial of service impact has already been achieved.

Root Cause

The root cause is the absence of size validation during the decompression and file writing process in the OCI plugin extraction workflow. The io.Copy function is invoked without wrapping the destination writer with a limiting reader or implementing explicit byte count checks. Combined with the post-write integrity verification timing, this creates a window where attackers can exhaust disk resources before any malicious payload detection occurs.

Attack Vector

The attack requires an adversary to either control or compromise an OCI registry that the victim's OpenBao instance references for plugin downloads. The attacker serves a specially crafted container image containing a decompression bomb—a small compressed file that expands to an extremely large size when decompressed. When OpenBao attempts to download and extract the plugin, the decompression bomb expands to fill available disk space. The attack leverages the network vector but requires user interaction (configuring the malicious registry) and has high attack complexity due to the prerequisite of registry control.

The exploitation flow involves:

  1. Attacker gains control of or compromises an OCI registry
  2. Attacker uploads a malicious container image containing a decompression bomb
  3. Victim's OpenBao instance attempts to download a plugin from the compromised registry
  4. The ExtractPluginFromImage() function extracts the malicious payload without size limits
  5. Disk space is exhausted before the SHA256 integrity check can detect the tampered image

Detection Methods for CVE-2026-39396

Indicators of Compromise

  • Sudden and unexplained disk space exhaustion on systems running OpenBao
  • Large temporary files created during plugin extraction operations
  • Failed SHA256 integrity checks in OpenBao logs following disk write errors
  • Unusual network traffic patterns to OCI registries during plugin operations

Detection Strategies

  • Monitor disk usage metrics on OpenBao servers for sudden spikes during plugin operations
  • Implement alerting on OpenBao plugin download failures with disk-related error messages
  • Review OCI registry access logs for unexpected plugin image requests
  • Audit configured OCI registries for unauthorized changes or compromises

Monitoring Recommendations

  • Configure disk space monitoring with aggressive thresholds on systems running OpenBao
  • Enable verbose logging for plugin download and extraction operations
  • Implement network monitoring to detect connections to untrusted OCI registries
  • Set up alerts for SHA256 verification failures in OpenBao's plugin subsystem

How to Mitigate CVE-2026-39396

Immediate Actions Required

  • Upgrade OpenBao to version 2.5.3 or later immediately
  • Audit all configured OCI registries for trustworthiness and integrity
  • Implement disk quotas on directories used for plugin extraction
  • Consider temporarily disabling OCI plugin downloads until patching is complete

Patch Information

Version 2.5.3 of OpenBao contains the fix for this vulnerability. The patch addresses the unbounded write issue in ExtractPluginFromImage() by implementing proper size limits during decompression. Organizations should review the GitHub Security Advisory for detailed information about the patch and upgrade procedures.

Workarounds

  • Restrict OpenBao to use only trusted, internally-controlled OCI registries
  • Implement network-level controls to limit OCI registry access to approved endpoints
  • Configure disk quotas on the filesystem used for plugin extraction to limit blast radius
  • Monitor and alert on rapid disk usage increases during plugin operations
bash
# Configuration example - Set disk quota on OpenBao plugin directory
# This limits potential damage from decompression bomb attacks
mkdir -p /var/lib/openbao/plugins
mount -o size=500M -t tmpfs tmpfs /var/lib/openbao/plugins

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenbao

  • SeverityLOW

  • CVSS Score3.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40264: OpenBao Privilege Escalation Vulnerability

  • CVE-2026-39388: OpenBao Auth Bypass Vulnerability

  • CVE-2026-39946: OpenBao PostgreSQL SQLI Vulnerability

  • CVE-2026-33757: OpenBao JWT/OIDC Auth Bypass 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