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

CVE-2025-67779: Facebook React DoS Vulnerability

CVE-2025-67779 is a denial of service flaw in Facebook React Server Components that causes infinite loops through unsafe deserialization. This article covers technical details, affected versions, security impact, and mitigation.

Published: March 11, 2026

CVE-2025-67779 Overview

CVE-2025-67779 is an Insecure Deserialization vulnerability affecting React Server Components that allows attackers to cause a denial of service through specially crafted HTTP requests. This vulnerability represents an incomplete fix for CVE-2025-55184, where the original patch failed to prevent a denial of service attack in a specific case. The flaw enables unsafe deserialization of payloads sent to Server Function endpoints, which can trigger an infinite loop that hangs the server process and prevents future HTTP requests from being served.

Critical Impact

Unauthenticated attackers can remotely cause complete server unavailability by sending malicious payloads to Server Function endpoints, resulting in an infinite loop that hangs the Node.js process.

Affected Products

  • Facebook React versions 19.0.2, 19.1.3, and 19.2.2
  • Vercel Next.js 15.6.0 (including all canary releases)
  • Vercel Next.js 16.1.0 (including all canary releases)

Discovery Timeline

  • December 12, 2025 - CVE-2025-67779 published to NVD
  • December 12, 2025 - Last updated in NVD database

Technical Details for CVE-2025-67779

Vulnerability Analysis

This vulnerability stems from inadequate input validation during the deserialization of incoming HTTP request payloads destined for React Server Function endpoints. When React Server Components processes certain malformed payloads, the deserialization logic enters a state where it becomes trapped in an infinite loop. This effectively freezes the Node.js event loop, causing the server to become unresponsive to all subsequent requests.

The vulnerability is particularly concerning because it requires no authentication or special privileges to exploit. Any network-accessible React Server Components deployment is potentially at risk, and a single malicious request can render the entire application unavailable until the process is manually restarted.

Root Cause

The root cause lies in the incomplete remediation of CVE-2025-55184. The original patch addressed the primary deserialization vulnerability but failed to account for an edge case that allows specially crafted payloads to bypass the fix. The deserialization routine lacks proper termination conditions or recursion depth limits when processing certain payload structures, enabling attackers to construct inputs that cause unbounded processing.

Attack Vector

An attacker can exploit this vulnerability by sending a crafted HTTP POST request to any Server Function endpoint. The payload must be structured in a way that triggers the specific edge case not covered by the CVE-2025-55184 fix. Since Server Functions are a core feature of React Server Components and are commonly exposed to handle form submissions and other user interactions, the attack surface is broad across modern React applications using this architecture.

The attack requires no authentication and can be executed remotely by any client capable of sending HTTP requests to the target server. Once the malicious payload is processed, the server enters an infinite loop, consuming CPU resources and blocking the event loop, which prevents any other requests from being processed.

Detection Methods for CVE-2025-67779

Indicators of Compromise

  • Sudden spike in CPU utilization on servers running React Server Components applications
  • Server processes becoming unresponsive without crashing or generating error logs
  • Accumulated pending HTTP requests in load balancer or proxy queues
  • Application health check failures without corresponding application-level errors

Detection Strategies

  • Monitor Node.js process CPU usage for sustained 100% utilization patterns that indicate infinite loop conditions
  • Implement request timeout monitoring to detect requests that exceed normal processing duration thresholds
  • Configure application performance monitoring (APM) to alert on event loop blocking events
  • Review HTTP access logs for unusual POST requests to Server Function endpoints with atypical payload sizes or patterns

Monitoring Recommendations

  • Deploy real-time alerting for CPU saturation on application servers running React applications
  • Implement health check endpoints that verify event loop responsiveness, not just process availability
  • Configure load balancers to detect and remove unresponsive backend instances from rotation
  • Enable detailed request logging for Server Function endpoints to facilitate post-incident analysis

How to Mitigate CVE-2025-67779

Immediate Actions Required

  • Upgrade React to a patched version that fully addresses this vulnerability
  • Review the React Security Advisory for vendor-specific guidance
  • Upgrade Next.js to a patched version if using Vercel's framework
  • Implement request rate limiting on Server Function endpoints as a temporary defense

Patch Information

Facebook has released security advisories detailing the vulnerability and remediation steps. Organizations should consult the Facebook Security Advisory for CVE-2025-67779 for the latest patched versions of React. Next.js users should similarly check for updated releases that incorporate the React fix.

Workarounds

  • Deploy a Web Application Firewall (WAF) with rules to inspect and sanitize payloads before they reach Server Function endpoints
  • Implement request timeout enforcement at the reverse proxy or load balancer level to terminate long-running requests
  • Use process managers like PM2 or systemd with automatic restart capabilities to recover from hung processes
  • Consider temporarily disabling Server Functions if they are not critical to application functionality until patching can be completed
bash
# Example: Configure request timeout in Nginx as a mitigation layer
# Add to nginx.conf server or location block for Server Function routes
proxy_read_timeout 30s;
proxy_connect_timeout 10s;
proxy_send_timeout 30s;

# Example: PM2 configuration for automatic restart on unresponsive process
# ecosystem.config.js
# max_memory_restart: '500M'
# restart_delay: 3000
# max_restarts: 10

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFacebook React

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.12%

  • 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-502

  • CWE-400
  • Vendor Resources
  • React Blog Post on DoS and Code Exposure

  • Facebook Security Advisory CVE-2025-67779
  • Related CVEs
  • CVE-2025-55184: Facebook React Server Components DoS Flaw

  • CVE-2025-55183: Facebook React Information Disclosure Flaw

  • CVE-2025-55182: Facebook React RCE 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