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

CVE-2026-1144: QuickJS-NG Use After Free Vulnerability

CVE-2026-1144 is a use after free vulnerability in quickjs-ng QuickJS up to version 0.11.0 affecting the Atomics Ops Handler. This post covers the technical details, affected versions, security impact, and mitigation.

Published: January 23, 2026

CVE-2026-1144 Overview

A use after free vulnerability has been identified in quickjs-ng QuickJS versions up to and including 0.11.0. The vulnerability affects the Atomics Ops Handler component within the quickjs.c file. This memory corruption issue can be exploited remotely when a user interacts with specially crafted content, potentially allowing an attacker to execute arbitrary code or cause unexpected application behavior.

Critical Impact

Remote exploitation is possible through maliciously crafted JavaScript input that triggers the use after free condition in the Atomics operations handler, potentially leading to code execution or application crashes.

Affected Products

  • quickjs-ng QuickJS versions up to 0.11.0
  • Applications embedding vulnerable QuickJS versions
  • Systems running QuickJS-based JavaScript engines

Discovery Timeline

  • 2026-01-19 - CVE CVE-2026-1144 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2026-1144

Vulnerability Analysis

This use after free vulnerability occurs within the Atomics Ops Handler in quickjs.c. Use after free vulnerabilities arise when a program continues to reference memory after it has been freed, leading to potential memory corruption. In this case, the vulnerability is triggered during atomic operations processing, where improper memory management allows freed memory to be accessed.

The vulnerability is classified under CWE-119 (Improper Restriction of Operations within the Bounds of a Memory Buffer), indicating that the root issue involves memory boundary violations during atomic operations. An attacker with network access can exploit this vulnerability remotely, though user interaction is required for successful exploitation.

Root Cause

The root cause lies in the improper handling of memory lifecycle within the Atomics operations implementation in QuickJS. When processing certain atomic operations, the JavaScript engine fails to properly track object references, leading to a scenario where memory that has been deallocated is subsequently accessed. This type of vulnerability typically occurs when:

  • Object references are not properly maintained during asynchronous operations
  • Memory is freed prematurely while still being referenced by the Atomics handler
  • Race conditions in the memory management logic allow access to stale pointers

Attack Vector

The attack vector for CVE-2026-1144 is network-based with low attack complexity. An attacker can exploit this vulnerability by:

  1. Crafting malicious JavaScript code that triggers specific Atomics operations
  2. Causing the QuickJS engine to process the crafted input
  3. Triggering the use after free condition through carefully timed memory operations
  4. Potentially achieving code execution or causing denial of service through memory corruption

The exploit has been publicly disclosed, and the attack requires user interaction such as opening a malicious web page or processing untrusted JavaScript code through an application using the vulnerable QuickJS engine.

The vulnerability manifests in the atomic operations processing within quickjs.c. Technical details and proof-of-concept information can be found in the GitHub Issue Discussion and related GitHub Issue #1302. The security fix addressing this vulnerability is documented in the GitHub Pull Request.

Detection Methods for CVE-2026-1144

Indicators of Compromise

  • Unexpected crashes in applications using QuickJS with stack traces referencing atomic operations in quickjs.c
  • Memory access violations or segmentation faults during JavaScript execution
  • Anomalous behavior when processing untrusted JavaScript input containing Atomics operations

Detection Strategies

  • Monitor application logs for crashes or errors related to QuickJS atomic operations
  • Implement runtime memory safety checks using tools like AddressSanitizer (ASan) to detect use after free conditions
  • Deploy endpoint detection solutions capable of identifying memory corruption exploitation attempts
  • Review JavaScript inputs for suspicious patterns involving SharedArrayBuffer and Atomics operations

Monitoring Recommendations

  • Enable detailed logging for applications embedding QuickJS to capture crash diagnostics
  • Implement application-level monitoring for unexpected terminations or memory-related errors
  • Use SentinelOne's behavioral AI to detect exploitation attempts targeting memory corruption vulnerabilities
  • Set up alerts for process crashes with memory access violation indicators

How to Mitigate CVE-2026-1144

Immediate Actions Required

  • Update quickjs-ng QuickJS to a version that includes the security patch (commit ea3e9d77454e8fc9cb3ef3c504e9c16af5a80141)
  • Audit applications that embed QuickJS to identify vulnerable deployments
  • Restrict processing of untrusted JavaScript input until patches are applied
  • Implement input validation and sandboxing for JavaScript execution environments

Patch Information

The vulnerability has been addressed in commit ea3e9d77454e8fc9cb3ef3c504e9c16af5a80141. Organizations using quickjs-ng QuickJS should apply this patch immediately. The fix can be obtained from the GitHub Commit. For tracking and additional details, refer to VulDB #341737.

Workarounds

  • Disable or restrict Atomics operations in QuickJS configurations if the feature is not required
  • Implement strict content security policies to prevent execution of untrusted JavaScript
  • Deploy web application firewalls to filter potentially malicious JavaScript payloads
  • Isolate QuickJS execution in sandboxed environments with restricted memory access
bash
# Verify QuickJS version and apply patch
git clone https://github.com/quickjs-ng/quickjs.git
cd quickjs
git log --oneline | grep ea3e9d77
# If patch not present, cherry-pick the fix
git cherry-pick ea3e9d77454e8fc9cb3ef3c504e9c16af5a80141
make clean && make

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechQuickjs

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/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
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-119
  • Technical References
  • GitHub Commit Update

  • GitHub Issue Discussion

  • GitHub Issue Discussion

  • GitHub Pull Request

  • VulDB #341737

  • VulDB #341737

  • VulDB Submission #735537

  • VulDB Submission #735538
  • Related CVEs
  • CVE-2026-3979: QuickJS-ng Use After Free Vulnerability

  • CVE-2025-69654: QuickJS Interpreter DOS Vulnerability

  • CVE-2025-69653: QuickJS Denial-of-Service Vulnerability

  • CVE-2026-1145: QuickJS-NG Buffer Overflow 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