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

CVE-2026-35582: NSA Emissary RCE Vulnerability

CVE-2026-35582 is a remote code execution vulnerability in NSA Emissary that allows command injection via file path interpolation. This post covers technical details, affected versions, impact, and mitigation steps.

Updated: May 15, 2026

CVE-2026-35582 Overview

CVE-2026-35582 is an OS command injection vulnerability in Emissary, the NSA's peer-to-peer data-driven workflow engine. The flaw resides in Executrix.getCommand(), which interpolates temporary file paths into a /bin/sh -c shell command string without escaping or input validation. The IN_FILE_ENDING and OUT_FILE_ENDING configuration keys flow directly into these paths. An attacker who can author or modify a .cfg file can inject arbitrary shell metacharacters that execute commands in the JVM process's security context. The issue affects Emissary versions 8.42.0 and below and is fixed in version 8.43.0.

Critical Impact

A place author with .cfg write access can achieve arbitrary OS command execution under the Emissary JVM identity, with full compromise of confidentiality, integrity, and availability on the host.

Affected Products

  • NSA Emissary versions up to and including 8.42.0
  • Deployments using Executrix with custom IN_FILE_ENDING or OUT_FILE_ENDING values
  • Downstream frameworks embedding Emissary place configurations

Discovery Timeline

  • 2026-04-18 - CVE-2026-35582 published to NVD
  • 2026-04-24 - Last updated in NVD database

Technical Details for CVE-2026-35582

Vulnerability Analysis

The defect is classified under [CWE-78] (Improper Neutralization of Special Elements used in an OS Command). Emissary's Executrix.getCommand() method constructs a shell invocation by concatenating configuration-supplied strings into a /bin/sh -c command. The framework already enforces an allowlist on placeName before embedding it into the same shell string, but applies no equivalent sanitization to IN_FILE_ENDING or OUT_FILE_ENDING values. Because these values become part of temporary file paths inside an unescaped shell string, any shell metacharacter introduced through configuration is interpreted by /bin/sh rather than treated as a literal filename component.

Root Cause

The root cause is missing input neutralization at a framework boundary. Executrix neither escapes file ending values nor documents preconditions forbidding shell metacharacters in those fields. Downstream implementors have no safe way to mitigate the issue at the configuration layer because the unsafe concatenation occurs inside the framework itself.

Attack Vector

Exploitation requires local configuration authorship. An attacker who can write or modify a place .cfg file sets IN_FILE_ENDING or OUT_FILE_ENDING to a value containing characters such as ;, `, $(), or |. When Emissary executes the place, Executrix.getCommand() interpolates the malicious string into the /bin/sh -c invocation, and the shell evaluates the injected metacharacters as commands. No API access, network access, or runtime privileges beyond configuration authorship are required. Because the scope changes (CVSS S:C), injected commands run with the privileges of the Emissary JVM, which may exceed those of the configuration author.

// No verified public proof-of-concept code is available.
// Refer to the GitHub Security Advisory and patch commit for technical details.

Detection Methods for CVE-2026-35582

Indicators of Compromise

  • Unexpected child processes spawned by the Emissary JVM, particularly /bin/sh -c invocations with embedded metacharacters
  • Modifications to .cfg files containing IN_FILE_ENDING or OUT_FILE_ENDING values with shell special characters such as ;, |, `, or $()
  • Outbound network connections or file writes from the Emissary process inconsistent with normal workflow behavior

Detection Strategies

  • Audit all Emissary .cfg files for non-alphanumeric characters in IN_FILE_ENDING and OUT_FILE_ENDING keys
  • Monitor process trees for shell processes whose parent is the Emissary Java process and correlate against the place execution schedule
  • Apply file integrity monitoring to the Emissary configuration directory and alert on unauthorized writes

Monitoring Recommendations

  • Forward Emissary process telemetry and host shell execution logs to a centralized analytics platform for behavioral analysis
  • Alert when the Emissary JVM executes commands referencing unexpected binaries such as curl, wget, nc, or bash
  • Track configuration commits in version control and require code review for changes to file ending fields

How to Mitigate CVE-2026-35582

Immediate Actions Required

  • Upgrade Emissary to version 8.43.0 or later, which fixes the unsafe command construction in Executrix.getCommand()
  • Restrict write permissions on Emissary .cfg files to a minimal set of trusted operators
  • Inventory existing configurations and remove any IN_FILE_ENDING or OUT_FILE_ENDING values containing shell metacharacters

Patch Information

The fix is delivered in Emissary 8.43.0. Review the upstream patch in the GitHub commit 1faf33f and the GitHub Security Advisory GHSA-3p24-9x7v-7789 for full remediation details.

Workarounds

  • No safe downstream workaround exists because the unsafe concatenation occurs inside the framework; upgrading is required
  • As a temporary compensating control, run Emissary under a dedicated low-privilege service account with restricted filesystem and network access
  • Enforce mandatory access controls such as SELinux or AppArmor profiles to limit what the JVM child shell can execute
bash
# Compensating control example: restrict configuration write access
chown -R emissary:emissary /opt/emissary/config
chmod 750 /opt/emissary/config
find /opt/emissary/config -name '*.cfg' -exec chmod 640 {} \;

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNsa Emissary

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-3p24-9x7v-7789
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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