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-2025-49763

CVE-2025-49763: Apache Traffic Server DoS Vulnerability

CVE-2025-49763 is a denial of service vulnerability in Apache Traffic Server caused by unlimited ESI plugin inclusion depth, leading to excessive memory consumption. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-49763 Overview

CVE-2025-49763 is a Resource Exhaustion vulnerability affecting the Edge Side Includes (ESI) plugin in Apache Traffic Server. The ESI plugin lacks a limit for maximum inclusion depth, which allows attackers to craft malicious ESI instructions that trigger excessive memory consumption. This vulnerability can be exploited remotely without authentication to cause denial of service conditions on affected servers.

Critical Impact

Remote attackers can exhaust server memory resources by inserting deeply nested ESI include directives, potentially causing complete service disruption for applications relying on Apache Traffic Server.

Affected Products

  • Apache Traffic Server versions 10.0.0 through 10.0.5
  • Apache Traffic Server versions 9.0.0 through 9.2.10

Discovery Timeline

  • 2025-06-19 - CVE-2025-49763 published to NVD
  • 2025-07-01 - Last updated in NVD database

Technical Details for CVE-2025-49763

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption). The ESI plugin in Apache Traffic Server processes Edge Side Includes, which allow dynamic content assembly at the edge. The plugin recursively processes ESI include directives but fails to enforce a maximum recursion or inclusion depth limit.

When processing nested ESI instructions, each level of inclusion consumes additional memory. Without a configurable limit, an attacker can craft ESI content with deeply nested <esi:include> tags that force the server to allocate memory recursively until system resources are exhausted. This network-accessible attack requires no privileges or user interaction, making it particularly dangerous for internet-facing Apache Traffic Server deployments.

Root Cause

The root cause is the absence of depth validation in the ESI parsing logic. When the ESI plugin encounters an <esi:include> directive, it fetches and processes the included content. If that content also contains ESI directives, the plugin continues recursively without checking how deep the inclusion chain has grown. This design flaw allows unbounded recursion that maps directly to unbounded memory allocation.

Attack Vector

The attack vector is network-based. An attacker can exploit this vulnerability by:

  1. Crafting malicious ESI content with deeply nested include directives
  2. Hosting the malicious content on a server accessible to the Traffic Server
  3. Triggering the Traffic Server to process the malicious ESI content through a legitimate request

The vulnerability can be triggered through any request path that causes the ESI plugin to process attacker-controlled content. Since the attack requires no authentication and can be executed remotely, any publicly accessible Apache Traffic Server with the ESI plugin enabled is at risk.

Detection Methods for CVE-2025-49763

Indicators of Compromise

  • Unusual memory growth patterns in Apache Traffic Server processes
  • Server processes consuming significantly more memory than typical baseline
  • ESI-related log entries showing deep nesting or recursive include patterns
  • Service degradation or crashes coinciding with specific request patterns

Detection Strategies

  • Monitor Apache Traffic Server memory usage for anomalous spikes that correlate with incoming requests
  • Implement application-level logging to track ESI include depth during content processing
  • Configure alerts for Traffic Server process memory exceeding defined thresholds
  • Review access logs for requests targeting ESI-processed content from suspicious sources

Monitoring Recommendations

  • Establish memory usage baselines for Apache Traffic Server instances and alert on significant deviations
  • Deploy network-level monitoring to identify unusually large or recursive request patterns
  • Enable verbose ESI plugin logging during investigation periods to trace include chains
  • Integrate Traffic Server metrics with SIEM solutions for correlation with other security events

How to Mitigate CVE-2025-49763

Immediate Actions Required

  • Upgrade Apache Traffic Server to version 9.2.11 or 10.0.6 immediately
  • If immediate patching is not possible, apply the --max-inclusion-depth configuration option to limit recursion
  • Review ESI plugin usage and disable it on servers where ESI functionality is not required
  • Monitor affected servers for signs of exploitation until patches are applied

Patch Information

Apache has released security patches addressing this vulnerability. Users running Apache Traffic Server versions 9.0.0 through 9.2.10 should upgrade to version 9.2.11. Users running versions 10.0.0 through 10.0.5 should upgrade to version 10.0.6. These patched versions implement proper inclusion depth limiting in the ESI plugin.

For detailed patch information and discussion, refer to the Apache Mailing List Discussion.

Workarounds

  • Configure the new --max-inclusion-depth setting for the ESI plugin to enforce a reasonable recursion limit
  • Disable the ESI plugin entirely if Edge Side Includes functionality is not actively used
  • Implement resource limits at the operating system level to cap memory consumption per process
  • Deploy a web application firewall (WAF) with rules to detect and block requests containing excessively nested ESI directives
bash
# Configuration example - Set maximum ESI inclusion depth
# Add to Traffic Server plugin configuration
traffic_ctl config set proxy.config.http.esi.max_inclusion_depth 10

# Alternatively, configure via records.config
# CONFIG proxy.config.http.esi.max_inclusion_depth INT 10

# To disable ESI plugin entirely if not needed
# Remove or comment out esi.so from plugin.config

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechApache Traffic Server

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.40%

  • Known ExploitedNo
  • 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-400
  • Vendor Resources
  • Apache Mailing List Discussion
  • Related CVEs
  • CVE-2025-65114: Apache Traffic Server DoS Vulnerability

  • CVE-2025-58136: Apache Traffic Server DoS Vulnerability

  • CVE-2020-9494: Apache Traffic Server DoS Vulnerability

  • CVE-2025-31698: Apache Traffic Server Auth Bypass 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