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-2024-30255

CVE-2024-30255: Envoyproxy Envoy DoS Vulnerability

CVE-2024-30255 is a denial of service vulnerability in Envoyproxy Envoy caused by HTTP/2 CONTINUATION frame floods leading to CPU exhaustion. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-30255 Overview

CVE-2024-30255 is a CPU exhaustion vulnerability affecting Envoy, a cloud-native, open source edge and service proxy. The HTTP/2 protocol stack in vulnerable Envoy versions contains a flaw in how it processes CONTINUATION frames, allowing attackers to trigger denial of service conditions through resource exhaustion.

The vulnerability exists because Envoy's HTTP/2 codec permits clients to send an unlimited number of CONTINUATION frames even after exceeding Envoy's header map limits. By sending a sequence of CONTINUATION frames without the END_HEADERS bit set, an attacker can cause significant CPU utilization—approximately 1 core per 300Mbit/s of traffic—ultimately resulting in denial of service through CPU exhaustion.

Critical Impact

Remote attackers can exhaust CPU resources on Envoy proxy servers without authentication, causing complete denial of service for downstream applications and services relying on the proxy.

Affected Products

  • Envoy versions prior to 1.29.3
  • Envoy versions prior to 1.28.2
  • Envoy versions prior to 1.27.4
  • Envoy versions prior to 1.26.8

Discovery Timeline

  • 2024-04-04 - CVE-2024-30255 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2024-30255

Vulnerability Analysis

This vulnerability represents a classic resource exhaustion attack vector targeting the HTTP/2 protocol implementation. The HTTP/2 specification uses CONTINUATION frames to allow header blocks that exceed the maximum frame size to be transmitted in multiple frames. These frames must eventually be terminated with an END_HEADERS flag.

Envoy's HTTP/2 codec implementation fails to properly limit the number of CONTINUATION frames a client can send. While Envoy does enforce header map size limits, it continues accepting and processing CONTINUATION frames even after these limits are exceeded. This creates an asymmetric attack scenario where a relatively small amount of attacker bandwidth can consume disproportionate server CPU resources.

The attack efficiency is notable: consuming approximately 1 CPU core per 300Mbit/s of malicious traffic makes this attack viable even for attackers with moderate network resources. This vulnerability affects organizations using Envoy as a reverse proxy, service mesh sidecar, or API gateway, potentially disrupting entire microservice architectures.

Root Cause

The root cause is classified under CWE-390 (Detection of Error Condition Without Action). Envoy's HTTP/2 codec detects when header map limits are exceeded but fails to take appropriate action to terminate the connection or reject additional CONTINUATION frames. Instead, the codec continues processing incoming frames, consuming CPU cycles on each frame received. This implementation oversight allows the attack to proceed unchecked until system resources are exhausted.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker establishes an HTTP/2 connection to a vulnerable Envoy proxy and initiates a HEADERS frame. Instead of completing the header block normally, the attacker sends a continuous stream of CONTINUATION frames without setting the END_HEADERS bit.

Each CONTINUATION frame forces the server to process and attempt to decode header data, even when limits are exceeded. The attacker can sustain this attack from a single connection, making it difficult to distinguish from legitimate traffic without proper detection mechanisms.

The attack is particularly effective because HTTP/2 connections are typically long-lived and multiplexed, meaning a single malicious connection can coexist with legitimate traffic while consuming server resources. A proof-of-concept exploit is publicly available, demonstrating the practical exploitability of this vulnerability.

Detection Methods for CVE-2024-30255

Indicators of Compromise

  • Abnormally high CPU utilization on Envoy proxy instances without corresponding increase in legitimate traffic
  • HTTP/2 connections with excessive CONTINUATION frame counts in network traffic analysis
  • Increased connection durations for HTTP/2 sessions without proportional request completion
  • Envoy error logs showing header map limit exceeded warnings followed by continued frame processing

Detection Strategies

  • Monitor Envoy's built-in statistics for http2.header_overflow and http2.rx.continuation metrics showing abnormal ratios
  • Implement network-level detection rules to identify HTTP/2 streams with excessive CONTINUATION frames lacking END_HEADERS
  • Deploy application performance monitoring to correlate CPU spikes with HTTP/2 connection patterns
  • Use SentinelOne's Singularity platform for real-time process behavior analysis to detect CPU exhaustion attack patterns

Monitoring Recommendations

  • Configure alerting thresholds on Envoy proxy CPU utilization exceeding baseline by significant margins
  • Enable detailed HTTP/2 frame logging during incident investigation to identify attack sources
  • Implement connection rate limiting at the network edge to reduce attack amplification potential
  • Establish baseline metrics for CONTINUATION frame ratios in normal traffic for anomaly detection

How to Mitigate CVE-2024-30255

Immediate Actions Required

  • Upgrade Envoy to patched versions: 1.29.3, 1.28.2, 1.27.4, or 1.26.8 depending on your release branch
  • If immediate patching is not possible, disable HTTP/2 protocol for downstream connections as a temporary workaround
  • Review and enable rate limiting configurations on Envoy listeners to reduce attack surface
  • Monitor Envoy instances for signs of CPU exhaustion attacks during the upgrade window

Patch Information

Envoy has released security patches addressing this vulnerability across all supported release branches. Users should upgrade to the following versions based on their current deployment:

Current BranchPatched Version
1.29.x1.29.3
1.28.x1.28.2
1.27.x1.27.4
1.26.x1.26.8

Full details are available in the GitHub Security Advisory GHSA-j654-3ccm-vfmm.

Workarounds

  • Disable HTTP/2 support for downstream connections by configuring listeners to accept only HTTP/1.1
  • Implement connection limits and rate limiting at load balancers in front of Envoy instances
  • Deploy web application firewalls capable of inspecting HTTP/2 frame sequences for anomalous patterns
  • Consider temporarily routing traffic through HTTP/1.1-only paths for critical services until patching is complete
yaml
# Envoy listener configuration to disable HTTP/2 (workaround)
# Apply to downstream_protocol_config in listener configuration
listeners:
  - name: listener_0
    address:
      socket_address:
        address: 0.0.0.0
        port_value: 8080
    filter_chains:
      - filters:
          - name: envoy.filters.network.http_connection_manager
            typed_config:
              "@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
              codec_type: HTTP1
              # Forces HTTP/1.1 only, disabling vulnerable HTTP/2 stack

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechEnvoy

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability88.81%

  • Known ExploitedYes
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-390
  • Technical References
  • Openwall OSS-Security Discussion

  • Openwall OSS-Security Update

  • CERT Vulnerability Note #421644
  • Vendor Resources
  • GitHub Security Advisory GHSA-j654-3ccm-vfmm
  • Related CVEs
  • CVE-2026-26308: Envoyproxy Envoy Auth Bypass Vulnerability

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

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

  • CVE-2025-62409: Envoyproxy Envoy Buffer Overflow Flaw
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