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

CVE-2026-23956: seroval RegExp DoS Vulnerability

CVE-2026-23956 is a denial of service vulnerability in seroval affecting RegExp serialization. Attackers can exploit memory exhaustion or catastrophic backtracking. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23956 Overview

CVE-2026-23956 is a Denial of Service vulnerability in seroval, a JavaScript library that facilitates value stringification for complex structures beyond standard JSON.stringify capabilities. The vulnerability exists in versions 1.4.0 and below, where overriding RegExp serialization with extremely large patterns can exhaust JavaScript runtime memory during deserialization. Additionally, patterns that trigger catastrophic backtracking can lead to ReDoS (Regular Expression Denial of Service).

Critical Impact

Remote attackers can cause application denial of service by crafting malicious RegExp patterns that exhaust memory or CPU resources during deserialization, potentially bringing down Node.js services that depend on seroval.

Affected Products

  • seroval versions 1.4.0 and below
  • Applications using seroval for JavaScript value serialization/deserialization
  • Node.js services implementing seroval for complex data handling

Discovery Timeline

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

Technical Details for CVE-2026-23956

Vulnerability Analysis

This vulnerability (CWE-1333: Inefficient Regular Expression Complexity) allows attackers to exploit the RegExp serialization mechanism in seroval. The library's handling of RegExp objects during deserialization does not properly validate or limit the complexity and size of regular expression patterns.

When seroval deserializes data containing crafted RegExp objects, two attack scenarios become possible. First, extremely large RegExp patterns can consume excessive memory, leading to memory exhaustion and application crashes. Second, patterns specifically designed to trigger catastrophic backtracking can cause the JavaScript regex engine to consume excessive CPU time, resulting in ReDoS conditions.

The vulnerability is particularly concerning for applications that deserialize untrusted data using seroval, as attackers can embed malicious RegExp objects within serialized payloads.

Root Cause

The root cause lies in insufficient validation of RegExp patterns during the deserialization process. Prior to version 1.4.1, seroval did not implement safeguards against oversized patterns or patterns with exponential backtracking characteristics. This allowed maliciously crafted serialized data to create RegExp objects that would consume disproportionate resources when processed by the JavaScript runtime.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can craft a serialized payload containing a malicious RegExp pattern and send it to any application endpoint that deserializes seroval data. When the victim application deserializes the payload, the malicious RegExp is instantiated, triggering either memory exhaustion or CPU-intensive backtracking operations.

Attack scenarios include submitting malicious serialized data through API endpoints, WebSocket connections, or any other input vector where seroval deserialization occurs. For technical details on the vulnerability and its fix, see the GitHub Security Advisory.

Detection Methods for CVE-2026-23956

Indicators of Compromise

  • Sudden memory spikes or out-of-memory errors in Node.js applications using seroval
  • High CPU utilization with stack traces pointing to RegExp operations
  • Application timeouts or unresponsiveness during data deserialization
  • Error logs indicating heap memory exhaustion or maximum call stack exceeded

Detection Strategies

  • Monitor application memory consumption for unusual spikes during deserialization operations
  • Implement CPU usage thresholds and alerting for Node.js processes handling seroval data
  • Review application dependencies using npm audit or yarn audit to identify vulnerable seroval versions
  • Deploy application performance monitoring (APM) tools to detect regex-related performance anomalies

Monitoring Recommendations

  • Enable detailed logging for seroval deserialization operations to capture payload characteristics
  • Configure resource limits and timeouts for deserialization processes to prevent complete service disruption
  • Implement rate limiting on endpoints that accept serialized data to reduce attack surface
  • Use SentinelOne Singularity Platform to monitor for resource exhaustion patterns and DoS indicators

How to Mitigate CVE-2026-23956

Immediate Actions Required

  • Upgrade seroval to version 1.4.1 or later immediately
  • Audit all applications using seroval to identify affected deployments
  • Implement input validation to reject or sanitize serialized data from untrusted sources
  • Consider implementing timeout mechanisms for deserialization operations as a defense-in-depth measure

Patch Information

The vulnerability has been addressed in seroval version 1.4.1. The fix implements proper validation and restrictions on RegExp serialization to prevent both memory exhaustion and ReDoS attacks. The patch can be reviewed at the GitHub commit.

To update, run:

bash
npm update seroval
# or
yarn upgrade seroval

Workarounds

  • Implement input size limits on serialized data before passing to seroval deserialization
  • Add timeout wrappers around deserialization calls to terminate long-running operations
  • Sanitize or reject RegExp objects from untrusted serialized data before processing
  • Deploy Web Application Firewall (WAF) rules to filter potentially malicious serialized payloads
bash
# Verify seroval version after update
npm list seroval
# Expected output should show version 1.4.1 or higher

# Check for vulnerable dependencies in your project
npm audit --audit-level=high

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-24006: Seroval DoS Vulnerability

  • CVE-2026-23957: seroval 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