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-2025-9959

CVE-2025-9959: Smolagents Sandbox Escape RCE Vulnerability

CVE-2025-9959 is a sandbox escape RCE vulnerability in smolagents caused by incomplete validation of dunder attributes. Attackers can exploit this via prompt injection. Learn about the technical details, impact, and mitigation.

Published: April 21, 2026

CVE-2025-9959 Overview

CVE-2025-9959 is a code injection vulnerability affecting HuggingFace's smolagents library. The vulnerability stems from incomplete validation of Python dunder (double underscore) attributes, which allows an attacker to escape from the Local Python execution environment sandbox enforced by smolagents. Exploitation requires a Prompt Injection attack to trick the AI agent into generating and executing malicious code, potentially leading to arbitrary code execution outside the sandboxed environment.

Critical Impact

An attacker can leverage prompt injection to escape the Python sandbox and execute arbitrary code on the host system, potentially compromising confidentiality and integrity of the underlying infrastructure.

Affected Products

  • HuggingFace smolagents (versions prior to patch)

Discovery Timeline

  • 2025-09-03 - CVE-2025-9959 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-9959

Vulnerability Analysis

This vulnerability is classified under CWE-94 (Improper Control of Generation of Code - Code Injection). The smolagents library provides a Local Python execution environment that is intended to sandbox code executed by AI agents. However, the sandbox implementation contains an incomplete validation mechanism for Python dunder attributes (special attributes with double underscores like __class__, __bases__, __subclasses__, etc.).

Python dunder attributes provide powerful introspection capabilities that can be abused to traverse the object hierarchy and access restricted modules or functions. When the sandbox fails to properly validate all dunder attribute access patterns, an attacker can craft payloads that leverage these attributes to break out of the restricted execution environment.

Root Cause

The root cause of this vulnerability lies in the incomplete blocklist or allowlist implementation for Python dunder attributes within the smolagents sandbox. The sandbox validation logic fails to account for all possible attribute traversal techniques that can be used to access prohibited objects or modules. This is a common pitfall in Python sandbox implementations, as the language's dynamic nature and rich introspection capabilities make it difficult to fully restrict code execution.

Attack Vector

The attack requires an initial prompt injection to manipulate the AI agent into generating malicious code. Once the agent is tricked into creating code that utilizes specific dunder attribute traversal patterns, the malicious code can escape the sandbox. The attack is network-accessible and requires user interaction (the victim must interact with a compromised prompt or malicious input). Upon successful exploitation, an attacker could achieve code execution with the privileges of the process running the smolagents library.

The exploitation flow typically involves:

  1. Crafting a malicious prompt that instructs the agent to generate specific Python code
  2. The agent generates code containing dunder attribute traversal patterns
  3. The sandbox fails to detect the malicious patterns during validation
  4. The code executes and escapes the sandbox, gaining access to restricted functionality

For detailed technical information about the exploitation mechanism, see the JFrog Vulnerability Report.

Detection Methods for CVE-2025-9959

Indicators of Compromise

  • Unusual Python code patterns in agent logs containing dunder attribute chains (e.g., __class__.__bases__.__subclasses__)
  • Evidence of prompt injection attempts in user input logs
  • Unexpected process spawning or file system access from the smolagents process
  • Anomalous network connections originating from the agent execution environment

Detection Strategies

  • Implement input validation and sanitization for all prompts submitted to AI agents
  • Monitor agent-generated code for suspicious dunder attribute access patterns
  • Deploy runtime application self-protection (RASP) solutions to detect sandbox escape attempts
  • Enable verbose logging for the smolagents execution environment to capture code execution traces

Monitoring Recommendations

  • Configure alerting for code execution events containing known sandbox escape patterns
  • Monitor process behavior for the smolagents application using endpoint detection and response (EDR) solutions
  • Implement anomaly detection for file system and network activity from AI agent processes
  • Review agent interaction logs regularly for signs of prompt injection attacks

How to Mitigate CVE-2025-9959

Immediate Actions Required

  • Update smolagents to the latest patched version that addresses the dunder attribute validation issue
  • Review and audit any AI agent deployments using smolagents for signs of compromise
  • Implement additional input validation layers for prompts submitted to agents
  • Consider temporarily disabling or restricting access to the Local Python execution environment until patched

Patch Information

A fix for this vulnerability has been merged into the smolagents repository. Organizations should update to the patched version as referenced in the GitHub Pull Request #1551. Review the pull request for specific implementation details of the fix.

Workarounds

  • Implement strict prompt filtering to detect and block potential prompt injection attempts before they reach the agent
  • Deploy network segmentation to isolate AI agent execution environments from critical infrastructure
  • Use containerization or virtual machines to provide an additional layer of isolation for the execution environment
  • Disable the Local Python executor and use alternative execution backends if available
bash
# Example: Restrict smolagents process with containerization
docker run --rm \
  --security-opt=no-new-privileges \
  --cap-drop=ALL \
  --read-only \
  --network=none \
  your-smolagents-container

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

  • SeverityHIGH

  • CVSS Score7.6

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Pull Request

  • Jfrog Vulnerability Report
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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