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

CVE-2026-26308: Envoyproxy Envoy Auth Bypass Vulnerability

CVE-2026-26308 is an authentication bypass flaw in Envoyproxy Envoy's RBAC filter that allows attackers to evade security policies using duplicate HTTP headers. This article covers technical details, affected versions, and patches.

Published: March 13, 2026

CVE-2026-26308 Overview

CVE-2026-26308 is an Authorization Bypass vulnerability affecting Envoy, a high-performance edge/middle/service proxy. The vulnerability exists in Envoy's RBAC (Role-Based Access Control) filter, which contains a logic flaw in how it validates HTTP headers when multiple values are present for the same header name. Instead of validating each header value individually, Envoy concatenates all values into a single comma-separated string, enabling attackers to bypass security policies.

Critical Impact

This vulnerability allows attackers to bypass RBAC "Deny" rules by sending duplicate HTTP headers, effectively obscuring malicious values from exact-match mechanisms and gaining unauthorized access to protected resources.

Affected Products

  • Envoy versions prior to 1.34.13
  • Envoy versions prior to 1.35.8
  • Envoy versions prior to 1.36.5
  • Envoy version 1.37.0 (prior to 1.37.1)

Discovery Timeline

  • 2026-03-10 - CVE-2026-26308 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-26308

Vulnerability Analysis

The vulnerability stems from improper authorization logic (CWE-863) in Envoy's RBAC filter component. When processing HTTP requests containing duplicate headers with the same name, Envoy's header matching logic concatenates all values into a single comma-separated string before performing RBAC policy evaluation. This design flaw undermines the effectiveness of exact-match deny rules, as the concatenated string will never match a single blocked value.

For example, if an RBAC policy denies requests with an X-Custom-Header: malicious, an attacker could send a request with two X-Custom-Header values: benign and malicious. Envoy would concatenate these into benign,malicious, which would not match the exact "malicious" string, allowing the request to bypass the deny rule.

Root Cause

The root cause is the absence of individual header value validation in the RBAC filter's header matching implementation. The original code only implemented a matchesHeaders() method that operated on concatenated header values, rather than iterating through and validating each header value separately against RBAC policies.

Attack Vector

An attacker can exploit this vulnerability remotely over the network without authentication. The attack involves crafting HTTP requests with duplicate header names, where one value is benign and another contains the payload or value that should be blocked by RBAC policies. Since Envoy concatenates these values before evaluation, the exact-match deny rules fail to detect the malicious value embedded within the comma-separated string. This provides unauthorized access to endpoints that should be protected.

c
// Security patch introducing individual header value matching
// Source: https://github.com/envoyproxy/envoy/commit/b6ba0b2294b98484fb0ed8556897d1073cc27867

   * Check whether header matcher matches any headers in a given HeaderMap.
   */
  virtual bool matchesHeaders(const HeaderMap& headers) const PURE;
+
+  /**
+   * Matches headers validating each value individually.
+   */
+  virtual bool matchesHeadersIndividually(const HeaderMap& headers) const PURE;
};

using HeaderMatcherSharedPtr = std::shared_ptr<HeaderMatcher>;

The patch introduces a new matchesHeadersIndividually() method that validates each header value separately, preventing the concatenation bypass technique.

Detection Methods for CVE-2026-26308

Indicators of Compromise

  • HTTP requests containing duplicate headers with identical names targeting RBAC-protected endpoints
  • Access logs showing successful requests to restricted resources with unusual header patterns
  • Anomalous patterns where denied header values appear as substrings within comma-separated values

Detection Strategies

  • Implement deep packet inspection to identify requests with duplicate HTTP headers targeting sensitive endpoints
  • Configure WAF rules to detect and flag requests containing multiple instances of the same custom header
  • Monitor Envoy access logs for successful requests to RBAC-protected resources that should have been denied
  • Deploy SentinelOne Singularity to detect anomalous network traffic patterns indicative of RBAC bypass attempts

Monitoring Recommendations

  • Enable verbose logging on Envoy RBAC filter to capture header evaluation decisions
  • Set up alerts for requests containing duplicate headers in security-sensitive contexts
  • Implement network monitoring to detect reconnaissance or exploitation attempts targeting header manipulation

How to Mitigate CVE-2026-26308

Immediate Actions Required

  • Upgrade Envoy to patched versions 1.37.1, 1.36.5, 1.35.8, or 1.34.13 immediately
  • Review and audit existing RBAC policies for exact-match rules that may have been bypassed
  • Examine access logs for evidence of exploitation using duplicate header techniques
  • Consider temporarily implementing additional upstream filtering for critical endpoints

Patch Information

Envoyproxy has released security patches addressing this vulnerability. The fix introduces a new matchesHeadersIndividually() method that validates each header value separately rather than operating on concatenated strings. Patched versions include 1.37.1, 1.36.5, 1.35.8, and 1.34.13. The specific commit addressing this issue is available in the GitHub Commit Update. For full details, refer to the GitHub Security Advisory.

Workarounds

  • Implement prefix or suffix matching rules instead of exact-match rules where possible
  • Deploy an upstream WAF or proxy that normalizes duplicate headers before they reach Envoy
  • Use regex-based RBAC rules that can match substrings within concatenated values as a temporary measure
  • Consider implementing additional application-layer authorization as a defense-in-depth control
bash
# Verify current Envoy version and upgrade
envoy --version

# Upgrade to patched version (example using Docker)
docker pull envoyproxy/envoy:v1.37.1

# Restart Envoy service with patched version
systemctl restart envoy

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechEnvoy

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.00%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2022-29226: Envoyproxy Envoy Auth Bypass Vulnerability

  • CVE-2026-26309: Envoyproxy Envoy Buffer Overflow Flaw

  • CVE-2026-22771: Envoy Gateway Information Disclosure Flaw

  • CVE-2024-30255: Envoyproxy Envoy DoS 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