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
    • 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-24904

CVE-2026-24904: TrustTunnel VPN Auth Bypass Vulnerability

CVE-2026-24904 is an authentication bypass vulnerability in TrustTunnel VPN that allows attackers to evade security rules when ClientHello extraction fails. This post covers technical details, affected versions, and mitigation.

Published: January 29, 2026

CVE-2026-24904 Overview

CVE-2026-24904 is an authorization bypass vulnerability in TrustTunnel, an open-source VPN protocol. The vulnerability exists in versions prior to 0.9.115 and allows attackers to bypass security rules by exploiting improper handling of fragmented TLS ClientHello messages. When the client_random field cannot be extracted due to parsing failures, rules dependent on client_random_prefix matching are silently skipped, allowing unauthorized connections to pass through the rules engine.

Critical Impact

Attackers can bypass VPN access control rules by sending fragmented or malformed TLS handshakes, potentially gaining unauthorized access to protected network resources.

Affected Products

  • TrustTunnel versions prior to 0.9.115

Discovery Timeline

  • 2026-01-29 - CVE CVE-2026-24904 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2026-24904

Vulnerability Analysis

This vulnerability stems from an improper access control issue (CWE-284) in TrustTunnel's TLS listener and rules engine components. The flaw resides in how the VPN protocol handles TLS ClientHello parsing and subsequent rule evaluation.

In the tls_listener.rs file, the TlsListener::listen() function peeks at 1024 bytes from incoming connections and calls extract_client_random(...) to parse TLS handshake data. When a client sends a fragmented or partial ClientHello that is split across multiple TCP writes, the parse_tls_plaintext function fails, causing extract_client_random to return None.

The critical issue manifests in the rules.rs file where RulesEngine::evaluate only evaluates client_random_prefix conditions when client_random is Some(...). When extraction fails and client_random equals None, any rule relying on client_random_prefix matching is completely skipped, and evaluation falls through to subsequent rules.

An important semantic consideration is that client_random_prefix functions as a match condition only—it does not inherently mean "block non-matching prefixes." A rule with client_random_prefix = ... triggers its action only when the prefix matches and the field is available for evaluation. Non-matches or None values simply do not match that rule and continue falling through the rule chain.

Root Cause

The root cause is the absence of a fail-safe mechanism in the rules evaluation logic. When the client_random field cannot be extracted from a TLS handshake, the rules engine silently bypasses rules that depend on this field rather than denying the connection or requiring successful extraction. This design flaw allows attackers to craft network traffic that intentionally causes extraction failures, effectively bypassing security controls.

Attack Vector

An attacker can exploit this vulnerability over the network without authentication by deliberately fragmenting TLS ClientHello messages across multiple TCP segments. By ensuring the initial 1024-byte peek window does not contain a complete, parseable ClientHello, the attacker forces extract_client_random to return None. This causes any access control rules dependent on client_random_prefix matching to be bypassed, potentially allowing unauthorized access to VPN-protected resources.

rust
    /// Evaluate connection against all rules
    /// Returns the action from the first matching rule, or Allow if no rules match
    pub fn evaluate(&self, client_ip: &IpAddr, client_random: Option<&[u8]>) -> RuleEvaluation {
+        if client_random.is_none()
+            && self
+                .rules
+                .rule
+                .iter()
+                .any(|r| r.client_random_prefix.is_some())
+        {
+            return RuleEvaluation::Deny;
+        }
+
        for rule in &self.rules.rule {
            if rule.matches(client_ip, client_random) {
                return match rule.action {

Source: GitHub TrustTunnel Commit

Detection Methods for CVE-2026-24904

Indicators of Compromise

  • Unusual TLS handshake patterns with abnormally small or fragmented ClientHello messages
  • Repeated connection attempts from the same source with varying TCP segmentation patterns
  • Log entries showing successful connections that bypassed expected client_random_prefix rules
  • Connections where client_random extraction consistently fails from specific sources

Detection Strategies

  • Monitor TLS handshake logs for connections where client_random extraction returns None
  • Implement network-level detection for deliberately fragmented TLS ClientHello packets
  • Audit VPN access logs for connections that should have been denied by client_random_prefix rules
  • Deploy packet inspection to identify TCP streams with unusual segmentation during TLS handshakes

Monitoring Recommendations

  • Enable verbose logging in TrustTunnel to capture TLS parsing failures and rule evaluation details
  • Configure alerts for elevated rates of client_random extraction failures
  • Review connection logs correlating source IPs with rule bypass events
  • Monitor for reconnaissance activity probing VPN endpoints with malformed TLS traffic

How to Mitigate CVE-2026-24904

Immediate Actions Required

  • Upgrade TrustTunnel to version 0.9.115 or later immediately
  • Review VPN access logs for potential exploitation attempts prior to patching
  • Audit existing rules that rely on client_random_prefix matching for potential bypass exposure
  • Consider implementing additional network-layer access controls as defense-in-depth

Patch Information

The vulnerability is fixed in TrustTunnel version 0.9.115. The patch modifies the RulesEngine::evaluate function to explicitly deny connections when client_random is None and any rule in the configuration relies on client_random_prefix matching. This ensures that parsing failures result in a secure-by-default denial rather than a rule bypass.

For detailed patch information, refer to the GitHub TrustTunnel Commit and the GitHub Security Advisory GHSA-fqh7-r5gf-3r87.

Workarounds

  • Remove or replace rules that depend solely on client_random_prefix matching until the patch can be applied
  • Implement IP-based allowlisting as an additional layer of access control
  • Deploy network segmentation to limit exposure of TrustTunnel endpoints to trusted networks
  • Use a reverse proxy or firewall to normalize TLS traffic before it reaches TrustTunnel
bash
# Upgrade TrustTunnel to patched version
cargo update -p trusttunnel
# Or rebuild from the fixed commit
git fetch origin
git checkout aa5060145506952b9431b0ed3edb52bb6c08d9a6
cargo build --release

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechTrusttunnel

  • SeverityMEDIUM

  • CVSS Score5.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub TrustTunnel Commit

  • GitHub Security Advisory GHSA-fqh7-r5gf-3r87
  • Related CVEs
  • CVE-2026-24902: TrustTunnel SSRF Vulnerability
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