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-40944

CVE-2026-40944: Oxia Information Disclosure Vulnerability

CVE-2026-40944 is an information disclosure vulnerability in Oxia that affects TLS certificate chain validation for mTLS configurations. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-40944 Overview

CVE-2026-40944 is a certificate validation bypass vulnerability in Oxia, a metadata store and coordination system. Prior to version 0.16.2, the trustedCertPool() function in the TLS configuration only parses the first PEM block from CA certificate files. When a CA bundle contains multiple certificates (e.g., intermediate + root CA), only the first certificate is loaded. This silently breaks certificate chain validation for mTLS, potentially allowing unauthorized connections that should be rejected by proper certificate validation.

Critical Impact

mTLS certificate chain validation is silently broken, allowing potential bypass of mutual authentication in environments relying on certificate bundles with intermediate CAs.

Affected Products

  • Oxia metadata store versions prior to 0.16.2

Discovery Timeline

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

Technical Details for CVE-2026-40944

Vulnerability Analysis

This vulnerability falls under CWE-295 (Improper Certificate Validation). The core issue lies in how the trustedCertPool() function processes PEM-encoded certificate files. When organizations deploy Oxia with CA bundles containing multiple certificates—a common practice in enterprise environments where certificate chains include intermediate and root CAs—the function fails to parse beyond the first PEM block.

This creates a dangerous scenario where certificate validation silently degrades. An attacker could potentially present a certificate signed by an intermediate CA that would normally be validated against the full chain, but because only the first certificate in the bundle is loaded, the validation logic operates with incomplete trust anchors.

The vulnerability is particularly insidious because it occurs silently without generating errors or warnings. Administrators may believe their mTLS configuration is properly validating certificate chains when in reality only partial validation is occurring.

Root Cause

The root cause is improper PEM parsing logic in the trustedCertPool() function. Standard PEM files can contain multiple certificate blocks, each delimited by -----BEGIN CERTIFICATE----- and -----END CERTIFICATE----- markers. The vulnerable implementation only processes the first such block, discarding any subsequent certificates in the file.

This design flaw violates the expectation that CA bundle files containing multiple certificates will have all certificates loaded into the trusted certificate pool for validation purposes.

Attack Vector

The attack vector is network-based and exploits the improper certificate validation. An attacker with knowledge of the incomplete certificate pool could potentially:

  1. Present a certificate signed by an intermediate CA that is not loaded into the trust pool
  2. Bypass mTLS authentication if the certificate chain validation relies on certificates beyond the first one in the bundle
  3. Establish unauthorized connections to Oxia nodes configured with incomplete certificate validation

The vulnerability requires no authentication and can be exploited with low complexity over the network. However, exploitation is constrained to scenarios where organizations use multi-certificate CA bundles and the attacker can present certificates that exploit the incomplete trust chain.

For detailed technical information about this vulnerability, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-40944

Indicators of Compromise

  • Unexpected successful TLS connections from clients with certificates that should fail validation
  • Authentication events where certificate chain validation passes despite incomplete CA chains
  • Log entries indicating mTLS handshakes succeeding with certificates not signed by the expected full CA chain

Detection Strategies

  • Review Oxia server logs for TLS handshake patterns and certificate validation events
  • Audit deployed CA bundle files to identify environments using multi-certificate bundles (files with multiple PEM blocks)
  • Monitor for connections from unexpected certificate sources that should be rejected by proper chain validation
  • Compare expected certificate validation behavior against actual connection acceptance patterns

Monitoring Recommendations

  • Implement certificate transparency logging to track all certificates used for mTLS connections
  • Deploy network monitoring to detect anomalous connection patterns to Oxia nodes
  • Enable verbose TLS debugging temporarily in non-production environments to validate certificate chain processing

How to Mitigate CVE-2026-40944

Immediate Actions Required

  • Upgrade Oxia to version 0.16.2 or later immediately
  • Audit all CA bundle configurations to identify environments potentially affected
  • Temporarily switch to single-certificate CA files if upgrade is not immediately possible
  • Review recent connection logs for any suspicious mTLS authentication events

Patch Information

The vulnerability is fixed in Oxia version 0.16.2. The fix ensures that the trustedCertPool() function properly iterates through and parses all PEM blocks in CA certificate files, loading the complete certificate chain into the trust pool.

For patch details and upgrade instructions, see the GitHub Security Advisory.

Workarounds

  • Split multi-certificate CA bundles into individual certificate files and configure Oxia to load each separately
  • Use only single-certificate CA files until upgrade to 0.16.2 is completed
  • Implement additional network-level access controls to restrict connections to Oxia nodes while operating with potentially weakened certificate validation
  • Deploy certificate pinning at the application level as an additional validation layer

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOxia

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-295
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40945: Oxia Information Disclosure Vulnerability

  • CVE-2026-40943: Oxia Race Condition Vulnerability

  • CVE-2026-40946: Oxia Auth Bypass 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