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-2026-24006

CVE-2026-24006: Seroval DoS Vulnerability

CVE-2026-24006 is a denial of service flaw in Seroval that allows stack overflow through deep object serialization. This article covers the technical details, affected versions, security impact, and mitigation.

Published: January 23, 2026

CVE-2026-24006 Overview

Seroval is a JavaScript library that facilitates value stringification, including complex structures beyond standard JSON.stringify capabilities. A Denial of Service vulnerability exists in Seroval versions 1.4.0 and below where serialization of objects with extreme depth can exceed the maximum call stack limit, causing application crashes.

Critical Impact

Attackers can craft deeply nested JavaScript objects that, when processed by Seroval, trigger a stack overflow condition leading to denial of service. This affects any application using Seroval for serialization of untrusted input.

Affected Products

  • Seroval versions 1.4.0 and below
  • Applications using Seroval for serialization/deserialization of user-controlled data
  • Node.js and browser-based applications leveraging Seroval

Discovery Timeline

  • 2026-01-22 - CVE CVE-2026-24006 published to NVD
  • 2026-01-22 - Last updated in NVD database

Technical Details for CVE-2026-24006

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue stems from Seroval's recursive processing of nested object structures without enforcing a maximum depth limit. When an attacker provides a maliciously crafted object with extreme nesting depth, the serialization process recursively traverses each level, eventually exhausting the JavaScript call stack.

The vulnerability is particularly concerning in server-side applications where Seroval processes untrusted input. A single malicious request containing a deeply nested object can crash the entire Node.js process, resulting in service unavailability for all users.

Root Cause

The root cause is the absence of depth limiting in Seroval's serialization logic. The library's recursive approach to traversing object structures means that each nested level adds a new frame to the call stack. JavaScript engines have a finite call stack size (typically around 10,000-20,000 frames depending on the environment), and exceeding this limit results in a RangeError: Maximum call stack size exceeded exception.

Prior to version 1.4.1, there was no mechanism to detect or prevent excessive recursion depth during serialization or deserialization operations.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can exploit this vulnerability by sending a crafted payload containing a deeply nested object structure to any endpoint that processes data through Seroval's serialization methods.

The attack is straightforward to execute: construct an object with sufficient nesting depth (typically thousands of levels) and submit it to a vulnerable application. The serialization attempt will consume stack frames until the call stack is exhausted, causing the application to crash.

For technical details on the vulnerability and its fix, refer to the GitHub Security Advisory GHSA-3j22-8qj3-26mx.

Detection Methods for CVE-2026-24006

Indicators of Compromise

  • Application crashes with RangeError: Maximum call stack size exceeded errors
  • Unexplained Node.js process restarts or service unavailability
  • Incoming requests containing unusually large or deeply nested JSON payloads
  • Spike in memory usage prior to application crashes

Detection Strategies

  • Monitor application logs for stack overflow errors originating from Seroval modules
  • Implement request payload size and depth validation at the API gateway level
  • Use application performance monitoring (APM) tools to detect abnormal recursion patterns
  • Review incoming request payloads for suspicious nesting structures

Monitoring Recommendations

  • Configure alerts for repeated application crashes or process restarts
  • Monitor for anomalous request patterns targeting serialization endpoints
  • Set up logging for all unhandled exceptions in serialization code paths
  • Track memory and CPU utilization spikes that may indicate exploitation attempts

How to Mitigate CVE-2026-24006

Immediate Actions Required

  • Upgrade Seroval to version 1.4.1 or later immediately
  • Audit all applications using Seroval to identify vulnerable deployments
  • Implement input validation to reject excessively nested objects before serialization
  • Consider implementing request payload depth limits at the application or API gateway level

Patch Information

The vulnerability has been addressed in Seroval version 1.4.1, which introduces a depthLimit parameter in serialization/deserialization methods. When the depth limit is reached, an error is thrown instead of continuing recursion. The fix can be reviewed in the GitHub commit ce9408ebc87312fcad345a73c172212f2a798060.

Workarounds

  • Implement custom depth checking before passing objects to Seroval serialization methods
  • Use middleware to validate and reject deeply nested objects in incoming requests
  • Deploy rate limiting to reduce the impact of repeated exploitation attempts
  • Consider using alternative serialization libraries if immediate patching is not feasible
bash
# Upgrade Seroval to the patched version
npm update seroval@1.4.1

# Or install specific version
npm install seroval@^1.4.1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSeroval

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • 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
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-3j22-8qj3-26mx
  • Related CVEs
  • CVE-2026-23957: seroval DOS Vulnerability

  • CVE-2026-23956: seroval RegExp DoS Vulnerability

  • CVE-2026-23737: seroval Library RCE Vulnerability

  • CVE-2026-23736: seroval Prototype Pollution 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