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

CVE-2024-2653: amphp/http DoS Vulnerability

CVE-2024-2653 is a denial of service vulnerability in amphp/http caused by unbounded CONTINUATION frame buffering, leading to memory exhaustion. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-2653 Overview

CVE-2024-2653 is a denial of service vulnerability affecting the amphp/http library, a popular asynchronous HTTP client and server implementation for PHP. The vulnerability exists in the handling of HTTP/2 CONTINUATION frames, where the library collects these frames in an unbounded buffer without checking size limits until it receives the END_HEADERS flag. This improper resource management can be exploited by remote attackers to cause an Out-of-Memory (OOM) crash, resulting in service unavailability.

Critical Impact

Remote attackers can exploit this vulnerability to crash amphp/http-based applications by sending specially crafted HTTP/2 CONTINUATION frames, causing memory exhaustion and denial of service without requiring authentication.

Affected Products

  • amphp/http (PHP HTTP library)
  • amphp/http-client (PHP HTTP client library)
  • Applications and services built using vulnerable amphp/http versions

Discovery Timeline

  • April 3, 2024 - CVE-2024-2653 published to NVD
  • November 4, 2025 - Last updated in NVD database

Technical Details for CVE-2024-2653

Vulnerability Analysis

This vulnerability stems from improper handling of HTTP/2 CONTINUATION frames within the amphp/http library. In the HTTP/2 protocol, CONTINUATION frames are used to continue a sequence of header block fragments when headers are too large to fit in a single HEADERS frame. The protocol expects implementations to properly manage memory when accumulating these fragments.

The amphp/http library fails to implement proper bounds checking during the accumulation of CONTINUATION frames. Instead of validating buffer size incrementally as frames arrive, the library continues to collect frame data into an unbounded buffer. Size validation only occurs after the END_HEADERS flag is received, which signals the completion of the header block. This design flaw allows an attacker to send an arbitrarily large number of CONTINUATION frames before triggering the size check, leading to memory exhaustion.

Root Cause

The root cause is a resource exhaustion vulnerability due to improper input validation in the HTTP/2 frame processing logic. The library's implementation defers size limit checks until header transmission is complete rather than enforcing limits incrementally. This violates secure coding practices that require input validation at boundaries and resource consumption limits during data accumulation.

Attack Vector

An attacker can exploit this vulnerability remotely over the network without requiring any authentication or user interaction. The attack involves establishing an HTTP/2 connection to a vulnerable server or client and sending a sequence of CONTINUATION frames without the END_HEADERS flag set. Each frame adds data to the buffer without triggering size validation. By continuing to send these frames, the attacker can force the target to allocate memory until the system runs out of available memory, triggering an OOM condition and crashing the application.

The attack is particularly effective because HTTP/2 connections are typically persistent and multiplexed, allowing an attacker to maintain the malicious stream while the target continues normal operations until memory is exhausted.

Detection Methods for CVE-2024-2653

Indicators of Compromise

  • Unusual memory consumption spikes on servers running amphp/http-based applications
  • Application crashes with OOM (Out-of-Memory) errors in amphp/http components
  • HTTP/2 connections with abnormally high numbers of CONTINUATION frames
  • Increased frequency of process restarts for PHP-based HTTP services

Detection Strategies

  • Monitor memory usage patterns for amphp/http application processes to detect gradual memory exhaustion
  • Implement HTTP/2 frame inspection at network level to detect streams with excessive CONTINUATION frames
  • Configure application-level logging to capture HTTP/2 frame statistics and identify anomalous patterns
  • Deploy SentinelOne Singularity Platform to detect resource exhaustion attacks and memory anomalies

Monitoring Recommendations

  • Set up memory threshold alerts for processes running amphp/http-based services
  • Monitor HTTP/2 connection statistics for unusual frame patterns or connection durations
  • Track application restart frequency to identify potential exploitation attempts
  • Review network traffic for connections maintaining HTTP/2 streams without END_HEADERS completion

How to Mitigate CVE-2024-2653

Immediate Actions Required

  • Update amphp/http to the latest patched version immediately
  • Update amphp/http-client if used in your application stack
  • Implement memory limits at the process or container level to prevent system-wide impact
  • Consider temporarily disabling HTTP/2 support if patching is not immediately possible

Patch Information

Security patches addressing this vulnerability have been released by the amphp project maintainers. Users should consult the GitHub Security Advisory GHSA-qjfw-cvjf-f4fm for amphp/http and GitHub Security Advisory GHSA-w8gf-g2vq-j2f4 for amphp/http-client for specific version information and upgrade instructions. Additional coordination details are available through CERT Vulnerability Note #421644.

Workarounds

  • Configure reverse proxies (nginx, HAProxy) to limit HTTP/2 header sizes and frame counts before requests reach the application
  • Implement process-level memory limits using PHP's memory_limit directive or container resource constraints
  • Deploy rate limiting on HTTP/2 connections to reduce the effectiveness of exploitation attempts
  • Consider using HTTP/1.1 only until patches can be applied if HTTP/2 is not a strict requirement
bash
# Example PHP memory limit configuration in php.ini
memory_limit = 256M

# Example Docker container memory limit
docker run --memory="512m" --memory-swap="512m" your-amphp-app

# Example nginx HTTP/2 header size limit (upstream proxy)
http2_max_header_size 16k;
http2_max_field_size 4k;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAmphp

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability3.94%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Openwall OSS Security List Update

  • GitHub Security Advisory GHSA-w8gf-g2vq-j2f4

  • GitHub Security Advisory GHSA-qjfw-cvjf-f4fm

  • CERT Vulnerability Note #421644
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS 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