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-2022-25878

CVE-2022-25878: Protobufjs Prototype Pollution Vulnerability

CVE-2022-25878 is a prototype pollution vulnerability in Protobufjs that enables attackers to modify Object.prototype properties through untrusted input or malicious .proto files. This guide covers technical details, affected versions, and mitigation strategies.

Published: February 17, 2026

CVE-2022-25878 Overview

CVE-2022-25878 is a Prototype Pollution vulnerability in the protobufjs package before version 6.11.3. This vulnerability allows an attacker to add or modify properties of Object.prototype, potentially leading to property injection, denial of service, or in some cases, remote code execution depending on how the application uses the polluted objects.

The vulnerability can be triggered through multiple attack vectors: by providing untrusted user input to the util.setProperty or ReflectionObject.setParsedOption functions, or by parsing/loading malicious .proto files.

Critical Impact

Attackers can manipulate the JavaScript Object prototype chain through malicious input, potentially affecting all objects in the application and leading to unauthorized property modification or application compromise.

Affected Products

  • protobufjs versions prior to 6.11.3
  • Applications using protobufjs via Node.js package manager
  • Java applications using protobufjs through WebJars (org.webjars.npm)

Discovery Timeline

  • May 27, 2022 - CVE CVE-2022-25878 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-25878

Vulnerability Analysis

Prototype Pollution is a JavaScript-specific vulnerability class that occurs when an application allows user-controlled input to modify properties of the base Object.prototype. Since nearly all JavaScript objects inherit from Object.prototype, polluting it can have far-reaching consequences across the entire application.

In protobufjs, the util.setProperty function was vulnerable because it did not properly validate property paths before setting values on destination objects. An attacker could craft input that traverses up the prototype chain using the __proto__ property, thereby injecting arbitrary properties into the global Object prototype.

The impact of this vulnerability includes the ability to modify application behavior by injecting properties that other code paths may rely upon, potential denial of service by corrupting critical object properties, and in certain application contexts, this could escalate to remote code execution.

Root Cause

The root cause lies in the util.setProperty function within src/util.js. The function recursively sets nested properties on an object based on a provided path. Before the fix, there was no validation to prevent the __proto__ property from being used in the path, allowing attackers to escape the intended object scope and modify the global prototype chain.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can exploit this by:

  1. Sending malicious input to an application endpoint that passes untrusted data to util.setProperty or ReflectionObject.setParsedOption
  2. Providing a crafted .proto file for parsing that contains prototype-polluting payloads
  3. Manipulating nested property paths to include __proto__ segments that target the Object prototype

The following patch was applied to remediate the vulnerability by blocking __proto__ traversal:

javascript
 util.setProperty = function setProperty(dst, path, value) {
     function setProp(dst, path, value) {
         var part = path.shift();
+        if (part === "__proto__") {
+          return dst;
+        }
         if (path.length > 0) {
             dst[part] = setProp(dst[part] || {}, path, value);
         } else {

Source: GitHub Commit Changes

Detection Methods for CVE-2022-25878

Indicators of Compromise

  • Unexpected properties appearing on JavaScript objects that were not explicitly set by application code
  • Application behavior anomalies resulting from prototype chain modifications
  • Error messages or exceptions related to unexpected object property types or values
  • Log entries showing suspicious input containing __proto__, constructor, or prototype strings

Detection Strategies

  • Implement Software Composition Analysis (SCA) scanning to identify vulnerable protobufjs versions in your dependency tree
  • Use runtime application monitoring to detect attempts to access or modify __proto__ properties
  • Deploy Web Application Firewall (WAF) rules to block requests containing prototype pollution payloads
  • Integrate dependency scanning in CI/CD pipelines using tools like npm audit or Snyk

Monitoring Recommendations

  • Monitor application logs for input patterns containing __proto__, constructor.prototype, or similar prototype pollution signatures
  • Set up alerts for unexpected application behavior that could indicate successful prototype pollution
  • Track and audit all protobufjs usage points where user input is processed
  • Implement integrity monitoring for critical object properties in sensitive application contexts

How to Mitigate CVE-2022-25878

Immediate Actions Required

  • Upgrade protobufjs to version 6.11.3 or later immediately
  • Audit application code for all usage of util.setProperty and ReflectionObject.setParsedOption functions
  • Implement input validation to reject inputs containing prototype-related property names
  • Review and restrict sources of .proto files loaded by your application

Patch Information

The vulnerability has been patched in protobufjs version 6.11.3. The fix adds validation in the setProperty function to explicitly block __proto__ property traversal, preventing prototype chain manipulation.

For detailed information about the fix, refer to:

  • GitHub Commit Changes
  • GitHub Pull Request Discussion
  • Snyk JavaScript Vulnerability Report
  • Snyk Java Vulnerability Report

Workarounds

  • If immediate upgrade is not possible, implement a wrapper function that validates property paths before calling protobufjs functions
  • Use Object.freeze(Object.prototype) in application initialization to prevent prototype modifications (note: may cause compatibility issues)
  • Validate and sanitize all user input before passing to protobufjs parsing functions
  • Avoid loading .proto files from untrusted sources
bash
# Upgrade protobufjs to the patched version
npm update protobufjs@^6.11.3

# Verify installed version
npm list protobufjs

# Run security audit to check for vulnerabilities
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/TechProtobufjs

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.42%

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

  • GitHub Pull Request Discussion

  • Snyk Java Vulnerability Report

  • Snyk JavaScript Vulnerability Report
  • Related CVEs
  • CVE-2023-36665: Protobufjs Prototype Pollution 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