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

CVE-2026-23736: seroval Prototype Pollution Vulnerability

CVE-2026-23736 is a prototype pollution vulnerability in seroval caused by improper input validation during JSON deserialization. This article covers the technical details, affected versions, security impact, and mitigation.

Published: January 23, 2026

CVE-2026-23736 Overview

CVE-2026-23736 is an Insecure Deserialization vulnerability affecting the seroval JavaScript library, which facilitates JS value stringification including complex structures beyond JSON.stringify capabilities. In versions 1.4.0 and below, improper input validation allows a malicious object key to trigger prototype pollution during JSON deserialization. This vulnerability specifically affects the JSON deserialization functionality of the library.

Critical Impact

Prototype pollution vulnerabilities can allow attackers to manipulate application logic, bypass security checks, or achieve remote code execution by injecting properties into JavaScript object prototypes that propagate throughout the application.

Affected Products

  • seroval versions 1.4.0 and below
  • Applications using seroval's fromJSON() deserialization functionality
  • Node.js and browser environments utilizing seroval for JSON serialization

Discovery Timeline

  • 2026-01-21 - CVE CVE-2026-23736 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2026-23736

Vulnerability Analysis

This vulnerability is classified as CWE-1321 (Improperly Controlled Modification of Object Prototype Attributes), commonly known as prototype pollution. The seroval library provides advanced serialization capabilities that extend beyond native JSON.stringify, handling complex JavaScript structures including Promises, references, and circular dependencies. However, versions 1.4.0 and below fail to properly validate object keys during the deserialization process via the fromJSON() function.

The attack vector is network-based, requiring no privileges or user interaction, which allows remote attackers to exploit this vulnerability by crafting malicious JSON payloads. When these payloads contain specially crafted object keys such as __proto__, constructor, or prototype, the deserialization process inadvertently modifies the Object prototype chain.

Root Cause

The root cause lies in improper input validation within the JSON deserialization logic. The library fails to sanitize or reject dangerous object keys that can modify prototype chains. When processing incoming JSON data, seroval directly assigns properties without checking whether keys represent prototype properties, allowing attackers to inject arbitrary properties into Object.prototype.

Attack Vector

Attackers can exploit this vulnerability by sending maliciously crafted JSON payloads to applications using seroval's fromJSON() function. The attack requires:

  1. Network access to an application endpoint that deserializes user-supplied JSON via seroval
  2. A crafted payload containing prototype-polluting keys (e.g., __proto__)
  3. No authentication or user interaction required

The security patch addresses this by implementing proper key validation during deserialization:

typescript
     SerovalNodeType.RegExp,
     id,
     NIL,
-    NIL,
     serializeString(current.source),
     current.flags,
     NIL,

Source: GitHub Commit Update

Detection Methods for CVE-2026-23736

Indicators of Compromise

  • Unexpected properties appearing on native JavaScript objects (Object, Array, Function prototypes)
  • Application behavior changes due to polluted prototype properties
  • Unusual JSON payloads in request logs containing __proto__, constructor, or prototype keys
  • Stack traces showing prototype-related errors in seroval deserialization functions

Detection Strategies

  • Implement application-level logging to capture JSON payloads processed through seroval's fromJSON() function
  • Deploy web application firewall (WAF) rules to detect and block requests containing prototype pollution patterns
  • Use runtime application self-protection (RASP) solutions to monitor prototype modifications
  • Perform dependency scanning to identify vulnerable seroval versions in your codebase

Monitoring Recommendations

  • Monitor application logs for deserialization errors or unexpected object property access patterns
  • Set up alerts for suspicious JSON payloads containing prototype-related keys in request bodies
  • Implement integrity checks on critical Object prototype properties to detect unauthorized modifications
  • Use SentinelOne's Singularity platform to monitor for exploitation attempts and runtime anomalies

How to Mitigate CVE-2026-23736

Immediate Actions Required

  • Upgrade seroval to version 1.4.1 or later immediately
  • Audit your codebase for all usages of seroval's fromJSON() function
  • Implement input validation on all JSON data before deserialization
  • Consider freezing critical Object prototypes using Object.freeze(Object.prototype) as a defense-in-depth measure

Patch Information

The vulnerability has been fixed in seroval version 1.4.1. The security patch is available via the GitHub Commit. Full details about the vulnerability and remediation are documented in the GitHub Security Advisory GHSA-hj76-42vx-jwp4.

Workarounds

  • If immediate upgrade is not possible, implement custom input sanitization to filter object keys containing __proto__, constructor, or prototype before passing data to seroval
  • Use a JSON schema validator to restrict allowed keys in incoming JSON payloads
  • Isolate seroval deserialization operations in sandboxed environments where prototype pollution cannot affect critical application logic
  • Consider temporarily replacing seroval with native JSON.parse() for simple use cases that don't require advanced serialization features
bash
# Update seroval to the patched version
npm update seroval@1.4.1

# Or specify the exact version in package.json
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
  • TypeOther

  • Vendor/TechSeroval

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-1321
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-hj76-42vx-jwp4
  • Related CVEs
  • CVE-2026-24006: Seroval DoS Vulnerability

  • CVE-2026-23957: seroval DOS Vulnerability

  • CVE-2026-23956: seroval RegExp DoS Vulnerability

  • CVE-2026-23737: seroval Library RCE 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