Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2026-29772

CVE-2026-29772: Astro @astrojs/node DOS Vulnerability

CVE-2026-29772 is a denial of service vulnerability in Astro's @astrojs/node adapter that allows attackers to crash servers via JSON payload. This article covers the technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-29772 Overview

CVE-2026-29772 is a Resource Exhaustion vulnerability affecting Astro, a popular web framework. Prior to version 10.0.0, Astro's Server Islands POST handler buffers and parses the full request body as JSON without enforcing a size limit. Because JSON.parse() allocates a V8 heap object for every element in the input, a crafted payload of many small JSON objects achieves approximately 15x memory amplification (wire bytes to heap bytes), allowing a single unauthenticated request to exhaust the process heap and crash the server.

The /_server-islands/[name] route is registered on all Astro SSR apps regardless of whether any component uses server:defer, and the body is parsed before the island name is validated, making any Astro SSR app with the Node standalone adapter vulnerable to this attack.

Critical Impact

Unauthenticated attackers can crash Astro SSR applications with a single malicious request, causing complete denial of service through memory exhaustion.

Affected Products

  • Astro @astrojs/node versions prior to 10.0.0
  • Astro SSR applications using the Node standalone adapter
  • Any Astro deployment with Server-Side Rendering enabled

Discovery Timeline

  • 2026-03-24 - CVE-2026-29772 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-29772

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue lies in how Astro handles incoming POST requests to its Server Islands endpoint. The Server Islands feature, designed to enable deferred component rendering, exposes a route at /_server-islands/[name] that accepts JSON payloads.

The vulnerable code path buffers the entire request body in memory before passing it to JSON.parse(). JavaScript's V8 engine allocates individual heap objects for each parsed JSON element, creating a significant memory amplification effect. Testing has shown that a carefully crafted payload containing many small JSON objects can achieve approximately 15x memory amplification from wire bytes to heap bytes.

What makes this vulnerability particularly dangerous is that the route exists on all Astro SSR applications, regardless of whether they actually use the server:defer directive. Furthermore, the JSON parsing occurs before any validation of the island name parameter, meaning there is no opportunity to reject invalid requests before memory allocation occurs.

Root Cause

The root cause is the absence of request body size limits in the Server Islands POST handler. The application reads the complete request body into memory without any safeguards, then parses it as JSON without considering the memory implications of V8's object allocation strategy for large or deeply nested JSON structures.

Attack Vector

This vulnerability is exploitable over the network by any unauthenticated attacker who can send HTTP POST requests to the target application. The attack requires no user interaction and has low complexity to execute.

An attacker constructs a JSON payload containing thousands of small objects or arrays, which when parsed by JSON.parse(), causes V8 to allocate significantly more heap memory than the original payload size. By sending one or more such requests, the attacker can exhaust the Node.js process heap, causing the application to crash with an out-of-memory error.

The attack targets the /_server-islands/[name] endpoint, which is accessible on any Astro SSR deployment using the Node adapter, even if the application doesn't explicitly use Server Islands features.

Detection Methods for CVE-2026-29772

Indicators of Compromise

  • Unusual spikes in memory usage on Node.js processes running Astro applications
  • Application crashes with out-of-memory errors in Node.js
  • Large POST requests to /_server-islands/* endpoints in access logs
  • Repeated requests from single IP addresses targeting Server Islands routes

Detection Strategies

  • Monitor Node.js heap memory usage and set alerts for abnormal growth patterns
  • Implement web application firewall rules to detect oversized POST bodies targeting /_server-islands/ paths
  • Review access logs for suspicious POST request patterns to Server Islands endpoints
  • Track process restart frequency to identify potential DoS attacks causing crashes

Monitoring Recommendations

  • Configure application performance monitoring to track V8 heap allocation rates
  • Implement request body size logging for Server Islands endpoints
  • Set up alerts for Node.js process terminations related to memory exhaustion
  • Monitor network traffic for large JSON payloads directed at SSR application endpoints

How to Mitigate CVE-2026-29772

Immediate Actions Required

  • Upgrade Astro to version 10.0.0 or later immediately
  • If immediate patching is not possible, implement request body size limits at the reverse proxy or load balancer level
  • Consider temporarily blocking POST requests to /_server-islands/* if Server Islands are not in use
  • Review application logs for potential exploitation attempts

Patch Information

This vulnerability has been patched in Astro version 10.0.0. The fix implements proper request body size limits on the Server Islands POST handler, preventing the memory amplification attack. Organizations should upgrade to version 10.0.0 or later to remediate this vulnerability.

For detailed information about the patch and the security advisory, refer to the GitHub Security Advisory GHSA-3rmj-9m5h-8fpv.

Workarounds

  • Configure reverse proxy (nginx, Apache, or cloud load balancer) to limit request body sizes for /_server-islands/* routes
  • Implement rate limiting on Server Islands endpoints to slow potential attackers
  • Deploy web application firewall rules to block unusually large JSON POST requests
  • If Server Islands functionality is not required, consider disabling or blocking access to the endpoint at the network level
bash
# Nginx configuration to limit request body size for Server Islands endpoint
location /_server-islands/ {
    client_max_body_size 1m;
    limit_req zone=server_islands burst=10 nodelay;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAstro

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.01%

  • 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-770
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27729: Astro @astrojs/node DoS Vulnerability

  • CVE-2026-33768: Astro Vercel Auth Bypass Vulnerability

  • CVE-2026-33769: Astro Web Framework SSRF Vulnerability

  • CVE-2026-27829: Astro Framework SSRF Vulnerability
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