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

CVE-2026-32305: Traefik mTLS Bypass Vulnerability

CVE-2026-32305 is an mTLS bypass vulnerability in Traefik that allows attackers to circumvent mutual TLS authentication through fragmented ClientHello packets. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-32305 Overview

CVE-2026-32305 is an authentication bypass vulnerability in Traefik, the popular HTTP reverse proxy and load balancer. The vulnerability allows attackers to bypass mutual TLS (mTLS) enforcement through a flaw in the TLS Server Name Indication (SNI) pre-sniffing logic when handling fragmented ClientHello packets. When a TLS ClientHello is fragmented across multiple records, Traefik's SNI extraction may fail with an EOF and return an empty SNI, causing the TCP router to fall back to default TLS configuration which does not require client certificates.

Critical Impact

Attackers can bypass route-level mTLS enforcement and access backend services that should require mutual TLS authentication, potentially exposing sensitive internal services to unauthorized access.

Affected Products

  • Traefik versions 2.11.40 and below
  • Traefik versions 3.0.0-beta1 through 3.6.10
  • Traefik version 3.7.0-ea.1

Discovery Timeline

  • 2026-03-20 - CVE-2026-32305 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-32305

Vulnerability Analysis

This authentication bypass vulnerability (CWE-287) exists in Traefik's TLS SNI pre-sniffing mechanism. The flaw occurs when processing fragmented TLS ClientHello messages, which is a legitimate TLS behavior where the initial handshake can be split across multiple TLS records.

When Traefik attempts to extract the SNI from a fragmented ClientHello, the extraction logic encounters an EOF condition before completing the SNI parsing. Rather than rejecting the connection or requiring complete SNI information, Traefik returns an empty SNI value. The TCP router then uses this empty SNI to match routes, ultimately falling back to the default TLS configuration.

The critical security issue is that the default TLS configuration does not enforce client certificate requirements. This means connections that should be authenticated via mTLS are instead allowed through without any client certificate verification, completely bypassing the intended authentication mechanism.

Root Cause

The root cause lies in insufficient error handling within Traefik's SNI extraction logic when processing TLS ClientHello packets that span multiple TLS records. The code fails to properly handle the EOF condition that occurs when reading a fragmented handshake, treating it as a valid case with an empty SNI rather than an error condition requiring connection termination or additional data buffering.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious TLS client that deliberately fragments the ClientHello message across multiple TLS records. By doing so, the attacker triggers the EOF condition in Traefik's SNI extraction, causing the proxy to use the default TLS configuration that does not require client certificates. This allows the attacker to establish a connection to backend services that would normally require mTLS authentication.

The attack is network-accessible and requires no authentication or user interaction, making it exploitable by any attacker who can reach the Traefik instance over the network. Services intended to be protected by mTLS become accessible to unauthorized parties who can craft the appropriate fragmented TLS handshake.

Detection Methods for CVE-2026-32305

Indicators of Compromise

  • TLS connections to mTLS-protected routes that lack client certificate verification in access logs
  • Unusual patterns of connections with empty or missing SNI values in Traefik logs
  • Access to mTLS-protected services from clients that should not have valid client certificates

Detection Strategies

  • Monitor Traefik access logs for connections to mTLS-protected routes without corresponding client certificate information
  • Implement network-level monitoring to detect TLS handshakes with fragmented ClientHello packets targeting Traefik instances
  • Review authentication logs on backend services for unexpected access patterns that bypass expected mTLS enforcement

Monitoring Recommendations

  • Enable verbose TLS debugging in Traefik to log SNI extraction failures and fallback behavior
  • Implement alerting for connections that reach mTLS-protected backends without valid client certificates
  • Monitor for unusual traffic patterns targeting your Traefik reverse proxy infrastructure

How to Mitigate CVE-2026-32305

Immediate Actions Required

  • Upgrade Traefik to patched versions: v2.11.41, v3.6.11, or v3.7.0-ea.2
  • Review access logs for any signs of exploitation targeting mTLS-protected services
  • Temporarily implement network-level controls to restrict access to sensitive services if immediate patching is not possible
  • Audit backend service access controls to ensure defense-in-depth beyond mTLS

Patch Information

Traefik has released security patches addressing this vulnerability. Organizations should upgrade to the following fixed versions:

  • Version 2.x: Upgrade to v2.11.41
  • Version 3.6.x: Upgrade to v3.6.11
  • Version 3.7.x Early Access: Upgrade to v3.7.0-ea.2

For detailed information about the vulnerability, refer to the GitHub Security Advisory GHSA-wvvq-wgcr-9q48.

Workarounds

  • Implement network segmentation to limit access to Traefik instances serving mTLS-protected routes
  • Configure additional authentication layers on backend services as defense-in-depth measures
  • Use a Web Application Firewall (WAF) or network security appliance to inspect TLS handshakes for anomalous fragmentation patterns
bash
# Example: Update Traefik using Docker
docker pull traefik:v2.11.41
# or for v3.x
docker pull traefik:v3.6.11

# Restart your Traefik container with the updated image
docker-compose down && docker-compose up -d

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechTraefik

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:H/SI:H/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
  • AvailabilityNone
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Release v2.11.41

  • GitHub Release v3.6.11

  • GitHub Release v3.7.0-ea.2
  • Vendor Resources
  • GitHub Security Advisory GHSA-wvvq-wgcr-9q48
  • Related CVEs
  • CVE-2026-33433: Traefik Auth Bypass Vulnerability

  • CVE-2026-32695: Traefik Auth Bypass Vulnerability

  • CVE-2026-32595: Traefik Authentication Bypass Vulnerability

  • CVE-2026-29777: Traefik Auth Bypass 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