Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2024-38986

CVE-2024-38986: 75lb Deep-merge RCE Vulnerability

CVE-2024-38986 is a prototype pollution vulnerability in 75lb Deep-merge that enables remote code execution and denial of service attacks. This article covers the technical details, affected versions, and mitigation steps.

Updated: January 22, 2026

CVE-2024-38986 Overview

CVE-2024-38986 is a critical Prototype Pollution vulnerability affecting the 75lb deep-merge JavaScript library version 1.1.1. This vulnerability allows attackers to execute arbitrary code or cause a Denial of Service (DoS) by exploiting the merge methods to manipulate object prototypes. Prototype pollution attacks can have severe consequences in JavaScript applications, enabling attackers to modify the behavior of all objects in the application.

Critical Impact

Attackers can exploit prototype pollution to achieve remote code execution, denial of service, and other severe security impacts through manipulation of JavaScript object prototypes via the merge functionality.

Affected Products

  • 75lb deep-merge version 1.1.1
  • Applications using vulnerable versions of the deep-merge package
  • Node.js applications implementing deep-merge for object merging operations

Discovery Timeline

  • 2024-07-30 - CVE-2024-38986 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-38986

Vulnerability Analysis

Prototype Pollution is a vulnerability class specific to JavaScript that exploits the language's prototype-based inheritance model. In the case of CVE-2024-38986, the 75lb deep-merge library fails to properly sanitize user-controlled input when performing recursive object merging operations.

When an attacker provides a malicious payload containing properties like __proto__ or constructor.prototype, the merge function inadvertently assigns these properties to the base Object prototype. This pollutes the prototype chain, causing all objects in the application to inherit the attacker-controlled properties.

The vulnerability is particularly dangerous because it can be triggered remotely through any application endpoint that accepts JSON input and processes it through the vulnerable merge function.

Root Cause

The root cause of this vulnerability lies in insufficient validation and sanitization of property keys during the deep merge operation. The deep-merge library recursively iterates through source objects and copies their properties to target objects without checking for special prototype properties.

When processing nested objects, the library does not exclude dangerous keys such as __proto__, constructor, or prototype. This allows an attacker to inject properties that will be assigned to Object.prototype, affecting all objects in the application runtime.

Attack Vector

The attack vector for CVE-2024-38986 is network-based, requiring no authentication or user interaction. An attacker can craft a malicious JSON payload containing prototype pollution gadgets and send it to any application endpoint that processes the input through the vulnerable deep-merge function.

The exploitation typically follows this pattern:

  1. The attacker identifies an endpoint that accepts JSON input
  2. The application uses deep-merge to combine user input with existing objects
  3. The attacker injects a payload containing __proto__ or constructor.prototype properties
  4. The merge operation pollutes the global Object prototype
  5. Subsequent object operations inherit attacker-controlled properties

A proof-of-concept demonstrating this vulnerability is available in the GitHub Gist PoC Repository, which shows how malicious payloads can be constructed to exploit the vulnerable merge methods.

Detection Methods for CVE-2024-38986

Indicators of Compromise

  • Unusual HTTP requests containing __proto__ or constructor strings in JSON payloads
  • Application crashes or unexpected behavior following object operations
  • Error logs indicating unexpected property access or type errors across multiple objects
  • Memory usage anomalies caused by polluted prototype chains

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block requests containing prototype pollution payloads
  • Enable runtime JavaScript monitoring to detect prototype modifications
  • Conduct regular dependency audits using tools like npm audit or Snyk to identify vulnerable packages
  • Review application logs for JSON parsing errors associated with suspicious property names

Monitoring Recommendations

  • Monitor inbound HTTP traffic for JSON payloads containing __proto__, constructor, or prototype property names
  • Implement application performance monitoring (APM) to detect sudden behavior changes in object operations
  • Configure alerting for dependency scanner findings related to prototype pollution vulnerabilities
  • Track package.json and lock file changes to detect introduction of vulnerable dependencies

How to Mitigate CVE-2024-38986

Immediate Actions Required

  • Update the 75lb deep-merge package to a patched version if available
  • Audit applications to identify all locations where deep-merge is used with user-controlled input
  • Implement input validation to reject objects containing dangerous prototype properties
  • Consider replacing deep-merge with alternative libraries that have prototype pollution protections

Patch Information

Organizations should check the 75lb deep-merge repository for security updates and patched versions. The vulnerability affects version 1.1.1, and users should upgrade to any available patched release. If no patch is available, consider migrating to alternative object merging libraries that implement prototype pollution safeguards.

For reference, the vulnerability proof-of-concept and additional technical details can be found at the GitHub Gist PoC Repository.

Workarounds

  • Implement Object.freeze on Object.prototype to prevent prototype modifications (may affect application functionality)
  • Create wrapper functions that sanitize input by removing dangerous keys before passing to deep-merge
  • Use Object.create(null) for objects that will be merged with untrusted input to avoid prototype chain access
  • Deploy input validation middleware to reject requests containing prototype pollution payloads
bash
# Example: Checking for vulnerable deep-merge version in package.json
grep -r "deep-merge" package.json package-lock.json
npm ls deep-merge
# Consider upgrading or replacing the package if version 1.1.1 is detected

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/Tech75lb Deep Merge

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.33%

  • 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
  • Technical References
  • GitHub Gist PoC Repository
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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