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

CVE-2025-53620: Qwik City DoS Vulnerability

CVE-2025-53620 is a denial of service flaw in @builder.io/qwik-city that causes Node.js to exit when invalid QRL functions are sent. This article covers the technical details, affected versions, and mitigation steps.

Published: April 1, 2026

CVE-2025-53620 Overview

CVE-2025-53620 is a critical denial of service vulnerability affecting @builder.io/qwik-city, the meta-framework for Qwik. The vulnerability exists in how the server handles Qwik Server Action QRLs (Qwik Resource Locators). When a Server Action QRL is executed, the server dynamically loads the file containing the symbol. If an invalid qfunc is sent to the server, the resulting error is not properly handled, causing the Node.js process to exit unexpectedly.

Critical Impact

An unauthenticated remote attacker can crash the entire Node.js server process by sending a malformed Server Action request, resulting in complete service disruption.

Affected Products

  • @builder.io/qwik-city versions prior to 1.13.0
  • Applications built using the Qwik meta-framework with Server Actions enabled
  • Node.js deployments running vulnerable Qwik City applications

Discovery Timeline

  • 2025-07-09 - CVE-2025-53620 published to NVD
  • 2025-07-10 - Last updated in NVD database

Technical Details for CVE-2025-53620

Vulnerability Analysis

This vulnerability is classified under CWE-248 (Uncaught Exception), which occurs when an exception is thrown but not caught, leading to abnormal program termination. In the context of Qwik City, the server-side request handler for Server Actions fails to implement proper error handling when processing dynamically loaded QRL symbols.

When Qwik Server Actions are invoked, the framework dynamically resolves and loads the corresponding symbol from the specified file path. The vulnerability manifests when a malformed or invalid qfunc parameter is submitted to the server. Instead of gracefully handling the error and returning an appropriate HTTP error response, the unhandled exception propagates up the call stack and terminates the Node.js process.

This architectural flaw allows any unauthenticated network attacker to repeatedly crash the server with minimal effort, as no authentication or special privileges are required to invoke the vulnerable code path.

Root Cause

The root cause is the absence of try-catch error handling or equivalent exception management around the dynamic module loading and symbol resolution logic in the Server Action request handler. When the framework attempts to load a non-existent or malformed symbol, the resulting error is not caught, causing Node.js to terminate with an uncaught exception.

Attack Vector

The attack can be executed remotely over the network without any authentication requirements. An attacker simply needs to send a crafted HTTP request to a Qwik City application endpoint that processes Server Actions, including an invalid or malformed qfunc parameter. The server will attempt to resolve the invalid QRL, fail to handle the resulting error, and crash.

The attack is trivial to execute and can be automated to repeatedly crash servers as they restart, creating an effective denial of service condition. See the GitHub Security Advisory for additional technical details on the vulnerability mechanism.

Detection Methods for CVE-2025-53620

Indicators of Compromise

  • Repeated unexpected Node.js process crashes or restarts in production environments
  • Application logs showing uncaught exception errors related to QRL resolution or dynamic module loading
  • Unusual HTTP requests to Server Action endpoints containing malformed or invalid qfunc parameters
  • Process monitoring alerts indicating rapid service restarts

Detection Strategies

  • Monitor Node.js process stability and implement alerting for unexpected process terminations
  • Implement web application firewall (WAF) rules to detect and block malformed Server Action requests
  • Review HTTP access logs for suspicious patterns targeting Server Action endpoints
  • Deploy application performance monitoring (APM) to track unhandled exceptions in the Qwik City request handler

Monitoring Recommendations

  • Configure process managers (PM2, systemd, Docker) to alert on repeated crash-restart cycles
  • Set up log aggregation to correlate uncaught exception events across application instances
  • Implement rate limiting on Server Action endpoints to reduce the impact of automated attacks
  • Monitor for anomalous traffic patterns targeting Qwik application endpoints

How to Mitigate CVE-2025-53620

Immediate Actions Required

  • Upgrade @builder.io/qwik-city to version 1.13.0 or later immediately
  • Review production deployment logs for signs of exploitation attempts
  • Implement rate limiting on Server Action endpoints as a temporary protective measure
  • Ensure process managers are configured to restart crashed services while monitoring for attack patterns

Patch Information

The vulnerability has been fixed in @builder.io/qwik-city version 1.13.0. The patch implements proper error handling around the dynamic QRL loading mechanism, ensuring that invalid qfunc parameters result in graceful error responses rather than process termination. Refer to the GitHub Security Advisory for complete patch details.

Workarounds

  • Deploy a reverse proxy or WAF to filter and validate incoming Server Action requests before they reach the application
  • Implement input validation at the network edge to reject requests with malformed QRL parameters
  • Use container orchestration with automatic restart policies to minimize downtime during attacks while patching is in progress
  • Consider temporarily disabling Server Actions if they are not critical to application functionality
bash
# Upgrade to patched version
npm update @builder.io/qwik-city@1.13.0

# Or install the specific patched version
npm install @builder.io/qwik-city@1.13.0

# Verify installed version
npm list @builder.io/qwik-city

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNode Js

  • SeverityCRITICAL

  • CVSS Score9.2

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-248
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-59464: Node.js OpenSSL Memory Leak DoS Vulnerability

  • CVE-2024-22025: Node.js fetch() DoS Vulnerability

  • CVE-2025-23166: Node.js Runtime Denial of Service Flaw

  • CVE-2025-23165: Node.js Memory Leak DoS 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