Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25873

CVE-2026-25873: OmniGen2-RL RCE Vulnerability

CVE-2026-25873 is a remote code execution flaw in OmniGen2-RL's reward server allowing attackers to execute commands via malicious POST requests. This article covers technical details, affected versions, and mitigations.

Published: March 20, 2026

CVE-2026-25873 Overview

OmniGen2-RL contains an unauthenticated remote code execution vulnerability in the reward server component that allows remote attackers to execute arbitrary commands by sending malicious HTTP POST requests. Attackers can exploit insecure pickle deserialization of request bodies to achieve code execution on the host system running the exposed service.

This critical vulnerability (CWE-502: Deserialization of Untrusted Data) affects the reward server component of OmniGen2-RL, a reinforcement learning framework. The flaw stems from the application's use of Python's pickle module to deserialize untrusted data from incoming HTTP requests without any authentication or input validation, enabling complete system compromise.

Critical Impact

Unauthenticated attackers can achieve full remote code execution on systems running the OmniGen2-RL reward server by sending specially crafted HTTP POST requests containing malicious pickle payloads, potentially leading to complete host compromise.

Affected Products

  • OmniGen2-RL reward server component (reward_proxy.py)
  • OmniGen2-RL reward server component (reward_server.py)
  • VectorSpaceLab OmniGen2 framework with RL components

Discovery Timeline

  • 2026-03-18 - CVE-2026-25873 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-25873

Vulnerability Analysis

The vulnerability exists in the OmniGen2-RL reward server component, specifically within the HTTP request handling logic of reward_proxy.py and reward_server.py. The application processes incoming HTTP POST requests by directly deserializing the request body using Python's native pickle.loads() function without any prior authentication checks or data validation.

Python's pickle module is inherently unsafe when used with untrusted data because it can execute arbitrary code during the deserialization process. When an attacker sends a malicious pickle payload to the vulnerable endpoint, the server blindly deserializes it, triggering code execution with the privileges of the running process.

The vulnerability is particularly severe because:

  • No authentication is required to reach the vulnerable endpoint
  • The reward server is designed to be network-accessible for distributed RL training
  • Successful exploitation grants the attacker complete control over the host system

Root Cause

The root cause is the insecure use of Python's pickle deserialization on untrusted network input. The vulnerable code in reward_proxy.py (lines 208 and 224) and reward_server.py (line 118) accepts HTTP POST request bodies and passes them directly to pickle.loads() without any sanitization, authentication, or use of safer deserialization alternatives.

This represents a fundamental security anti-pattern, as the Python documentation explicitly warns against using pickle with untrusted data: "Warning: The pickle module is not secure. Only unpickle data you trust."

Attack Vector

The attack is network-based and requires no user interaction or authentication. An attacker can craft a malicious pickle payload that, when deserialized, executes arbitrary Python code. This is typically achieved by defining a class with a __reduce__ method that returns a callable (such as os.system or subprocess.Popen) along with command arguments.

The exploitation process involves:

  1. Attacker identifies an exposed OmniGen2-RL reward server endpoint
  2. Attacker constructs a malicious pickle object containing a payload (e.g., reverse shell)
  3. Attacker sends an HTTP POST request with the malicious pickle as the request body
  4. The server deserializes the pickle, triggering immediate code execution
  5. Attacker gains command execution with the privileges of the server process

For detailed technical analysis of the exploitation technique, see the Chocapikk blog post and the VulnCheck Security Advisory.

Detection Methods for CVE-2026-25873

Indicators of Compromise

  • Unexpected HTTP POST requests to the reward server port with binary or unusual payload content
  • Process spawning from the Python reward server process (e.g., /bin/sh, bash, curl, wget)
  • Reverse shell connections originating from hosts running OmniGen2-RL components
  • Suspicious network traffic from reward server hosts to unknown external IPs

Detection Strategies

  • Monitor for HTTP POST requests containing pickle magic bytes (\\x80\\x04\\x95 for protocol 4 or similar patterns) in request bodies
  • Implement network-level monitoring for unexpected outbound connections from reward server hosts
  • Deploy application-level logging to capture deserialization events and monitor for __reduce__ method invocations
  • Use endpoint detection solutions to identify anomalous child processes spawned by Python interpreters

Monitoring Recommendations

  • Enable verbose logging on all OmniGen2-RL reward server instances
  • Implement network segmentation to isolate reward servers from untrusted networks
  • Deploy intrusion detection rules for pickle deserialization attack patterns
  • Monitor system call activity on hosts running the reward server for suspicious execve patterns

How to Mitigate CVE-2026-25873

Immediate Actions Required

  • Restrict network access to reward server endpoints using firewall rules or network ACLs
  • Avoid exposing the reward server to untrusted networks or the public internet
  • Implement network segmentation to ensure only trusted training nodes can reach the reward server
  • Consider temporarily disabling the reward server component until a patch is applied

Patch Information

A fix has been proposed in GitHub Pull Request #139 for the OmniGen2 repository. Organizations using OmniGen2-RL should monitor the official repository for merged patches and update to a patched version as soon as one becomes available.

The recommended remediation involves replacing pickle deserialization with safer alternatives such as:

  • Using json for data serialization when possible
  • Implementing signature verification for pickle data
  • Adopting restricted unpicklers that block dangerous reduction functions

Workarounds

  • Bind the reward server to localhost only (127.0.0.1) and use SSH tunneling or VPN for remote access
  • Implement a reverse proxy with authentication (e.g., mTLS or API keys) in front of the reward server
  • Deploy host-based firewall rules to restrict access to specific trusted IP addresses
  • Run the reward server in an isolated container or VM to limit blast radius
bash
# Configuration example - Restrict reward server to localhost only
# In reward_server.py startup or configuration:
# Change: server.bind("0.0.0.0", PORT)
# To: server.bind("127.0.0.1", PORT)

# Using iptables to restrict access to reward server port (example port 8080)
iptables -A INPUT -p tcp --dport 8080 -s 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -s TRUSTED_TRAINING_NODE_IP -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -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/TechN/A

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • ArXiv Research Paper

  • Chocapikk Blog Post

  • GitHub OmniGen2 Code Snippet

  • GitHub OmniGen2 Code Snippet

  • GitHub OmniGen2 Code Snippet

  • GitHub OmniGen2 Pull Request

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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