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

CVE-2025-69654: QuickJS Interpreter DOS Vulnerability

CVE-2025-69654 is a denial of service flaw in QuickJS interpreter that causes an out-of-memory condition and assertion failure, leading to SIGABRT. This post explains its technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2025-69654 Overview

A denial of service vulnerability exists in QuickJS, an embeddable JavaScript engine. A crafted JavaScript input executed with the QuickJS release 2025-09-13 using the qjs interpreter with the -m option and a low memory limit can cause an out-of-memory condition followed by an assertion failure in JS_FreeRuntime (list_empty(&rt->gc_obj_list)) during runtime cleanup. Although the engine reports an OOM error, it subsequently aborts with SIGABRT because the GC object list is not fully released, resulting in a denial of service condition.

Critical Impact

Attackers can crash QuickJS interpreter instances by triggering memory exhaustion conditions that lead to improper runtime cleanup, causing service disruption for applications relying on this JavaScript engine.

Affected Products

  • QuickJS release 2025-09-13 (prior to commit fcd33c1afa7b3028531f53cd1190a3877454f6b3)
  • Applications embedding QuickJS with memory-constrained configurations
  • Systems using qjs interpreter with the -m module option

Discovery Timeline

  • 2025-12-11 - Fix committed in QuickJS repository (commit fcd33c1afa7b3028531f53cd1190a3877454f6b3)
  • 2026-03-06 - CVE CVE-2025-69654 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2025-69654

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption) and manifests as a resource exhaustion issue within the QuickJS JavaScript engine's garbage collection mechanism. When the interpreter encounters an out-of-memory condition during execution, the subsequent runtime cleanup process fails to properly release all objects from the garbage collection object list.

The core issue occurs during the JS_FreeRuntime function execution, where an assertion check verifies that the GC object list (rt->gc_obj_list) is empty before completing runtime cleanup. Under specific memory-constrained scenarios triggered by crafted JavaScript input, this assertion fails because memory exhaustion prevents the normal cleanup sequence from completing properly.

This vulnerability is exploitable over the network without authentication or user interaction, making it particularly concerning for server-side JavaScript execution environments or web applications that evaluate untrusted JavaScript code.

Root Cause

The root cause lies in QuickJS's improper handling of memory exhaustion scenarios during runtime cleanup. When an OOM (Out-of-Memory) condition occurs, the engine correctly detects and reports the error. However, the subsequent cleanup phase in JS_FreeRuntime expects the garbage collector object list to be fully cleared before the assertion check. Under memory pressure conditions, some objects remain on the GC list, causing the list_empty(&rt->gc_obj_list) assertion to fail and the process to abort with SIGABRT.

The vulnerability was specifically triggered when using the -m option (module mode) with a low memory limit configured, suggesting the module loading pathway has different memory allocation patterns that exacerbate the issue.

Attack Vector

The attack vector is network-based, allowing remote exploitation without requiring authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Crafting malicious JavaScript code designed to rapidly consume available memory
  2. Targeting QuickJS instances configured with memory limits (a common security practice)
  3. Sending the payload to any service that evaluates JavaScript using the vulnerable QuickJS version
  4. Triggering the OOM condition followed by the assertion failure during cleanup

The vulnerability requires the target to be using the module execution mode (-m flag) and have memory constraints configured, which is paradoxically a security measure intended to limit resource usage.

For technical details on the vulnerability mechanism, see the GitHub Issue Discussion where the issue was reported and tracked.

Detection Methods for CVE-2025-69654

Indicators of Compromise

  • Unexpected SIGABRT signals from QuickJS interpreter processes
  • Process crash logs indicating assertion failures in JS_FreeRuntime function
  • Application logs showing OOM errors immediately followed by process termination
  • Core dump files containing list_empty(&rt->gc_obj_list) assertion messages

Detection Strategies

  • Monitor for abnormal termination of QuickJS processes with SIGABRT exit codes
  • Implement logging around JavaScript evaluation calls to capture pre-crash execution context
  • Deploy application performance monitoring to detect memory exhaustion patterns
  • Review system logs for repeated QuickJS crashes that may indicate exploitation attempts

Monitoring Recommendations

  • Set up alerting for QuickJS process crashes with assertion failure signatures
  • Monitor memory usage patterns of applications embedding QuickJS for unusual spikes
  • Track the frequency of OOM events in JavaScript execution contexts
  • Implement centralized logging for all QuickJS-related process terminations

How to Mitigate CVE-2025-69654

Immediate Actions Required

  • Update QuickJS to a version containing commit fcd33c1afa7b3028531f53cd1190a3877454f6b3 or later
  • Review applications that embed QuickJS and plan upgrade paths
  • Consider implementing process isolation for JavaScript execution to contain crashes
  • Evaluate input validation for JavaScript code submitted to QuickJS interpreters

Patch Information

The vulnerability was fixed in commit fcd33c1afa7b3028531f53cd1190a3877454f6b3 dated 2025-12-11. Organizations should update their QuickJS installations to any version released after this commit. The fix addresses the improper cleanup sequence in JS_FreeRuntime to ensure the garbage collection object list is properly handled even during memory exhaustion scenarios.

For additional details, refer to the QuickJS GitHub Issue #468.

Workarounds

  • Run QuickJS interpreter processes in isolated containers or sandboxes to limit crash impact
  • Implement process restart mechanisms to automatically recover from crashes
  • Add rate limiting on JavaScript execution requests to reduce denial of service impact
  • Consider using process pools to ensure service availability despite individual process crashes
bash
# Configuration example: Running QuickJS in isolated container with auto-restart
# Docker compose configuration for resilient QuickJS deployment
# Ensure using patched version: commit fcd33c1afa7b3028531f53cd1190a3877454f6b3 or later
docker run --restart=unless-stopped \
  --memory=512m \
  --cpus=1 \
  quickjs-patched:latest

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechQuickjs

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • 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 Issue Discussion
  • Related CVEs
  • CVE-2025-69653: QuickJS Denial-of-Service Vulnerability

  • CVE-2026-3979: QuickJS-ng Use After Free Vulnerability

  • CVE-2026-1145: QuickJS-NG Buffer Overflow Vulnerability

  • CVE-2026-1144: QuickJS-NG Use After Free 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