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
    • 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-24051

CVE-2026-24051: OpenTelemetry-Go RCE Vulnerability

CVE-2026-24051 is a path hijacking vulnerability in OpenTelemetry-Go that enables remote code execution on macOS systems. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 6, 2026

CVE-2026-24051 Overview

CVE-2026-24051 is a Path Hijacking (Untrusted Search Paths) vulnerability in OpenTelemetry-Go, the Go implementation of OpenTelemetry. The vulnerability exists in the OpenTelemetry Go SDK versions v1.20.0 through v1.39.0 and affects macOS/Darwin systems. The resource detection code in sdk/resource/host_id.go executes the ioreg system command using an untrusted search path. An attacker with the ability to locally modify the PATH environment variable can achieve Arbitrary Code Execution (ACE) within the context of the application.

Critical Impact

Local attackers can achieve arbitrary code execution by manipulating the PATH environment variable to hijack the ioreg system command execution on macOS/Darwin systems.

Affected Products

  • OpenTelemetry-Go SDK v1.20.0 through v1.39.0
  • macOS/Darwin systems running affected OpenTelemetry-Go versions
  • Applications using the resource detection functionality in sdk/resource/host_id.go

Discovery Timeline

  • 2026-02-02 - CVE CVE-2026-24051 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-24051

Vulnerability Analysis

This vulnerability is classified as CWE-426 (Untrusted Search Path). The issue stems from how the OpenTelemetry Go SDK performs resource detection on macOS/Darwin systems. When the SDK needs to identify the host system, it executes the ioreg system utility to gather hardware information. However, the implementation does not use an absolute path to the binary, instead relying on the PATH environment variable to locate the executable.

This design flaw creates an exploitable condition where a local attacker who can modify the PATH environment variable can place a malicious executable named ioreg in a directory that appears earlier in the search path than the legitimate system binary location. When the vulnerable code executes, it will invoke the attacker-controlled binary instead of the legitimate system utility.

The attack requires local access and the ability to modify environment variables, which limits the attack surface but still presents a significant risk in multi-user environments or scenarios where an attacker has limited initial access and seeks privilege escalation or lateral movement.

Root Cause

The root cause is the use of an unqualified command name when executing the ioreg system utility in the sdk/resource/host_id.go file. Instead of specifying the absolute path to the system binary (typically /usr/sbin/ioreg), the code relies on PATH resolution. This violates the security principle of using explicit paths for system command execution, allowing path hijacking attacks.

Attack Vector

The attack vector is local, requiring an attacker to have existing access to the target system with the ability to modify the PATH environment variable for the process running the vulnerable OpenTelemetry-Go application. The attacker creates a malicious executable named ioreg and places it in a directory that is searched before the legitimate binary location. When the application invokes the resource detection functionality, the malicious binary executes with the same privileges as the application, enabling arbitrary code execution.

For detailed technical information about the vulnerability and the fix, refer to the GitHub Security Advisory GHSA-9h8m-3fm2-qjrq and the fix commit.

Detection Methods for CVE-2026-24051

Indicators of Compromise

  • Presence of suspicious executables named ioreg in non-standard directories
  • Unusual PATH environment variable modifications in application processes
  • Unexpected process executions originating from OpenTelemetry-instrumented Go applications
  • Anomalous child processes spawned by applications using OpenTelemetry-Go SDK

Detection Strategies

  • Monitor for the creation of files named ioreg in directories other than /usr/sbin/
  • Implement file integrity monitoring on system binary directories
  • Analyze process execution chains for OpenTelemetry-instrumented applications
  • Review environment variable configurations for applications using the affected SDK versions

Monitoring Recommendations

  • Enable detailed process execution logging on macOS/Darwin systems running affected applications
  • Configure alerts for unexpected PATH modifications in application environments
  • Monitor for unusual command execution patterns from Go applications using OpenTelemetry
  • Implement SentinelOne's behavioral AI to detect anomalous execution patterns indicative of path hijacking

How to Mitigate CVE-2026-24051

Immediate Actions Required

  • Upgrade OpenTelemetry-Go SDK to version v1.40.0 or later immediately
  • Audit all macOS/Darwin systems running applications with affected SDK versions
  • Review PATH environment variable configurations for critical applications
  • Restrict write access to directories in the application's PATH

Patch Information

A fix was released with OpenTelemetry-Go SDK version v1.40.0. The patch modifies the code in sdk/resource/host_id.go to use an absolute path when executing the ioreg command, eliminating the path hijacking vulnerability. The fix commit is available at the OpenTelemetry-Go repository.

Workarounds

  • If immediate patching is not possible, restrict the PATH environment variable to include only trusted system directories
  • Implement strict file permissions on all directories in the application's PATH
  • Run affected applications in isolated environments with controlled PATH configurations
  • Consider temporarily disabling resource detection on macOS/Darwin systems until patching is complete
bash
# Restrict PATH to trusted system directories for the application
export PATH="/usr/bin:/bin:/usr/sbin:/sbin"

# Verify no rogue ioreg binaries exist in PATH directories
which -a ioreg

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpentelemetry Go

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-426
  • Technical References
  • GitHub Commit Summary

  • GitHub Security Advisory GHSA-9h8m-3fm2-qjrq
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs 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