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-42077

CVE-2026-42077: Evolver Prototype Pollution Vulnerability

CVE-2026-42077 is a prototype pollution vulnerability in Evolver's mailbox store module that allows attackers to inject malicious properties into Object.prototype. This post covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-42077 Overview

CVE-2026-42077 is a prototype pollution vulnerability in Evolver, a GEP-powered self-evolving engine for AI agents. The flaw exists in the mailbox store module of versions prior to 1.69.3. The _applyUpdate() and _updateRecord() functions use Object.assign() to merge user-controlled data without filtering dangerous keys such as __proto__, constructor, and prototype. Attackers with local access and high privileges can inject malicious properties into Object.prototype, modifying the behavior of all JavaScript objects in the runtime. The maintainers patched the issue in version 1.69.3. The weakness is tracked under CWE-1321: Improperly Controlled Modification of Object Prototype Attributes.

Critical Impact

Successful exploitation pollutes Object.prototype across the Evolver runtime, enabling tampering with object behavior, potential logic bypass, and process-level denial of service.

Affected Products

  • Evolver versions prior to 1.69.3
  • Evolver mailbox store module (_applyUpdate() and _updateRecord() functions)
  • Applications embedding the vulnerable Evolver runtime for AI agent orchestration

Discovery Timeline

  • 2026-05-04 - CVE-2026-42077 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-42077

Vulnerability Analysis

The vulnerability resides in the Evolver mailbox store module, which persists and updates record state for AI agent message handling. The _applyUpdate() and _updateRecord() functions accept arbitrary key-value input and pass it directly to Object.assign(). JavaScript's Object.assign() follows the prototype chain when target keys are __proto__, allowing writes to reach Object.prototype. Once polluted, every object instantiated in the runtime inherits the injected properties. This can corrupt control-flow checks, override security-relevant defaults, and trigger crashes when objects encounter unexpected inherited members. The CWE-1321 classification reflects the absence of key filtering before merge operations.

Root Cause

The root cause is missing input sanitization on object keys prior to merge. Neither _applyUpdate() nor _updateRecord() rejects reserved keys like __proto__, constructor, or prototype. Because Object.assign() does not perform deep-merge protections, supplying a payload such as { "__proto__": { "polluted": true } } writes through to the global prototype.

Attack Vector

Exploitation requires local access and high privileges, with no user interaction. An attacker who can submit crafted update payloads to the mailbox store module triggers the merge path. The high attack complexity reflects the constrained interface for delivering the malicious key. The impact spans confidentiality, integrity, and availability, with availability affected most significantly because polluted prototypes commonly induce process crashes.

The vulnerability manifests when user-controlled data containing __proto__ keys reaches Object.assign() without filtering. See GitHub Security Advisory GHSA-2cjr-5v3h-v2w4 for technical details.

Detection Methods for CVE-2026-42077

Indicators of Compromise

  • Mailbox store update payloads containing the literal keys __proto__, constructor, or prototype in JSON bodies.
  • Unexpected properties appearing on otherwise-empty objects in Evolver runtime logs or memory dumps.
  • Node.js process crashes or assertion failures originating from _applyUpdate() or _updateRecord() call frames.

Detection Strategies

  • Inspect application logs for serialized inputs containing __proto__, constructor.prototype, or escaped variants such as \\u005f\\u005fproto\\u005f\\u005f.
  • Add runtime guards that hash Object.prototype key sets at startup and alert on drift.
  • Review version metadata across Evolver deployments to identify hosts running releases below 1.69.3.

Monitoring Recommendations

  • Forward Evolver and Node.js process logs to a centralized analytics platform and alert on prototype-related crash signatures.
  • Monitor mailbox store API calls for anomalous payload structures and unusual key names.
  • Track package inventories with software composition analysis tooling to flag vulnerable Evolver versions in CI/CD pipelines.

How to Mitigate CVE-2026-42077

Immediate Actions Required

  • Upgrade Evolver to version 1.69.3 or later in all environments running the mailbox store module.
  • Restrict local access to hosts running Evolver and audit accounts holding high privileges on those systems.
  • Review historical mailbox update payloads for prior exploitation attempts containing prototype-related keys.

Patch Information

The maintainers released the fix in Evolver v1.69.3. The patch adds key filtering in _applyUpdate() and _updateRecord() to reject __proto__, constructor, and prototype before invoking Object.assign(). Refer to the GitHub Security Advisory GHSA-2cjr-5v3h-v2w4 for the complete advisory.

Workarounds

  • Wrap mailbox store inputs with a sanitizer that strips __proto__, constructor, and prototype keys before they reach merge functions.
  • Replace Object.assign() usage in custom forks with Object.create(null) targets or a vetted deep-merge library that blocks prototype keys.
  • Run the Node.js process with --disable-proto=delete to remove the __proto__ accessor from Object.prototype.
bash
# Configuration example
npm install evolver@1.69.3
node --disable-proto=delete server.js

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechEvolver

  • SeverityMEDIUM

  • CVSS Score5.2

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:L/I:L/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Technical References
  • GitHub Evolver Release v1.69.3

  • GitHub Security Advisory GHSA-2cjr-5v3h-v2w4
  • Related CVEs
  • CVE-2026-42076: Evolver AI Engine RCE Vulnerability

  • CVE-2026-42075: Evolver Path Traversal 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