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
    • 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-2025-67725

CVE-2025-67725: Tornadoweb Tornado DoS Vulnerability

CVE-2025-67725 is a denial of service flaw in Tornadoweb Tornado that allows attackers to block the server's event loop using malformed HTTP requests. This article covers technical details, affected versions, and mitigation.

Published: April 28, 2026

CVE-2025-67725 Overview

A Denial of Service (DoS) vulnerability has been identified in Tornado, a popular Python web framework and asynchronous networking library. The vulnerability exists in versions 6.5.2 and below, where a single maliciously crafted HTTP request can block the server's event loop for an extended period. This is caused by an algorithmic complexity issue in the HTTPHeaders.add method, which accumulates header values using string concatenation when the same header name is repeated.

Critical Impact

A single malicious HTTP request can block Tornado's event loop, causing complete service unavailability for all connected clients. The severity varies based on the max_header_size configuration—higher limits dramatically increase the attack impact.

Affected Products

  • Tornadoweb Tornado versions 6.5.2 and below

Discovery Timeline

  • 2025-12-12 - CVE-2025-67725 published to NVD
  • 2025-12-22 - Last updated in NVD database

Technical Details for CVE-2025-67725

Vulnerability Analysis

This vulnerability is classified as CWE-400 (Uncontrolled Resource Consumption), manifesting as an algorithmic complexity attack against Tornado's HTTP header parsing mechanism. The core issue resides in the HTTPHeaders.add method, which handles incoming HTTP headers.

When processing HTTP requests, the method accumulates values for repeated header names using string concatenation. Due to Python's string immutability, each concatenation operation creates a new string object and copies the entire existing string content. This results in O(n²) time complexity, where n represents the total size of concatenated header values.

An attacker can exploit this by sending a single HTTP request with numerous repetitions of the same header name. Each subsequent header value triggers a full string copy operation, causing exponential processing time increases. The impact severity correlates directly with the server's max_header_size configuration—servers with the default 64KB limit experience lower impact, while servers with increased limits face significantly greater risk.

Root Cause

The root cause is the use of inefficient string concatenation for accumulating HTTP header values in the HTTPHeaders.add method. Python strings are immutable, meaning each concatenation creates a new string object and copies all existing data. When an attacker sends many headers with the same name, the repeated concatenations cause quadratic time complexity, blocking the asynchronous event loop and preventing the server from handling any other requests.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker sends a specially crafted HTTP request containing numerous repetitions of the same header name with values designed to maximize the concatenation overhead. The Tornado server processes this request synchronously within its event loop, and the O(n²) string operations block the entire loop, denying service to all legitimate clients.

The vulnerability can be exploited by crafting an HTTP request with repeated headers. For example, sending thousands of instances of the same header name with varying values causes the HTTPHeaders.add method to perform increasingly expensive string concatenation operations. See the GitHub Security Advisory GHSA-c98p-7wgm-6p64 for detailed technical information on the exploitation mechanism.

Detection Methods for CVE-2025-67725

Indicators of Compromise

  • HTTP requests with an abnormally high number of repeated headers (e.g., hundreds or thousands of instances of the same header name)
  • Sudden increases in Tornado server response latency or complete unresponsiveness
  • Event loop blocking patterns detected in application performance monitoring
  • Unusual CPU consumption during HTTP request processing phases

Detection Strategies

  • Implement network-level monitoring for HTTP requests with excessive header repetition
  • Deploy web application firewalls (WAF) with rules to detect and block requests containing abnormal header patterns
  • Monitor Tornado application logs for signs of event loop delays or request processing timeouts
  • Use application performance monitoring (APM) tools to track request processing times and identify anomalies

Monitoring Recommendations

  • Set up alerts for Tornado server response time degradation exceeding baseline thresholds
  • Monitor network traffic for requests approaching or exceeding the configured max_header_size limit
  • Implement real-time logging of HTTP header counts per request to identify potential attack patterns
  • Track CPU utilization on servers running Tornado applications for sudden spikes during request processing

How to Mitigate CVE-2025-67725

Immediate Actions Required

  • Upgrade Tornado to version 6.5.3 or later immediately
  • Review and reduce max_header_size configuration to the default 64KB if it has been increased
  • Deploy rate limiting at the network edge to mitigate active exploitation attempts
  • Monitor affected servers for signs of DoS attacks until patches are applied

Patch Information

The vulnerability is fixed in Tornado version 6.5.3. The patch addresses the algorithmic complexity issue in the HTTPHeaders.add method by replacing inefficient string concatenation with a more efficient approach. The fix is available in GitHub Release v6.5.3, and the specific commit can be reviewed at GitHub Commit 771472cf.

Workarounds

  • Reduce the max_header_size configuration to the default value of 64KB to limit attack severity
  • Deploy a reverse proxy or load balancer in front of Tornado that can limit the number of headers per request
  • Implement request filtering at the edge to drop requests with excessive header repetition
  • Consider temporarily increasing server resources or deploying additional instances to absorb attack impact until patching is complete
bash
# Upgrade Tornado to the patched version
pip install --upgrade tornado>=6.5.3

# Verify the installed version
pip show tornado | grep Version

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechTornadoweb

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.41%

  • 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
  • Technical References
  • GitHub Release v6.5.3
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-c98p-7wgm-6p64
  • Related CVEs
  • CVE-2025-67726: Tornadoweb Tornado DoS Vulnerability

  • CVE-2024-52804: Tornadoweb Tornado DoS Vulnerability

  • CVE-2023-28370: Tornadoweb Tornado Open Redirect Flaw
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