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

CVE-2026-40156: PraisonAI RCE Vulnerability

CVE-2026-40156 is a remote code execution flaw in PraisonAI that automatically executes malicious tools.py files without user consent. This post explains its impact, affected versions, and mitigation steps.

Published: April 17, 2026

CVE-2026-40156 Overview

CVE-2026-40156 is a Code Injection vulnerability affecting PraisonAI, a multi-agent teams system. Prior to version 4.5.128, PraisonAI automatically loads and executes a file named tools.py from the current working directory to discover and register custom agent tools. This loading process uses importlib.util.spec_from_file_location and immediately executes module-level code via spec.loader.exec_module() without explicit user consent, validation, or sandboxing.

The tools.py file is loaded implicitly, even when it is not referenced in configuration files or explicitly requested by the user. As a result, merely placing a file named tools.py in the working directory is sufficient to trigger arbitrary code execution. This behavior violates the expected security boundary between user-controlled project files (e.g., YAML configurations) and executable code, as untrusted content in the working directory is treated as trusted and executed automatically.

Critical Impact

If an attacker can place a malicious tools.py file into a directory where a user or automated system (e.g., CI/CD pipeline) runs praisonai, arbitrary code execution occurs immediately upon startup, before any agent logic begins.

Affected Products

  • PraisonAI versions prior to 4.5.128

Discovery Timeline

  • April 10, 2026 - CVE-2026-40156 published to NVD
  • April 13, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40156

Vulnerability Analysis

This vulnerability is classified under CWE-94 (Improper Control of Generation of Code - Code Injection). The core issue lies in PraisonAI's automatic tool discovery mechanism, which unconditionally loads and executes Python code from the working directory without user acknowledgment or security controls.

The attack requires local access and user interaction (such as a user navigating to a directory containing a malicious tools.py file and running the praisonai command). This makes the vulnerability particularly dangerous in shared development environments, cloned repositories with malicious contributions, or CI/CD pipelines that process untrusted code.

The vulnerability enables complete compromise of the system running PraisonAI, allowing attackers to steal credentials, exfiltrate data, install backdoors, or pivot to other systems on the network.

Root Cause

The root cause is the implicit trust placed in files within the current working directory. PraisonAI uses Python's importlib module to dynamically load tools.py without performing any validation checks on the file's origin, integrity, or contents. The module-level code executes during the import process itself, meaning malicious payloads run before the application can apply any security controls or user prompts.

This design pattern conflates data files (configuration YAML) with executable code, violating the principle of least privilege and the security boundary that users expect between configuration and code execution.

Attack Vector

The attack vector requires local access to place a malicious tools.py file in a target directory. Exploitation scenarios include:

  • Social Engineering: Convincing a user to download and extract an archive containing a malicious tools.py file
  • Supply Chain Attacks: Submitting malicious pull requests to repositories that include a tools.py file
  • CI/CD Pipeline Compromise: Placing malicious files in repositories processed by automated build systems running PraisonAI
  • Shared Development Environments: Dropping malicious files in shared network directories used by multiple developers

When a user executes praisonai in a directory containing the malicious file, the attacker's code runs with the full privileges of the executing user. The malicious payload can perform any operation the user is authorized to perform, including accessing sensitive data, modifying system configurations, or establishing persistent access.

Detection Methods for CVE-2026-40156

Indicators of Compromise

  • Unexpected tools.py files appearing in project directories that were not created by authorized users
  • Unusual process spawning or network connections initiated immediately after praisonai startup
  • Modified or newly created files in sensitive directories following PraisonAI execution
  • Anomalous outbound connections from systems running PraisonAI to unknown external hosts

Detection Strategies

  • Monitor file system activity for creation of tools.py files in directories associated with PraisonAI projects
  • Implement file integrity monitoring (FIM) on development directories and CI/CD build environments
  • Review process execution logs for unexpected child processes spawned by praisonai or Python interpreters
  • Deploy endpoint detection and response (EDR) solutions to identify code injection attempts during module loading

Monitoring Recommendations

  • Enable audit logging on systems running PraisonAI to track file access and process creation events
  • Configure alerting for any tools.py file creation or modification in monitored directories
  • Implement network monitoring to detect unusual outbound connections from development systems
  • Review CI/CD pipeline logs for unexpected code execution patterns during PraisonAI operations

How to Mitigate CVE-2026-40156

Immediate Actions Required

  • Upgrade PraisonAI to version 4.5.128 or later immediately
  • Audit all directories where PraisonAI is executed for unexpected tools.py files
  • Review recent changes to repositories and project directories for unauthorized file additions
  • Inspect CI/CD pipeline configurations to ensure untrusted code cannot place files in execution directories

Patch Information

This vulnerability is fixed in PraisonAI version 4.5.128. Users should upgrade to this version or later to remediate the vulnerability. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Verify the working directory does not contain unexpected tools.py files before running praisonai
  • Run PraisonAI in isolated environments (containers, VMs) with restricted file system access
  • Implement directory access controls to prevent unauthorized file creation in PraisonAI project directories
  • Use read-only file systems or volume mounts where feasible to prevent malicious file placement
bash
# Verify no unexpected tools.py exists before execution
if [ -f "tools.py" ]; then
    echo "WARNING: tools.py found in current directory. Verify this file is trusted before proceeding."
    exit 1
fi
praisonai

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPraisonai

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.03%

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

  • CVE-2026-40288: PraisonAI YAML Workflow 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