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
    • 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-2026-5758

CVE-2026-5758: Protocol-Buffers-Schema RCE Vulnerability

CVE-2026-5758 is a prototype pollution flaw in Mafintosh's protocol-buffers-schema 3.6.0 that enables remote code execution, DoS attacks, and security bypass. This article covers technical details, impact, and mitigation.

Published: April 17, 2026

CVE-2026-5758 Overview

CVE-2026-5758 is a prototype pollution vulnerability in Mafintosh's protocol-buffers-schema JavaScript library version 3.6.0. Prototype pollution is a security flaw that allows attackers to inject properties into existing JavaScript object prototypes, potentially leading to altered application logic, security bypass, denial of service, or remote code execution.

Critical Impact

Attackers can exploit this prototype pollution vulnerability to manipulate object prototypes, potentially bypassing security checks, causing denial of service conditions, or achieving remote code execution in applications using the affected library.

Affected Products

  • protocol-buffers-schema version 3.6.0
  • Applications using Mafintosh's protocol-buffers-schema library
  • Node.js applications parsing protocol buffer schema files with the vulnerable library

Discovery Timeline

  • 2026-04-15 - CVE CVE-2026-5758 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2026-5758

Vulnerability Analysis

This prototype pollution vulnerability exists in the protocol-buffers-schema library, which is used for parsing Protocol Buffer schema files in JavaScript applications. The vulnerability allows an attacker to inject malicious properties into JavaScript's base Object prototype through specially crafted input.

When a JavaScript application processes untrusted protocol buffer schema data using the vulnerable library, the attacker-controlled properties can pollute the prototype chain. This pollution persists across the application and affects all objects that inherit from the polluted prototype.

The impact is significant because protocol buffer schemas are often parsed from external sources in microservices architectures and API implementations. If an application parses a malicious schema, the attacker can effectively inject arbitrary properties that will be inherited by all JavaScript objects created afterward.

Root Cause

The root cause of this vulnerability lies in unsafe property assignment within the protocol-buffers-schema parsing logic. When processing schema definitions, the library fails to properly validate or sanitize property names before assigning them to objects. This allows an attacker to use special property names like __proto__ or constructor.prototype to inject properties directly into Object.prototype rather than the intended target object.

The lack of input validation on property names during schema parsing enables the prototype pollution attack vector.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can exploit this vulnerability by providing a maliciously crafted protocol buffer schema file to an application that uses the vulnerable library for parsing.

The attack scenario involves:

  1. Identifying an application that parses user-supplied or externally-sourced protocol buffer schemas using protocol-buffers-schema version 3.6.0
  2. Crafting a malicious schema containing prototype pollution payloads (e.g., properties named __proto__)
  3. Submitting the malicious schema to the target application
  4. The library parses the schema and inadvertently pollutes Object.prototype
  5. Subsequent application logic is affected by the polluted prototype, potentially leading to security bypass, denial of service, or code execution

A typical prototype pollution payload might include schema field definitions that use __proto__ as a field name with malicious nested properties, causing those properties to be inherited by all objects in the application.

Detection Methods for CVE-2026-5758

Indicators of Compromise

  • Unexpected properties appearing on JavaScript objects that were not explicitly set
  • Application logic behaving inconsistently due to prototype chain modifications
  • Error logs showing unexpected property access or type coercion issues
  • Unusual protocol buffer schema files containing __proto__, constructor, or prototype field names

Detection Strategies

  • Implement dependency scanning to identify protocol-buffers-schema version 3.6.0 in your application dependencies
  • Review application logs for unusual parsing errors or unexpected object property access
  • Use runtime application security monitoring to detect prototype pollution attempts
  • Employ static code analysis tools that can identify prototype pollution vulnerabilities in JavaScript codebases

Monitoring Recommendations

  • Monitor npm audit and other software composition analysis (SCA) tools for vulnerability alerts on protocol-buffers-schema
  • Implement logging around protocol buffer schema parsing operations to detect malicious input patterns
  • Set up alerts for unusual application behavior that may indicate prototype pollution exploitation
  • Review inbound schema files or data for suspicious property names like __proto__ or constructor

How to Mitigate CVE-2026-5758

Immediate Actions Required

  • Audit your application dependencies for protocol-buffers-schema version 3.6.0 using npm list or yarn list
  • Review the GitHub Pull Request for patch details
  • Consider implementing input validation to reject schemas containing dangerous property names
  • Evaluate alternative libraries or implement Object.freeze() on prototypes as a temporary defensive measure

Patch Information

A fix for this vulnerability has been proposed. Review the GitHub Pull Request for the latest patch status. Upgrade to the patched version of protocol-buffers-schema once available. Monitor the Moriel Harush CVE Analysis for additional technical details and remediation guidance.

Workarounds

  • Implement input sanitization to reject protocol buffer schemas containing __proto__, constructor, or prototype in field names before parsing
  • Use Object.create(null) for objects that will store parsed schema data to prevent prototype chain pollution
  • Apply Object.freeze(Object.prototype) at application startup as a defensive measure, though this may break some functionality
  • Consider wrapping the protocol-buffers-schema library calls with validation logic that checks for malicious property names
bash
# Check for vulnerable dependency version
npm list protocol-buffers-schema

# Update to patched version when available
npm update protocol-buffers-schema

# Alternatively, audit all dependencies for known vulnerabilities
npm audit

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechProtocol Buffers

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • Technical References
  • GitHub Pull Request

  • Moriel Harush CVE Analysis
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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