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

CVE-2025-27209: Node.js v24 DoS Vulnerability

CVE-2025-27209 is a HashDoS vulnerability in Node.js v24.x caused by V8's rapidhash implementation. Attackers can generate hash collisions to trigger denial of service. This article covers technical details, impact, and fixes.

Updated: January 22, 2026

CVE-2025-27209 Overview

A HashDoS (Hash Collision Denial of Service) vulnerability exists in Node.js v24.x due to changes in the V8 JavaScript engine's string hashing implementation. The V8 release used in Node.js v24.0.0 has switched to using rapidhash for computing string hashes, which re-introduces a hash collision vulnerability. An attacker who can control the strings being hashed can generate many hash collisions, even without knowing the hash seed, leading to severe performance degradation.

Critical Impact

Attackers can cause denial of service by forcing hash table operations to degrade from O(1) to O(n) complexity through controlled hash collisions, potentially rendering Node.js applications unresponsive.

Affected Products

  • Node.js v24.x
  • Applications using V8 engine with rapidhash string hashing
  • Node.js servers processing user-controlled string input

Discovery Timeline

  • 2025-07-18 - CVE-2025-27209 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2025-27209

Vulnerability Analysis

This vulnerability is classified under CWE-407 (Inefficient Algorithmic Complexity), which describes a condition where an algorithm's worst-case computational complexity can be triggered by an attacker through crafted input. In the context of hash tables, this attack pattern is commonly known as HashDoS.

Hash tables are fundamental data structures used extensively in JavaScript engines for object property lookups, Map/Set operations, and internal runtime operations. When hash collisions occur, items that hash to the same bucket must be searched linearly, degrading performance from constant time O(1) to linear time O(n). The rapidhash implementation introduced in V8 for Node.js v24.x contains a weakness that allows attackers to predict and generate colliding strings without requiring knowledge of the hash seed.

Root Cause

The root cause lies in the rapidhash algorithm's implementation for string hashing in the V8 JavaScript engine. Traditional hash-flooding mitigations rely on randomized hash seeds to make collision generation computationally infeasible without knowing the seed. However, the rapidhash implementation used in Node.js v24.x contains properties that allow an attacker to construct colliding strings independently of the hash seed value. This effectively bypasses the standard HashDoS protections that have been in place since the original HashDoS attacks were discovered in 2011.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted requests containing strings designed to collide in the hash table. Common attack scenarios include:

  • Submitting JSON payloads with carefully chosen property names
  • Sending URL parameters or form data with colliding key names
  • Providing input to any application logic that stores user-controlled strings in hash-based data structures

The attacker crafts multiple strings that, when hashed by the rapidhash algorithm, produce identical hash values. When these strings are used as keys in objects, Maps, or Sets, they force worst-case behavior in hash table operations. This can cause CPU exhaustion as the application spends excessive time resolving collisions, effectively denying service to legitimate users.

Detection Methods for CVE-2025-27209

Indicators of Compromise

  • Abnormally high CPU utilization on Node.js processes without corresponding increase in legitimate traffic
  • Significant increase in response latency for HTTP endpoints that process user-controlled string data
  • Memory patterns showing hash table buckets with unusually long collision chains
  • Requests containing large numbers of keys with similar patterns or unusual character sequences

Detection Strategies

  • Monitor Node.js application response times for sudden degradation patterns that may indicate hash collision attacks
  • Implement request rate limiting on endpoints that accept user-controlled string keys in JSON bodies or query parameters
  • Deploy application performance monitoring (APM) tools to detect anomalous CPU spikes during request processing
  • Analyze incoming request payloads for patterns consistent with known hash collision generation techniques

Monitoring Recommendations

  • Configure alerting for sustained CPU utilization above baseline thresholds on Node.js application servers
  • Implement logging for requests with unusually large numbers of unique keys or parameters
  • Monitor garbage collection metrics as hash collision attacks may also impact memory behavior
  • Track request processing times at the application layer to identify endpoints under attack

How to Mitigate CVE-2025-27209

Immediate Actions Required

  • Evaluate whether your applications are running on Node.js v24.x and prioritize upgrading to patched versions
  • Implement input validation to limit the number of keys accepted in JSON objects and query parameters
  • Deploy rate limiting and request size restrictions at the load balancer or reverse proxy level
  • Consider temporarily downgrading to a Node.js version not affected by this vulnerability if patching is not immediately available

Patch Information

Security patches addressing this vulnerability are detailed in the Node.js July 2025 Security Releases blog post. Organizations should review this advisory and apply the recommended updates for Node.js v24.x deployments. Additional discussion and technical context is available on the OpenWall OSS Security mailing list.

Workarounds

  • Limit the maximum number of object keys or Map/Set entries accepted from user input
  • Implement request payload size limits to reduce the impact of collision attacks
  • Use alternative data structures that are not susceptible to hash collision attacks for processing untrusted input
  • Deploy Web Application Firewall (WAF) rules to detect and block potential HashDoS attack patterns
bash
# Example: Configure nginx to limit request body size and rate
# Add to nginx.conf or server block

# Limit request body size to 1MB
client_max_body_size 1m;

# Rate limiting zone definition
limit_req_zone $binary_remote_addr zone=api_limit:10m rate=10r/s;

# Apply rate limiting to API endpoints
location /api/ {
    limit_req zone=api_limit burst=20 nodelay;
    proxy_pass http://nodejs_backend;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNode

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-407
  • Technical References
  • Node.js July 2025 Security Blog

  • OpenWall OSS Security Discussion
  • Related CVEs
  • CVE-2026-21716: Node.js Permission Bypass Vulnerability

  • CVE-2024-27982: Node.js HTTP Request Smuggling Vulnerability

  • CVE-2025-23083: Node.js Privilege Escalation Vulnerability

  • CVE-2023-30584: Node.js Path Traversal 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