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

CVE-2026-2950: Lodash Prototype Pollution Vulnerability

CVE-2026-2950 is a prototype pollution vulnerability in Lodash versions 4.17.23 and earlier affecting _.unset and _.omit functions. This article covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-2950 Overview

CVE-2026-2950 is a prototype pollution vulnerability affecting Lodash versions 4.17.23 and earlier. The vulnerability exists in the _.unset and _.omit functions, where an attacker can bypass the existing security fix for CVE-2025-13465 by using array-wrapped path segments instead of string key members. This allows unauthorized deletion of properties from built-in JavaScript prototypes including Object.prototype, Number.prototype, and String.prototype.

Critical Impact

Attackers can delete prototype properties from core JavaScript objects by bypassing the CVE-2025-13465 patch, potentially causing application instability or enabling further attacks through prototype chain manipulation.

Affected Products

  • Lodash versions 4.17.23 and earlier
  • Applications using vulnerable _.unset function
  • Applications using vulnerable _.omit function

Discovery Timeline

  • 2026-03-31 - CVE-2026-2950 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-2950

Vulnerability Analysis

This prototype pollution vulnerability (CWE-1321) stems from an incomplete fix for a previous security issue. The original patch for CVE-2025-13465 implemented guards against string key members in the _.unset and _.omit functions. However, the validation logic fails to account for array-wrapped path segments, creating a bypass mechanism.

Prototype pollution vulnerabilities in JavaScript libraries like Lodash are particularly dangerous because they can affect the fundamental behavior of objects throughout an application. When an attacker successfully pollutes a prototype, all objects inheriting from that prototype can be affected.

Importantly, while this vulnerability allows deletion of prototype properties, it does not permit overwriting or redefining their original behavior. This limits the attack surface compared to full prototype pollution but still poses significant risks to application stability and security.

Root Cause

The root cause is insufficient input validation in the path parsing logic of _.unset and _.omit functions. The fix for CVE-2025-13465 only validated string key members, leaving array-wrapped path segments unvalidated. This allows attackers to craft malicious inputs that bypass the security checks and reach prototype properties.

Attack Vector

The vulnerability is exploitable over the network without authentication or user interaction. An attacker can supply specially crafted array-wrapped path arguments to the vulnerable functions. When the application processes these inputs through _.unset or _.omit, the attacker can delete properties from built-in prototypes.

For example, while string-based paths like "__proto__.toString" are blocked by the existing fix, passing the equivalent as an array of path segments bypasses the validation entirely. This allows deletion of critical prototype methods and properties.

For detailed technical information, see the GitHub Security Advisory.

Detection Methods for CVE-2026-2950

Indicators of Compromise

  • Unexpected undefined values when accessing standard prototype methods like toString, valueOf, or hasOwnProperty
  • Application crashes or TypeError exceptions related to missing prototype methods
  • Unusual array-formatted arguments being passed to Lodash utility functions
  • Audit logs showing paths containing __proto__, constructor, or prototype as array elements

Detection Strategies

  • Implement Software Composition Analysis (SCA) to identify Lodash versions prior to 4.18.0 in your codebase
  • Deploy runtime application self-protection (RASP) to monitor for prototype pollution attempts
  • Use static analysis tools to detect potentially dangerous usage patterns of _.unset and _.omit
  • Monitor application logs for unexpected type errors that may indicate prototype manipulation

Monitoring Recommendations

  • Enable verbose logging for input validation failures in application middleware
  • Set up alerts for patterns matching prototype pollution attempts in web application firewalls
  • Monitor package dependency manifests for outdated Lodash versions across your organization
  • Implement integrity checks for critical prototype methods at application startup

How to Mitigate CVE-2026-2950

Immediate Actions Required

  • Upgrade Lodash to version 4.18.0 or later immediately
  • Audit all application code for usage of _.unset and _.omit functions
  • Implement input validation to sanitize user-controlled data before passing to Lodash functions
  • Consider using Object.freeze() on critical prototypes as a defense-in-depth measure

Patch Information

This vulnerability is patched in Lodash version 4.18.0. The vendor has confirmed that upgrading to this version resolves the bypass issue by implementing comprehensive validation for both string and array path formats.

For more information, refer to the GitHub Security Advisory.

Workarounds

  • No official workarounds are available - upgrading to version 4.18.0 is the only recommended remediation
  • As a temporary measure, avoid passing user-controlled input directly to _.unset or _.omit functions
  • Consider replacing vulnerable function calls with native JavaScript alternatives that don't traverse prototype chains
  • Implement application-level input sanitization to reject array paths containing prototype-related strings
bash
# Upgrade Lodash to patched version
npm update lodash@4.18.0

# Verify installed version
npm list lodash

# Audit for vulnerable versions across project
npm audit

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLodash

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-1321
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-13465: Lodash Prototype Pollution Vulnerability

  • CVE-2020-8203: Lodash Prototype Pollution Vulnerability

  • CVE-2026-4800: Lodash Template RCE Vulnerability

  • CVE-2021-23337: Lodash Command Injection 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