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-2025-13465

CVE-2025-13465: Lodash Prototype Pollution Vulnerability

CVE-2025-13465 is a prototype pollution flaw in Lodash versions 4.0.0 through 4.17.22 affecting _.unset and _.omit functions. This article covers the technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-13465 Overview

CVE-2025-13465 is a prototype pollution vulnerability affecting Lodash versions 4.0.0 through 4.17.22. The vulnerability exists in the _.unset and _.omit functions, where an attacker can pass crafted paths that cause Lodash to delete methods from global prototypes. While this issue permits deletion of properties, it does not allow overwriting their original behavior.

Prototype pollution vulnerabilities in JavaScript libraries like Lodash can have far-reaching consequences in both client-side and server-side applications, potentially affecting application stability and enabling denial of service conditions.

Critical Impact

Attackers can manipulate JavaScript object prototypes by deleting properties through crafted input paths, potentially disrupting application functionality across all objects that inherit from the affected prototype.

Affected Products

  • Lodash versions 4.0.0 through 4.17.22
  • Applications using vulnerable _.unset function
  • Applications using vulnerable _.omit function

Discovery Timeline

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

Technical Details for CVE-2025-13465

Vulnerability Analysis

This prototype pollution vulnerability (CWE-1321) allows attackers to manipulate the behavior of JavaScript applications by deleting properties from global object prototypes. The _.unset and _.omit functions in Lodash are designed to remove properties from objects, but insufficient validation of the property path allows attackers to traverse beyond the intended object scope and delete properties from Object.prototype or other built-in prototypes.

When an attacker provides a specially crafted path containing prototype chain references (such as __proto__ or constructor.prototype), the vulnerable functions follow these paths and delete properties from the global prototype chain. This can cause unpredictable behavior in applications that rely on the presence of standard prototype methods.

The vulnerability is exploitable over a network vector with low attack complexity, requiring no privileges or user interaction. The impact primarily affects system integrity and availability, with potential downstream effects on applications sharing the same JavaScript runtime.

Root Cause

The root cause of this vulnerability is improper input validation in the path parsing logic of the _.unset and _.omit functions. These functions fail to properly sanitize or restrict property paths that reference prototype chain properties like __proto__, constructor, or prototype. This allows path traversal beyond the target object into the global prototype chain.

Attack Vector

The attack vector is network-based, where an attacker can supply malicious input containing crafted property paths to any application endpoint that passes user-controlled data to the _.unset or _.omit functions. Common attack scenarios include:

  1. API endpoints that accept JSON objects with user-specified property paths for deletion
  2. Configuration management interfaces that use Lodash to manipulate nested object properties
  3. Data transformation pipelines where property names are derived from user input

The vulnerability manifests when crafted paths containing prototype references are processed by the vulnerable functions. An attacker might submit a path such as __proto__.toString or constructor.prototype.hasOwnProperty to delete critical prototype methods.

For detailed technical information and proof-of-concept examples, refer to the GitHub Security Advisory.

Detection Methods for CVE-2025-13465

Indicators of Compromise

  • Unexpected JavaScript errors related to missing prototype methods (e.g., TypeError: x.toString is not a function)
  • Application logs showing unusual property paths containing __proto__, constructor, or prototype
  • Runtime exceptions in previously stable code paths that rely on inherited object methods
  • Anomalous API requests with deeply nested object paths or prototype chain references

Detection Strategies

  • Implement static code analysis to identify usage of _.unset and _.omit with user-controlled input
  • Deploy runtime application monitoring to detect prototype pollution attempts in real-time
  • Use Software Composition Analysis (SCA) tools to identify vulnerable Lodash versions in your dependency tree
  • Audit application logs for suspicious property path patterns matching prototype pollution attempts

Monitoring Recommendations

  • Configure alerts for JavaScript runtime errors that may indicate deleted prototype methods
  • Monitor application performance metrics for sudden degradation that could indicate successful exploitation
  • Implement request logging that captures the full payload structure for endpoints using Lodash object manipulation functions
  • Enable dependency vulnerability scanning in CI/CD pipelines to detect vulnerable Lodash versions before deployment

How to Mitigate CVE-2025-13465

Immediate Actions Required

  • Upgrade Lodash to version 4.17.23 or later immediately
  • Audit all code paths that use _.unset or _.omit with user-controlled input
  • Implement input validation to reject property paths containing __proto__, constructor, or prototype
  • Consider using Object.freeze(Object.prototype) as a defense-in-depth measure in Node.js environments

Patch Information

The Lodash maintainers have addressed this vulnerability in version 4.17.23. Organizations should upgrade to this version or later to remediate the vulnerability. The patch adds proper validation to prevent prototype chain traversal in the affected functions.

For detailed patch information and additional context, see the GitHub Security Advisory.

Workarounds

  • Implement a wrapper function around _.unset and _.omit that validates paths before passing them to the underlying Lodash functions
  • Use allowlisting to restrict acceptable property paths to known-safe values
  • Replace vulnerable function usage with native JavaScript alternatives where possible (e.g., destructuring with rest syntax for _.omit)
  • Deploy Web Application Firewall (WAF) rules to block requests containing prototype pollution patterns
bash
# Configuration example
# Update Lodash in your project using npm
npm update lodash --save

# Verify the installed version
npm list lodash

# Alternative: Install specific patched version
npm install lodash@4.17.23 --save

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.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:L/SC:H/SI:H/SA:H/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-1321
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-2950: 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