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

CVE-2026-43869: Apache Thrift Certificate Validation Flaw

CVE-2026-43869 is an information disclosure vulnerability in Apache Thrift caused by improper certificate validation with host mismatch. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 7, 2026

CVE-2026-43869 Overview

CVE-2026-43869 is an improper certificate validation vulnerability in Apache Thrift affecting all versions before 0.23.0. The flaw, classified under CWE-297, stems from missing hostname verification when validating Transport Layer Security (TLS) certificates. Apache Thrift clients can establish encrypted connections to servers presenting valid certificates issued for a different hostname. This weakens the trust model that TLS provides and exposes Thrift remote procedure call (RPC) traffic to interception. Apache has released version 0.23.0 to remediate the issue.

Critical Impact

Attackers positioned on the network path can perform man-in-the-middle attacks against Thrift clients, intercepting and modifying RPC traffic protected by TLS.

Affected Products

  • Apache Thrift versions prior to 0.23.0
  • Applications embedding the vulnerable Thrift client libraries
  • Services relying on Thrift TLS transports for inter-service communication

Discovery Timeline

  • 2026-05-05 - CVE-2026-43869 published to the National Vulnerability Database (NVD)
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43869

Vulnerability Analysis

Apache Thrift is a cross-language RPC framework used to define and consume services across heterogeneous environments. The vulnerable code paths handle TLS certificate validation during client-side connection establishment. While the certificate chain is verified against trusted certificate authorities, the client does not enforce that the certificate's subject or Subject Alternative Name (SAN) entries match the hostname the client intended to reach.

This breaks one of the two core guarantees of TLS authentication. A certificate signed by a trusted CA for attacker.example.com is accepted when the client connects to service.internal. The transport channel becomes encrypted but no longer authenticated against the expected peer identity.

Root Cause

The root cause is a missing or incomplete hostname verification step in the Thrift TLS transport implementation. According to the Apache security mailing list announcement, the issue is fixed in version 0.23.0. The fix introduces hostname validation that compares the connection target against the certificate's Common Name (CN) and SAN fields, consistent with RFC 6125 guidance.

Attack Vector

Exploitation requires an attacker positioned on the network path between a Thrift client and server, or the ability to redirect traffic via DNS poisoning, ARP spoofing, or BGP hijacking. The attacker presents any valid certificate from a CA the client trusts, including certificates obtained legitimately for unrelated domains. The vulnerable client completes the TLS handshake and proceeds to send sensitive RPC payloads to the attacker.

The attacker can decrypt, log, modify, or replay Thrift method calls and responses. In service mesh and microservice environments where Thrift carries authentication tokens or business data, the impact extends beyond confidentiality to integrity of downstream operations. See the Openwall OSS Security discussion for additional context.

Detection Methods for CVE-2026-43869

Indicators of Compromise

  • Unexpected TLS connections from Thrift clients to hosts outside documented service inventories
  • Certificates presented to internal Thrift services with CN or SAN values that do not match the configured server hostnames
  • Anomalous DNS resolution results for internal Thrift service endpoints
  • RPC traffic patterns showing latency spikes consistent with proxy interception

Detection Strategies

  • Inventory all running Thrift client and server components and confirm library versions through software composition analysis (SCA) tools
  • Capture TLS handshakes at network egress points and alert on certificate subject mismatches against expected service identities
  • Monitor build pipelines for the libthrift dependency and flag versions earlier than 0.23.0
  • Correlate process telemetry on endpoints to identify Thrift-linked binaries communicating with unrecognized destinations

Monitoring Recommendations

  • Enable TLS inspection or passive certificate logging for east-west traffic where Thrift services operate
  • Track certificate issuance events from corporate CAs and public logs for unauthorized certificates targeting internal hostnames
  • Forward application logs from Thrift servers and clients into a centralized analytics platform to detect handshake anomalies
  • Establish baselines for Thrift connection counts per service and alert on deviations

How to Mitigate CVE-2026-43869

Immediate Actions Required

  • Upgrade Apache Thrift to version 0.23.0 or later across all client and server deployments
  • Audit dependency manifests including pom.xml, build.gradle, requirements.txt, package.json, and go.mod for vulnerable Thrift versions
  • Rebuild and redeploy applications that statically link or vendor older Thrift libraries
  • Rotate any credentials or tokens that may have transited Thrift TLS channels in untrusted network segments

Patch Information

Apache Thrift 0.23.0 contains the fix for CVE-2026-43869 and is the recommended remediation. Refer to the Apache Security Mailing List Thread for the official advisory and release notes.

Workarounds

  • Restrict Thrift traffic to mutually authenticated mTLS where both client and server certificates are validated by an internal CA with strict issuance policies
  • Place Thrift services behind a TLS-terminating proxy that enforces hostname verification until the underlying library is upgraded
  • Use network segmentation and zero-trust controls to reduce the population of hosts able to reach Thrift endpoints
  • Pin expected server certificates at the application layer where supported by the language binding
bash
# Verify installed Apache Thrift version on a host
thrift --version

# Example dependency upgrade for a Maven project
mvn versions:set-property -Dproperty=thrift.version -DnewVersion=0.23.0
mvn dependency:tree | grep thrift

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechApache Thrift

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-297
  • Technical References
  • Openwall OSS Security Discussion
  • Vendor Resources
  • Apache Security Mailing List Thread
  • Related CVEs
  • CVE-2026-43868: Apache Thrift Buffer Overflow Vulnerability

  • CVE-2026-43870: Apache Thrift Path Traversal Vulnerability

  • CVE-2026-41603: Apache Thrift Certificate Vulnerability

  • CVE-2025-48431: Apache Thrift Use-After-Free 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