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-2026-33744

CVE-2026-33744: BentoML RCE Vulnerability

CVE-2026-33744 is a remote code execution vulnerability in BentoML affecting versions prior to 1.4.37. Unsanitized input in bentofile.yaml allows arbitrary command execution. This article covers technical details, impact, and fixes.

Published: April 3, 2026

CVE-2026-33744 Overview

CVE-2026-33744 is a command injection vulnerability affecting BentoML, a Python library for building online serving systems optimized for AI applications and model inference. Prior to version 1.4.37, the docker.system_packages field in bentofile.yaml accepts arbitrary strings that are interpolated directly into Dockerfile RUN commands without sanitization. Since system_packages is semantically a list of OS package names (data), users do not expect values to be interpreted as shell commands. A malicious bentofile.yaml achieves arbitrary command execution during bentoml containerize or docker build operations.

Critical Impact

Attackers can achieve arbitrary command execution during the container build process by crafting a malicious bentofile.yaml configuration file, potentially compromising build environments and CI/CD pipelines.

Affected Products

  • BentoML versions prior to 1.4.37
  • Applications using bentoml containerize functionality
  • CI/CD pipelines that process untrusted bentofile.yaml configurations

Discovery Timeline

  • 2026-03-27 - CVE-2026-33744 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33744

Vulnerability Analysis

This vulnerability (CWE-94: Code Injection) arises from improper handling of user-supplied input in the BentoML containerization process. The docker.system_packages field in bentofile.yaml is designed to specify a list of operating system packages to be installed during the Docker image build. However, the values provided in this field are directly interpolated into Dockerfile RUN commands without proper sanitization or validation.

The fundamental issue is that BentoML treats what should be a simple data field (package names) as executable shell content. When a user or an automated process runs bentoml containerize, the library generates a Dockerfile where the system packages are passed directly to package manager commands. An attacker who can supply or modify a bentofile.yaml can inject arbitrary shell commands that execute during the container build process.

Root Cause

The root cause is insufficient input validation and the absence of sanitization when processing the docker.system_packages configuration values. The BentoML library directly concatenates these values into shell commands within the generated Dockerfile without escaping special characters or validating that the input contains only valid package names. This violates the principle of treating user input as data, not code.

Attack Vector

The attack requires local access where a user must be tricked into building a container from a malicious bentofile.yaml, or an attacker must have write access to the configuration file. The attack vector involves crafting a bentofile.yaml with malicious content in the docker.system_packages field. When the victim executes bentoml containerize or triggers a docker build that processes this configuration, the injected commands execute with the privileges of the build process.

For example, an attacker could include shell metacharacters and commands within a package name entry. When processed, these characters break out of the intended package installation command and execute arbitrary code. This is particularly dangerous in automated CI/CD environments that may process bentofile.yaml files from untrusted sources such as pull requests or external repositories. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33744

Indicators of Compromise

  • Unusual commands or shell metacharacters (;, |, $(), backticks) present in bentofile.yaml files
  • Unexpected network connections or file system modifications during container build processes
  • Build logs showing execution of commands unrelated to package installation
  • Modified or suspicious bentofile.yaml files in repositories or shared storage

Detection Strategies

  • Implement pre-build scanning of bentofile.yaml files for suspicious patterns in the docker.system_packages field
  • Monitor build environments for unexpected process execution or network activity during containerization
  • Use file integrity monitoring on bentofile.yaml configurations in production repositories
  • Deploy static analysis tools to scan YAML configurations for injection patterns before builds

Monitoring Recommendations

  • Enable comprehensive logging for all bentoml containerize operations and review for anomalies
  • Monitor CI/CD pipeline activity for builds triggered by untrusted sources processing BentoML configurations
  • Implement alerting for any build failures or unexpected behavior during containerization
  • Track changes to bentofile.yaml files across all repositories using version control monitoring

How to Mitigate CVE-2026-33744

Immediate Actions Required

  • Upgrade BentoML to version 1.4.37 or later immediately to address this vulnerability
  • Audit all existing bentofile.yaml files for suspicious or unexpected content in the docker.system_packages field
  • Review recent container builds for signs of compromise or unexpected command execution
  • Restrict access to modify bentofile.yaml configurations in shared or CI/CD environments

Patch Information

Version 1.4.37 of BentoML includes a fix for this command injection vulnerability. Users should upgrade to this version or later to remediate the issue. The fix implements proper sanitization of the docker.system_packages field values before they are interpolated into Dockerfile commands. For complete details, see the GitHub Security Advisory GHSA-jfjg-vc52-wqvf.

Workarounds

  • Validate all bentofile.yaml files manually before running bentoml containerize, ensuring docker.system_packages contains only valid package names
  • Implement a pre-commit hook or CI/CD gate to scan for shell metacharacters in bentofile.yaml configuration fields
  • Restrict the ability to modify bentofile.yaml files to trusted personnel only
  • Consider building containers in isolated environments with limited network access and privileges until the patch is applied
bash
# Upgrade BentoML to the patched version
pip install --upgrade bentoml>=1.4.37

# Verify the installed version
pip show bentoml | grep Version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechBentoml

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

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

  • CVE-2025-32375: BentoML Insecure Deserialization RCE Flaw

  • 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