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

CVE-2026-42076: Evolver AI Engine RCE Vulnerability

CVE-2026-42076 is a command injection RCE flaw in Evolver, a GEP-powered AI agent engine. Attackers can execute arbitrary commands via the _extractLLM() function. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-42076 Overview

CVE-2026-42076 is a command injection vulnerability in Evolver, a GEP-powered self-evolving engine for AI agents. The flaw resides in the _extractLLM() function, which constructs a curl command using string concatenation and passes it to execSync() without sanitization. Attackers can inject shell metacharacters through the corpus parameter to execute arbitrary commands on the server. The vulnerability affects all versions prior to 1.69.3 and is tracked under [CWE-78] (OS Command Injection). Maintainers patched the issue in version 1.69.3.

Critical Impact

Unauthenticated remote attackers can execute arbitrary shell commands on hosts running vulnerable Evolver deployments, leading to full server compromise.

Affected Products

  • Evolver (EvoMap) versions prior to 1.69.3
  • Deployments exposing the _extractLLM() code path to untrusted input
  • AI agent pipelines that invoke Evolver corpus extraction

Discovery Timeline

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

Technical Details for CVE-2026-42076

Vulnerability Analysis

The vulnerability resides in Evolver's _extractLLM() function. The function builds a shell command line by concatenating the user-controllable corpus parameter into a curl invocation. It then hands the resulting string to Node.js execSync(), which spawns a shell to interpret the command. Because the input never passes through escaping or argument-array execution, shell metacharacters such as ;, |, `, $(), and && retain their special meaning. An attacker who controls the corpus value can append arbitrary commands that the Node.js process executes with its own privileges. Successful exploitation grants remote code execution, enabling credential theft, lateral movement, deployment of persistent backdoors, and tampering with AI agent outputs. Refer to the GitHub Security Advisory GHSA-j5w5-568x-rq53 for technical details.

Root Cause

The root cause is unsafe command construction. _extractLLM() uses string concatenation to embed untrusted input into a shell command and then executes it through execSync(), a shell-invoking API. The function lacks input validation, allowlisting, and shell escaping. Using execFile() or spawn() with an argument array, or shell-quoting helpers, would have prevented the metacharacter injection.

Attack Vector

The attack is reachable over the network and requires no authentication or user interaction. An attacker submits a crafted corpus value containing shell metacharacters through any interface that forwards input to _extractLLM(). The injected payload runs in the same shell context as the parent curl invocation, achieving arbitrary command execution on the host. See the security advisory for proof-of-concept details.

Detection Methods for CVE-2026-42076

Indicators of Compromise

  • Unexpected child processes spawned by the Node.js Evolver process, particularly shells (/bin/sh, bash) invoking curl, wget, or download-and-execute chains.
  • Outbound network connections from the Evolver host to unrecognized domains immediately following corpus extraction events.
  • Application logs containing corpus parameter values with shell metacharacters such as ;, |, `, $(, or &&.

Detection Strategies

  • Inspect HTTP request bodies and query parameters routed to Evolver endpoints for shell metacharacters in the corpus field.
  • Correlate Node.js process telemetry with shell command execution to flag deviations from the normal curl invocation pattern.
  • Hunt for newly created files, cron entries, or systemd units written by the Evolver service account after suspicious requests.

Monitoring Recommendations

  • Enable verbose application logging for _extractLLM() invocations and forward logs to a central SIEM.
  • Alert on any process tree where the Evolver runtime is the parent of an interactive shell or networking tool other than curl.
  • Monitor egress traffic from servers running Evolver and baseline expected destinations for the AI agent workload.

How to Mitigate CVE-2026-42076

Immediate Actions Required

  • Upgrade Evolver to version 1.69.3 or later as published in the GitHub EvoMap Release v1.69.3.
  • Audit application logs and host telemetry for prior exploitation attempts targeting the corpus parameter.
  • Rotate any secrets, API keys, or tokens accessible to the Evolver process if compromise is suspected.

Patch Information

The maintainers fixed the issue in Evolver 1.69.3. The patch removes the unsafe string concatenation in _extractLLM() and uses a safe argument-array invocation that prevents shell metacharacter interpretation. Patch notes are available in the GitHub EvoMap Release v1.69.3 and the GitHub Security Advisory GHSA-j5w5-568x-rq53.

Workarounds

  • If immediate upgrade is not possible, restrict network access to Evolver endpoints so only trusted internal callers can submit corpus input.
  • Place a reverse proxy or web application firewall in front of Evolver and reject requests whose corpus parameter contains shell metacharacters.
  • Run the Evolver service under a least-privilege account inside a container or sandbox to limit the blast radius of any successful injection.
bash
# Configuration example: upgrade to the patched release
npm install evolver@1.69.3

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechEvolver

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.40%

  • 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-78
  • Technical References
  • GitHub EvoMap Release v1.69.3

  • GitHub Security Advisory GHSA-j5w5-568x-rq53
  • Related CVEs
  • CVE-2026-42077: Evolver Prototype Pollution 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