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-2021-3757

CVE-2021-3757: Immer Prototype Pollution Vulnerability

CVE-2021-3757 is a prototype pollution vulnerability in Immer that allows attackers to modify object prototypes, potentially leading to security breaches. This article covers technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-3757 Overview

CVE-2021-3757 is a critical Prototype Pollution vulnerability affecting the Immer JavaScript library, a popular immutable state management tool widely used in React and Redux applications. The vulnerability allows attackers to modify the prototype of base objects through specially crafted input, potentially leading to remote code execution, denial of service, or security control bypass in applications using vulnerable versions of Immer.

Critical Impact

This prototype pollution vulnerability can be exploited remotely without authentication, potentially compromising the confidentiality, integrity, and availability of affected applications. As a follow-up to CVE-2020-28477, this variant exploits path arrays containing __proto__ to bypass previous security fixes.

Affected Products

  • immer_project immer (Node.js package)
  • Applications using vulnerable versions of the Immer library
  • React/Redux applications leveraging Immer for immutable state management

Discovery Timeline

  • 2021-09-02 - CVE-2021-3757 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-3757

Vulnerability Analysis

This vulnerability is classified under CWE-1321 (Improperly Controlled Modification of Object Prototype Attributes), commonly known as Prototype Pollution. The flaw exists in Immer's patch application mechanism within the src/plugins/patches.ts file.

The vulnerability represents a bypass of the previous fix for CVE-2020-28477. While the earlier patch addressed direct __proto__ string manipulation, attackers discovered that using nested array paths like path: [["__proto__"], "x"] could circumvent the security controls. When processing patches, the vulnerable code would iterate through path elements without properly sanitizing them, allowing prototype chain manipulation.

Root Cause

The root cause lies in the insufficient type coercion of path elements during patch application. When iterating through the path array, the vulnerable code directly used path elements without converting them to strings. This allowed attackers to pass array-wrapped prototype keys that would be evaluated differently during comparison checks but still resolve to __proto__ when used as property accessors.

The fix addresses this by explicitly converting path elements to strings using the expression "" + path[i], ensuring consistent type handling and preventing the bypass technique.

Attack Vector

The attack can be executed remotely over the network without requiring authentication or user interaction. An attacker can craft malicious patch objects with specially constructed path arrays and submit them to an application that uses Immer to apply patches to state objects.

When the vulnerable applyPatches function processes the malicious input, the __proto__ property gets modified on the base object, potentially polluting the prototype chain of all JavaScript objects in the application context. This can lead to:

  • Remote code execution through polluted properties used in sensitive operations
  • Denial of service by corrupting critical object behaviors
  • Authentication bypass if prototype properties affect security decisions
typescript
 			let base: any = draft
 			for (let i = 0; i < path.length - 1; i++) {
 				const parentType = getArchtype(base)
-				const p = path[i]
+				const p = "" + path[i]
 				// See #738, avoid prototype pollution
 				if (
 					(parentType === Archtype.Object || parentType === Archtype.Array) &&

Source: GitHub Commit

Detection Methods for CVE-2021-3757

Indicators of Compromise

  • Unexpected modifications to Object.prototype properties in application runtime
  • Anomalous behavior in JavaScript objects that inherit unexpected properties
  • Application crashes or unexpected behavior in state management operations
  • Suspicious patch payloads containing nested arrays with __proto__ strings

Detection Strategies

  • Monitor application logs for errors related to prototype chain corruption
  • Implement runtime checks for unexpected properties on Object.prototype
  • Scan application dependencies using software composition analysis (SCA) tools to identify vulnerable Immer versions
  • Review incoming patch objects for malicious path patterns containing prototype-related strings

Monitoring Recommendations

  • Deploy application performance monitoring to detect unusual JavaScript object behavior
  • Implement Content Security Policy (CSP) headers to mitigate potential code execution consequences
  • Use Node.js security modules that freeze Object.prototype to detect modification attempts
  • Enable verbose logging for state management operations in production environments

How to Mitigate CVE-2021-3757

Immediate Actions Required

  • Update Immer to the latest patched version immediately
  • Audit applications for any usage of the applyPatches API with untrusted input
  • Implement input validation to reject patch objects with suspicious path patterns
  • Consider freezing Object.prototype in critical application contexts as a defense-in-depth measure

Patch Information

The Immer project has released a security patch addressing this vulnerability. The fix involves converting path elements to strings explicitly before processing, preventing the array-wrapped bypass technique. The security commit fa671e55ee9bd42ae08cc239102b665a23958237 contains the complete fix.

For detailed patch information, refer to the GitHub Commit Changes and the Huntr Bounty Report.

Workarounds

  • If immediate patching is not possible, implement input sanitization to reject patch paths containing __proto__, constructor, or prototype strings
  • Use Object.freeze() on Object.prototype in application initialization as a temporary protective measure
  • Wrap Immer's applyPatches function with custom validation logic that inspects path arrays
  • Consider using alternative state management approaches for handling untrusted external input
bash
# Update Immer to latest version
npm update immer

# Or install specific patched version
npm install immer@latest

# Audit project dependencies for vulnerable versions
npm audit

# Check current Immer version
npm list immer

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechImmer Project

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.59%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Vendor Resources
  • GitHub Commit Changes

  • Huntr Bounty Report
  • Related CVEs
  • CVE-2021-23436: Immer Auth Bypass 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