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-2026-28794

CVE-2026-28794: Orpc RCE Vulnerability

CVE-2026-28794 is a prototype pollution vulnerability in Orpc that enables remote code execution through JSON deserialization flaws. This article covers technical details, affected versions, security impact, and mitigation.

Published: March 13, 2026

CVE-2026-28794 Overview

CVE-2026-28794 is a critical prototype pollution vulnerability affecting the oRPC framework, a tool designed to help developers build APIs that are end-to-end type-safe and adhere to OpenAPI standards. The vulnerability exists in the RPC JSON deserializer of the @orpc/client package and allows unauthenticated, remote attackers to inject arbitrary properties into the global Object.prototype.

Because prototype pollution persists for the lifetime of the Node.js process and affects all objects created thereafter, exploitation of this vulnerability can lead to severe security breaches including authentication bypass, denial of service, and potentially Remote Code Execution (RCE).

Critical Impact

Remote unauthenticated attackers can pollute the JavaScript Object prototype, affecting all objects in the Node.js process and potentially achieving authentication bypass, DoS, or RCE.

Affected Products

  • oRPC versions prior to 1.13.6
  • @orpc/client package (all versions before the security patch)
  • Applications using oRPC for API development with JSON deserialization

Discovery Timeline

  • 2026-03-06 - CVE-2026-28794 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-28794

Vulnerability Analysis

This prototype pollution vulnerability occurs in the JSON deserialization logic within the @orpc/client package. The deserializer processes incoming JSON data and reconstructs JavaScript objects by traversing path segments to set values at specific object locations. Prior to the patch, the code did not validate whether the target property actually existed on the object being modified.

An attacker can craft malicious JSON payloads containing specially constructed path segments such as __proto__ or constructor.prototype. When the deserializer processes these payloads, it inadvertently writes attacker-controlled values to the global Object.prototype. Since all JavaScript objects inherit from Object.prototype, this pollution affects every object created in the application, potentially overwriting security-critical properties used in authentication checks, configuration, or business logic.

Root Cause

The root cause is insufficient input validation during the deserialization process. The vulnerable code traverses object paths without verifying that each path segment corresponds to an actual, existing property on the target object. This allows attackers to navigate to prototype properties (__proto__, constructor.prototype) and inject arbitrary key-value pairs that become inherited by all objects.

The deserializer blindly trusted the path segments provided in the serialized data, creating an object traversal mechanism that could be abused to reach and modify prototype chains.

Attack Vector

This vulnerability is exploitable remotely over the network without authentication. An attacker can send specially crafted JSON-RPC requests to an oRPC endpoint containing malicious path references. The attack requires no user interaction and has low complexity, making it highly exploitable in exposed oRPC deployments.

The attack flow typically involves:

  1. Sending a JSON payload with path segments targeting __proto__ or constructor.prototype
  2. The deserializer traverses to the prototype object
  3. Malicious properties are injected into Object.prototype
  4. All subsequent object operations in the Node.js process inherit the polluted properties
typescript
         segments.forEach((segment) => {
           currentRef = currentRef[preSegment]
           preSegment = segment

+          if (!Object.hasOwn(currentRef, preSegment)) {
+            throw new Error(`Security error: accessing non-existent path during deserialization. Path segment: ${preSegment}`)
+          }
         })

         currentRef[preSegment] = getBlob(i)

Source: GitHub Commit 1dba06fc6f938c2486de303c2fa096bc1c8418b5

The patch adds a critical security check using Object.hasOwn() to verify that each path segment being accessed actually exists as an own property on the current object reference. If an attacker attempts to traverse to a non-existent or prototype-inherited property, the deserializer now throws a security error, preventing prototype pollution.

Detection Methods for CVE-2026-28794

Indicators of Compromise

  • Unexpected properties appearing on JavaScript objects that were not explicitly defined
  • Authentication mechanisms failing or behaving unexpectedly across the application
  • Application logic errors involving undefined or unexpected property values
  • Unusual JSON-RPC requests containing __proto__, constructor, or prototype path segments in request bodies

Detection Strategies

  • Implement request logging and analyze JSON-RPC payloads for prototype pollution patterns (__proto__, constructor.prototype)
  • Deploy Web Application Firewalls (WAF) with rules to detect and block requests containing prototype pollution payloads
  • Use runtime application self-protection (RASP) tools to monitor for prototype modifications
  • Implement integrity monitoring on critical Object.prototype properties

Monitoring Recommendations

  • Monitor application logs for deserialization errors or security exceptions from the oRPC client
  • Set up alerts for unexpected application behavior that could indicate prototype pollution (authentication anomalies, configuration changes)
  • Track Node.js process stability and watch for crashes or hangs that could indicate DoS via prototype pollution
  • Audit incoming API traffic for anomalous JSON structures targeting object prototypes

How to Mitigate CVE-2026-28794

Immediate Actions Required

  • Upgrade @orpc/client to version 1.13.6 or later immediately
  • Review application logs for any evidence of exploitation attempts
  • Consider restarting Node.js processes to clear any existing prototype pollution
  • Implement input validation at the API gateway level to reject suspicious payloads

Patch Information

The vulnerability has been patched in oRPC version 1.13.6. The fix implements a security check using Object.hasOwn() to ensure that path segments during deserialization reference actual own properties of the object, preventing traversal to prototype properties.

Review the GitHub Security Advisory GHSA-m272-9rp6-32mc for complete details. The patch commit is available for review.

Workarounds

  • If immediate upgrade is not possible, implement a reverse proxy or WAF rule to block requests containing __proto__ or constructor in JSON payloads
  • Consider freezing Object.prototype using Object.freeze(Object.prototype) at application startup (note: this may break some libraries)
  • Implement custom request validation middleware to sanitize incoming JSON before it reaches the oRPC deserializer
  • Isolate oRPC services in separate Node.js processes to limit the blast radius of potential prototype pollution
bash
# Upgrade oRPC to patched version
npm update @orpc/client@1.13.6

# Or install specific patched version
npm install @orpc/client@1.13.6

# Verify installed version
npm list @orpc/client

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOrpc

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.77%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:L/SI:L/SA:N/E:X/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
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33331: Orpc OpenAPI Documentation 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