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

CVE-2026-40288: PraisonAI YAML Workflow RCE Vulnerability

CVE-2026-40288 is a remote code execution flaw in PraisonAI's workflow engine that allows attackers to execute arbitrary commands through malicious YAML files. This post covers the technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-40288 Overview

CVE-2026-40288 is a critical command injection vulnerability affecting PraisonAI, a multi-agent teams system. The vulnerability allows arbitrary command and code execution through untrusted YAML workflow files. When praisonai workflow run <file.yaml> loads a YAML file with type: job, the JobWorkflowExecutor in job_workflow.py processes steps that support run: (shell commands via subprocess.run()), script: (inline Python via exec()), and python: (arbitrary Python script execution)—all without any validation, sandboxing, or user confirmation.

Critical Impact

An attacker who can supply or influence a workflow YAML file can achieve full arbitrary command execution on the host system, compromising the machine and any accessible data or credentials. This is particularly dangerous in CI pipelines, shared repositories, or multi-tenant deployment environments.

Affected Products

  • PraisonAI versions below 4.5.139
  • praisonaiagents versions below 1.5.140

Discovery Timeline

  • 2026-04-14 - CVE-2026-40288 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-40288

Vulnerability Analysis

This vulnerability represents a severe case of CWE-78 (OS Command Injection) where the PraisonAI workflow engine fails to implement any security controls around YAML-based workflow processing. The vulnerability is characterized by a network-accessible attack surface that requires no privileges or user interaction to exploit.

The core issue stems from the workflow engine's design philosophy of trust-by-default for YAML configuration files. When a workflow file is processed, the engine directly executes commands and scripts without validating their source, content, or intent. This architectural flaw transforms a configuration mechanism into an attack vector for remote code execution.

The impact is severe because PraisonAI is commonly deployed in environments where YAML files may come from various sources—CI/CD pipelines, shared development repositories, or automated systems. In multi-tenant environments, this vulnerability could allow one user to compromise resources belonging to others.

Root Cause

The root cause is the absence of input validation, sandboxing, or user confirmation when processing YAML workflow files. The affected code paths in workflow.py and job_workflow.py blindly trust the contents of workflow files and execute arbitrary shell commands and Python code. Specifically, the functions action_run() in workflow.py and _exec_shell(), _exec_inline_python(), and _exec_python_script() in job_workflow.py pass user-controlled input directly to system execution functions like subprocess.run() and Python's exec() without any sanitization.

Attack Vector

The attack vector is network-based, targeting environments where an attacker can supply or influence workflow YAML files. Common attack scenarios include:

  1. CI/CD Pipeline Attacks: Malicious pull requests containing weaponized YAML workflow files
  2. Shared Repository Exploitation: Injecting malicious workflow files into shared development repositories
  3. Multi-tenant Environment Compromise: One tenant crafting malicious workflows that affect the underlying infrastructure or other tenants
  4. Supply Chain Attacks: Distributing seemingly legitimate workflow templates that contain embedded malicious commands

A malicious YAML workflow file would contain type: job with steps using run:, script:, or python: directives containing attacker-controlled commands. When processed by PraisonAI, these commands execute with the privileges of the PraisonAI process, potentially leading to complete system compromise.

Detection Methods for CVE-2026-40288

Indicators of Compromise

  • Unexpected processes spawned as children of PraisonAI workflow processes
  • Unusual network connections originating from systems running PraisonAI workflows
  • Modifications to system files or creation of new user accounts following workflow execution
  • Suspicious YAML files in workflow directories containing shell commands or Python code in run:, script:, or python: fields

Detection Strategies

  • Monitor for execution of subprocess.run() or exec() calls originating from PraisonAI processes
  • Implement file integrity monitoring on directories where workflow YAML files are stored
  • Deploy endpoint detection rules that alert on command execution patterns from Python-based AI agent frameworks
  • Review workflow YAML files for suspicious run:, script:, or python: directives before execution

Monitoring Recommendations

  • Enable detailed logging for all PraisonAI workflow executions including command arguments
  • Implement audit trails for YAML file modifications in workflow directories
  • Configure SentinelOne to monitor for behavioral patterns associated with command injection exploitation
  • Set up alerts for any exec() or subprocess.run() calls made by PraisonAI processes

How to Mitigate CVE-2026-40288

Immediate Actions Required

  • Upgrade PraisonAI to version 4.5.139 or later immediately
  • Upgrade praisonaiagents to version 1.5.140 or later
  • Audit all existing YAML workflow files for potentially malicious content
  • Restrict filesystem permissions on workflow directories to prevent unauthorized modifications
  • Implement strict access controls on who can submit workflow files for execution

Patch Information

The vulnerability has been addressed in PraisonAI version 4.5.139 and praisonaiagents version 1.5.140. Organizations should upgrade to these versions immediately. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Implement a manual review process for all workflow YAML files before execution
  • Deploy PraisonAI in isolated containers with minimal privileges and network access
  • Use allowlisting to restrict which YAML files can be executed based on cryptographic signatures
  • Disable workflow execution capabilities if not required for your deployment
bash
# Example: Restricting workflow directory permissions
chmod 750 /path/to/praisonai/workflows
chown root:praisonai-admins /path/to/praisonai/workflows

# Example: Running PraisonAI in a restricted container
docker run --read-only --security-opt=no-new-privileges \
  --cap-drop=ALL --network=none \
  praisonai:4.5.139

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPraisonai

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40287: PraisonAI RCE Vulnerability

  • CVE-2026-40156: PraisonAI RCE Vulnerability

  • CVE-2026-40158: PraisonAI Sandbox Bypass RCE Vulnerability

  • CVE-2026-40088: PraisonAI RCE 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