Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-26311

CVE-2026-26311: Envoyproxy Envoy Use-After-Free Flaw

CVE-2026-26311 is a use-after-free vulnerability in Envoyproxy Envoy's HTTP connection manager that enables zombie stream filter execution. This article covers technical details, affected versions, and patches.

Published: March 13, 2026

CVE-2026-26311 Overview

CVE-2026-26311 is a Use-After-Free vulnerability in Envoy's HTTP connection manager that enables Zombie Stream Filter Execution. The flaw exists in the FilterManager component, where a logic vulnerability allows filter callbacks to be invoked on HTTP streams that have already been logically reset and cleaned up. This creates a dangerous state-corruption window that could lead to denial of service conditions in affected Envoy deployments.

Critical Impact

Attackers can exploit this Use-After-Free condition to trigger denial of service by causing Envoy to process DATA frames on streams that have already been reset, potentially crashing the proxy or corrupting internal state.

Affected Products

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

Discovery Timeline

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

Technical Details for CVE-2026-26311

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free). The flaw resides in source/common/http/filter_manager.cc within the FilterManager::decodeData method. The core issue is a missing validation check that allows processing of data on streams that have already been marked for destruction.

When an HTTP stream is reset, the ActiveStream object is scheduled for deferred deletion but remains valid in memory during this deletion window. If a DATA frame arrives on this stream immediately after the reset—particularly within the same packet processing cycle—the HTTP/2 codec invokes ActiveStream::decodeData, which cascades to FilterManager::decodeData.

The critical flaw is that FilterManager::decodeData fails to check the saw_downstream_reset_ flag before processing. As a result, it iterates over the decoder_filters_ list and invokes decodeData() on filters that have already received onDestroy(). This creates a classic Use-After-Free scenario where filters operate on invalidated state.

Root Cause

The root cause is a missing state validation in the FilterManager::decodeData method. The code path does not verify whether the stream has been marked as reset via the saw_downstream_reset_ flag before iterating through and invoking callbacks on decoder filters. This oversight allows the filter chain to execute on a logically destroyed stream during the deferred deletion window.

Attack Vector

The attack leverages network-based access to send carefully timed HTTP/2 requests. An attacker can trigger the vulnerability by:

  1. Initiating an HTTP/2 stream to a vulnerable Envoy proxy
  2. Sending a reset frame (RST_STREAM) to trigger stream cleanup
  3. Immediately following with a DATA frame on the same stream within the same processing cycle
  4. The DATA frame arrives before the deferred deletion completes, causing filters to execute on the zombie stream

This race condition is exploitable over the network without requiring authentication or user interaction. The attack complexity is considered high due to the precise timing requirements, but successful exploitation results in denial of service through proxy crashes or state corruption.

Detection Methods for CVE-2026-26311

Indicators of Compromise

  • Unexpected Envoy proxy crashes or restarts, particularly during high-traffic periods
  • Log entries indicating stream processing errors or filter callback failures after stream resets
  • HTTP/2 connection anomalies with rapid stream reset and data frame sequences
  • Core dumps or crash reports referencing FilterManager::decodeData or ActiveStream objects

Detection Strategies

  • Monitor Envoy access and error logs for stream reset followed by unexpected data processing events
  • Implement network traffic analysis to detect anomalous HTTP/2 frame sequences targeting stream race conditions
  • Deploy crash monitoring and automatic restart detection for Envoy instances
  • Use runtime memory safety tools (such as ASan) in development environments to detect UAF conditions

Monitoring Recommendations

  • Enable detailed HTTP/2 frame logging in Envoy to capture stream lifecycle events
  • Set up alerting for abnormal Envoy process terminations or memory corruption signals
  • Monitor HTTP/2 connection metrics for unusual patterns in stream reset rates
  • Implement health checks that can detect Envoy instances in corrupted states

How to Mitigate CVE-2026-26311

Immediate Actions Required

  • Upgrade Envoy to patched versions: 1.37.1, 1.36.5, 1.35.8, or 1.34.13 immediately
  • Review deployment configurations and prioritize patching internet-facing Envoy instances
  • Monitor Envoy instances for signs of exploitation attempts or unexpected crashes
  • Consider implementing additional network-level protections to rate-limit HTTP/2 connections during the patching window

Patch Information

Envoyproxy has released security patches addressing this vulnerability. The fix ensures proper validation of the saw_downstream_reset_ flag before processing data on streams. Organizations should upgrade to the following fixed versions based on their deployment branch:

BranchFixed Version
1.37.x1.37.1
1.36.x1.36.5
1.35.x1.35.8
1.34.x1.34.13

For complete details, refer to the GitHub Security Advisory GHSA-84xm-r438-86px.

Workarounds

  • Deploy a Web Application Firewall (WAF) or reverse proxy in front of Envoy to filter malicious HTTP/2 frame sequences
  • Consider temporarily disabling HTTP/2 support if feasible for your environment until patches can be applied
  • Implement network segmentation to limit exposure of vulnerable Envoy instances
  • Enable process isolation and resource limits to contain the impact of potential crashes
bash
# Example: Check current Envoy version
envoy --version

# Example: Upgrade Envoy using container image (adjust tag to appropriate patched version)
docker pull envoyproxy/envoy:v1.37.1
docker tag envoyproxy/envoy:v1.37.1 envoyproxy/envoy:latest

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechEnvoyproxy

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-26310: Envoyproxy Envoy DOS Vulnerability

  • CVE-2026-26330: Envoyproxy Envoy DOS Vulnerability

  • CVE-2024-27919: Envoyproxy Envoy DoS Vulnerability

  • CVE-2025-30157: Envoyproxy Envoy DOS 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