A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
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
    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
    Identity Security
    • Singularity Identity
      Identity Threat Detection and Response
  • 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-2025-68271

CVE-2025-68271: OpenC3 COSMOS RCE Vulnerability

CVE-2025-68271 is a remote code execution vulnerability in OpenC3 COSMOS that allows unauthenticated attackers to execute arbitrary Ruby code via the JSON-RPC API. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-68271 Overview

CVE-2025-68271 is a critical remote code execution (RCE) vulnerability affecting OpenC3 COSMOS, a platform designed to send commands to and receive data from embedded systems. The vulnerability exists in versions 5.0.0 through 6.10.1 and allows unauthenticated attackers to execute arbitrary Ruby code through the JSON-RPC API.

The flaw originates from unsafe use of Ruby's eval() function when processing array-like inputs through the String#convert_to_value method. Critically, the command code path parses attacker-controlled strings before authorization checks are performed, enabling exploitation even though the request ultimately fails with a 401 Unauthorized response.

Critical Impact

Unauthenticated remote code execution allowing complete system compromise. Attackers can execute arbitrary Ruby code on vulnerable OpenC3 COSMOS instances without any authentication, potentially gaining full control over embedded systems managed by the platform.

Affected Products

  • OpenC3 COSMOS versions 5.0.0 through 6.10.1
  • Systems utilizing the JSON-RPC API for command operations
  • Embedded system management deployments running vulnerable OpenC3 COSMOS versions

Discovery Timeline

  • 2026-01-13 - CVE-2025-68271 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68271

Vulnerability Analysis

This vulnerability is classified as CWE-95 (Improper Neutralization of Directives in Dynamically Evaluated Code), commonly known as Code Injection. The flaw enables unauthenticated attackers to achieve remote code execution by exploiting unsafe dynamic code evaluation in the OpenC3 COSMOS JSON-RPC API.

The vulnerability is particularly severe because exploitation occurs before authorization checks are applied. When a JSON-RPC request uses the string form of certain APIs, attacker-controlled parameter text flows into the String#convert_to_value method. For inputs that appear to be arrays, this method calls Ruby's eval() function to parse the string—directly executing any embedded Ruby code.

Root Cause

The root cause lies in the use of Ruby's eval() function to parse user-supplied input in the String#convert_to_value method. This dangerous pattern allows arbitrary code execution when processing array-like string inputs. The architectural flaw is compounded by the fact that the cmd code path parses and evaluates command strings before invoking the authorize() function, creating a pre-authentication attack surface.

Attack Vector

The attack is network-accessible and requires no authentication, user interaction, or special privileges. An attacker can craft a malicious JSON-RPC request containing Ruby code embedded within array-like string parameters. When the server processes this request, the convert_to_value method evaluates the malicious input using eval(), executing the attacker's code with the privileges of the OpenC3 COSMOS process.

The vulnerability is exploited through the JSON-RPC API endpoint by sending specially crafted requests where command parameters contain malicious Ruby code disguised as array syntax. The code executes during the parsing phase, before any authorization checks occur, meaning even failed requests trigger code execution.

For detailed technical analysis and proof-of-concept information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2025-68271

Indicators of Compromise

  • Unusual JSON-RPC API requests containing array-like syntax with embedded Ruby code patterns such as system(), exec(), or backtick commands
  • HTTP 401 responses preceded by unexpected system command execution or process spawning
  • Log entries showing command parsing errors alongside suspicious process activity
  • Network connections to command-and-control infrastructure originating from OpenC3 COSMOS processes

Detection Strategies

  • Monitor JSON-RPC API traffic for requests containing Ruby metacharacters or eval-related syntax in parameter fields
  • Implement web application firewall rules to detect array-like strings with embedded code patterns
  • Deploy runtime application self-protection (RASP) to detect dynamic code evaluation attempts
  • Enable detailed logging on OpenC3 COSMOS instances and correlate with system process monitoring

Monitoring Recommendations

  • Audit all inbound requests to the JSON-RPC API endpoint for malicious payloads
  • Configure intrusion detection systems to alert on Ruby code execution patterns in HTTP request bodies
  • Monitor process creation events on systems running OpenC3 COSMOS for unexpected child processes
  • Establish baseline behavior for the application and alert on deviations in system call patterns

How to Mitigate CVE-2025-68271

Immediate Actions Required

  • Upgrade OpenC3 COSMOS to version 6.10.2 or later immediately
  • If immediate patching is not possible, restrict network access to the JSON-RPC API endpoint to trusted sources only
  • Implement network segmentation to limit exposure of OpenC3 COSMOS instances
  • Review system logs for evidence of exploitation attempts and investigate any suspicious activity

Patch Information

OpenC3 has released version 6.10.2 which addresses this vulnerability. Organizations should prioritize upgrading all OpenC3 COSMOS installations from the affected version range (5.0.0 to 6.10.1) to the patched release. Refer to the GitHub Security Advisory for official remediation guidance.

Workarounds

  • Restrict network access to the JSON-RPC API using firewall rules or network segmentation to allow only trusted IP addresses
  • Deploy a web application firewall (WAF) with rules to block requests containing suspicious Ruby code patterns
  • Consider temporarily disabling the JSON-RPC API if it is not operationally critical until patching can be completed
  • Implement strict input validation at the network perimeter to filter potentially malicious payloads
bash
# Example: Restrict JSON-RPC API access using iptables (Linux)
# Allow only trusted management network (example: 10.0.0.0/24)
iptables -A INPUT -p tcp --dport 2900 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 2900 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenc3 Cosmos

  • SeverityCRITICAL

  • CVSS Score10.0

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-95
  • Technical References
  • GitHub Security Advisory
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