Join us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-27728

CVE-2026-27728: OneUptime OS Command Injection RCE Flaw

CVE-2026-27728 is an OS command injection vulnerability in OneUptime that allows authenticated users to execute arbitrary commands on Probe servers. This article covers the technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-27728 Overview

OneUptime is a solution for monitoring and managing online services. A critical OS command injection vulnerability exists in the NetworkPathMonitor.performTraceroute() function that allows any authenticated project user to execute arbitrary operating system commands on the Probe server. The vulnerability is exploited by injecting shell metacharacters into a monitor's destination field. This flaw affects versions prior to 10.0.7 and has been addressed in the security patch released in version 10.0.7.

Critical Impact

Authenticated users can achieve full remote code execution on the Probe server through shell metacharacter injection, potentially leading to complete server compromise, data exfiltration, or lateral movement within the infrastructure.

Affected Products

  • OneUptime versions prior to 10.0.7
  • OneUptime Probe Server component
  • NetworkPathMonitor.performTraceroute() function

Discovery Timeline

  • 2026-02-25 - CVE CVE-2026-27728 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2026-27728

Vulnerability Analysis

This vulnerability is classified as CWE-78 (Improper Neutralization of Special Elements used in an OS Command), commonly known as OS Command Injection. The vulnerable code path exists within the NetworkPathMonitor.performTraceroute() function, which is responsible for executing network traceroute operations. The function accepts user-controlled input (the destination field from a monitor configuration) and passes it directly to a shell command execution context without proper sanitization or validation.

The flaw allows authenticated project users—who may have limited permissions within the OneUptime platform—to escalate their access to full operating system command execution on the underlying Probe server. This represents a significant privilege escalation vector, as the intended functionality only permits users to configure monitoring endpoints, not execute arbitrary system commands.

Root Cause

The root cause of this vulnerability is the use of the exec() function from Node.js's child_process module to spawn shell commands with unsanitized user input. The exec() function spawns a shell and executes the command within that shell, which interprets shell metacharacters (such as ;, |, &, $(), and backticks) present in the destination field. This allows an attacker to break out of the intended traceroute command context and inject additional commands for execution.

Attack Vector

The attack is network-based and requires low-privilege authentication as a project user within OneUptime. An attacker can craft a malicious monitor configuration with a destination field containing shell metacharacters followed by arbitrary commands. When the Probe server processes this monitor and executes the traceroute operation, the injected commands are executed with the privileges of the Probe server process.

For example, a destination field containing example.com; cat /etc/passwd or $(malicious_command) would result in command execution beyond the intended traceroute operation.

typescript
// Security patch showing the fix from exec() to execFile()
// Source: https://github.com/OneUptime/oneuptime/commit/f2cce35a04fac756cecc7a4c55e23758b99288c1

 } from "Common/Types/Monitor/NetworkMonitor/NetworkPathTrace";
 import dns from "dns";
 import { promisify } from "util";
-import { exec } from "child_process";
+import { execFile } from "child_process";
 
-const execAsync: (
-  command: string,
-) => Promise<{ stdout: string; stderr: string }> = promisify(exec);
+const execFileAsync: (
+  file: string,
+  args: string[],
+) => Promise<{ stdout: string; stderr: string }> = promisify(execFile);
 const dnsResolve: (hostname: string) => Promise<string[]> = promisify(
   dns.resolve,
 );

The fix replaces the vulnerable exec() function with execFile(), which does not spawn a shell and instead executes the file directly with arguments passed as an array. This prevents shell metacharacter interpretation and eliminates the command injection vector.

Detection Methods for CVE-2026-27728

Indicators of Compromise

  • Unusual monitor destination field values containing shell metacharacters (;, |, &, $(), backticks)
  • Unexpected process spawning from the Probe server process
  • Anomalous network connections or reverse shells originating from Probe servers
  • Unauthorized file system access or modifications on Probe server hosts

Detection Strategies

  • Monitor audit logs for monitor configuration changes with suspicious destination values containing special characters
  • Implement network detection rules for outbound connections from Probe servers to unexpected destinations
  • Deploy endpoint detection to identify child processes spawned by the OneUptime Probe process that deviate from expected behavior (traceroute, ping, etc.)

Monitoring Recommendations

  • Enable verbose logging on Probe servers and centralize log collection for security analysis
  • Implement file integrity monitoring on Probe server hosts to detect unauthorized changes
  • Configure alerting for command execution anomalies using SentinelOne's behavioral AI detection capabilities

How to Mitigate CVE-2026-27728

Immediate Actions Required

  • Upgrade OneUptime to version 10.0.7 or later immediately
  • Audit existing monitor configurations for any suspicious destination field values
  • Review Probe server logs for signs of exploitation
  • Isolate Probe servers if immediate patching is not possible

Patch Information

OneUptime has released version 10.0.7 which addresses this vulnerability by replacing the vulnerable exec() function with execFile() and implementing destination validation. The security fix is available in commit f2cce35a04fac756cecc7a4c55e23758b99288c1. Organizations should update to this version or later as soon as possible.

For additional details, refer to the GitHub Security Advisory GHSA-jmhp-5558-qxh5 and the security patch commit.

Workarounds

  • Restrict network access to Probe servers to limit potential attack surface
  • Implement strict input validation at the application level for monitor destination fields
  • Apply network segmentation to isolate Probe servers from critical infrastructure
  • Limit project user permissions to only trusted individuals until patching is complete
bash
# Example: Update OneUptime to patched version
docker pull oneuptime/oneuptime:10.0.7
docker-compose down && docker-compose up -d

# Verify the installed version
docker exec oneuptime-app cat package.json | grep version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOneuptime

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability0.24%

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

  • GitHub Security Advisory GHSA-jmhp-5558-qxh5
  • Latest CVEs
  • CVE-2026-3268: PSI Probe Auth Bypass Vulnerability

  • CVE-2026-3265: Free-CRM Auth Bypass Vulnerability

  • CVE-2026-3264: Free-CRM RCE Vulnerability

  • CVE-2026-28280: osctrl-admin Stored XSS Vulnerability
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
  • English
  • 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