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
    • 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-32375

CVE-2025-32375: BentoML Insecure Deserialization RCE Flaw

CVE-2025-32375 is an insecure deserialization vulnerability in BentoML that enables remote code execution through crafted POST requests. Attackers can execute arbitrary code and gain server access. Fixed in version 1.4.8.

Updated: January 22, 2026

CVE-2025-32375 Overview

CVE-2025-32375 is an insecure deserialization vulnerability affecting BentoML, a popular Python library for building online serving systems optimized for AI applications and model inference. The vulnerability exists in BentoML's runner server component, where improper handling of deserialized data allows attackers to execute arbitrary code on vulnerable systems. By crafting malicious POST requests with specific headers and parameters, unauthenticated remote attackers can achieve remote code execution, gaining initial access and potentially exposing sensitive information on the target server.

Critical Impact

This insecure deserialization vulnerability enables unauthenticated remote code execution on BentoML runner servers, potentially compromising AI/ML infrastructure and exposing sensitive model data and server information.

Affected Products

  • BentoML versions prior to 1.4.8
  • BentoML runner server deployments
  • AI/ML serving infrastructure using vulnerable BentoML versions

Discovery Timeline

  • 2025-04-09 - CVE-2025-32375 published to NVD
  • 2025-04-22 - Last updated in NVD database

Technical Details for CVE-2025-32375

Vulnerability Analysis

This vulnerability falls under CWE-502 (Deserialization of Untrusted Data), a well-known class of security weaknesses that can lead to severe consequences including remote code execution. The BentoML runner server processes incoming POST requests without adequately validating or sanitizing the deserialized data, creating an opportunity for attackers to inject malicious payloads.

In Python-based applications, insecure deserialization commonly occurs when using modules like pickle or similar serialization libraries that can execute arbitrary code during the deserialization process. When an attacker controls the data being deserialized, they can craft payloads that execute system commands, establish reverse shells, or perform other malicious actions upon deserialization.

The impact of successful exploitation is significant—attackers gain the ability to execute arbitrary code with the privileges of the BentoML service, potentially compromising the entire AI/ML serving infrastructure, accessing trained models, and pivoting to other systems within the network.

Root Cause

The root cause of CVE-2025-32375 is the insecure handling of user-supplied data during deserialization in BentoML's runner server. The application fails to properly validate or restrict the types of objects that can be deserialized from incoming requests. This allows attackers to embed malicious serialized objects that execute arbitrary code when processed by the server's deserialization routines.

Attack Vector

The attack is conducted over the network and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted POST requests to the BentoML runner server endpoint. The malicious payload is embedded in specific headers and parameters, which are then processed by the vulnerable deserialization code.

The exploitation process involves:

  1. Identifying a BentoML runner server exposed to the network
  2. Crafting a malicious serialized payload designed for Python deserialization
  3. Sending the payload via POST request with specific headers and parameters
  4. The server deserializes the malicious data, triggering arbitrary code execution

For detailed technical information about this vulnerability, refer to the GitHub Security Advisory GHSA-7v4r-c989-xh26.

Detection Methods for CVE-2025-32375

Indicators of Compromise

  • Unusual POST requests to BentoML runner server endpoints with malformed or suspicious headers
  • Unexpected child processes spawned by the BentoML service
  • Anomalous network connections initiated from the BentoML server to external addresses
  • Evidence of serialized Python objects in request payloads (base64-encoded pickle data patterns)

Detection Strategies

  • Monitor HTTP traffic to BentoML endpoints for requests containing suspicious serialized data patterns
  • Implement application-level logging to capture all deserialization operations and flag anomalies
  • Deploy Web Application Firewall (WAF) rules to detect and block known Python deserialization payloads
  • Use endpoint detection and response (EDR) solutions to identify unauthorized code execution from the BentoML process

Monitoring Recommendations

  • Enable verbose logging on BentoML runner servers and forward logs to a centralized SIEM platform
  • Set up alerts for unexpected process creation or network connections from BentoML service accounts
  • Monitor for signs of data exfiltration or lateral movement originating from ML infrastructure
  • Implement file integrity monitoring on BentoML installation directories

How to Mitigate CVE-2025-32375

Immediate Actions Required

  • Upgrade BentoML to version 1.4.8 or later immediately
  • Audit network exposure of BentoML runner servers and restrict access using firewalls or network segmentation
  • Review logs for any signs of exploitation attempts targeting BentoML endpoints
  • Implement network-level access controls to limit who can communicate with runner server endpoints

Patch Information

BentoML has addressed this vulnerability in version 1.4.8. Organizations should upgrade to this version or later to remediate the insecure deserialization issue. The patch information and security advisory are available at the BentoML GitHub Security Advisory.

Workarounds

  • Place BentoML runner servers behind a reverse proxy with strict request filtering
  • Implement network segmentation to isolate ML serving infrastructure from untrusted networks
  • Use authentication mechanisms at the network or application layer to restrict access to runner endpoints
  • Consider deploying a WAF with rules to detect and block serialized Python object payloads
bash
# Network isolation example using iptables
# Restrict access to BentoML runner server (default port) to trusted networks only
iptables -A INPUT -p tcp --dport 3000 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 3000 -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/TechBentoml

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability55.25%

  • 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-502
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33744: BentoML RCE Vulnerability

  • CVE-2025-27520: BentoML RCE Vulnerability

  • CVE-2026-27905: BentoML Path Traversal Vulnerability

  • CVE-2026-24123: BentoML Path Traversal Vulnerability
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