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

CVE-2026-33866: MLflow Authorization Bypass Vulnerability

CVE-2026-33866 is an authorization bypass vulnerability in MLflow that allows unauthorized users to access model artifacts through the AJAX endpoint. This article covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-33866 Overview

MLflow is vulnerable to an authorization bypass affecting the AJAX endpoint used to download saved model artifacts. Due to missing access-control validation, a user without permissions to a given experiment can directly query this endpoint and retrieve model artifacts they are not authorized to access. This vulnerability is classified as CWE-862 (Missing Authorization).

Critical Impact

Unauthorized users can access sensitive machine learning model artifacts, potentially exposing proprietary models, training data insights, and intellectual property stored within MLflow experiments.

Affected Products

  • MLflow through version 3.10.1

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-33866 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-33866

Vulnerability Analysis

This authorization bypass vulnerability exists in MLflow's AJAX endpoint responsible for downloading saved model artifacts. The core issue stems from the endpoint failing to verify whether the requesting user has appropriate permissions to access artifacts associated with a specific experiment. When a user makes a request to download model artifacts, the application processes the request without validating the user's authorization level against the target experiment's access control list.

The vulnerability allows any authenticated user to enumerate and download model artifacts from experiments they should not have access to. This represents a horizontal privilege escalation scenario where users can access resources belonging to other users or teams within the same MLflow deployment.

Root Cause

The root cause is classified as CWE-862 (Missing Authorization). The AJAX endpoint for artifact downloads lacks proper access-control validation logic. When processing download requests, the application fails to check whether the authenticated user has been granted explicit permission to access the specified experiment and its associated artifacts. This architectural oversight allows the endpoint to serve artifact data based solely on the validity of the artifact path, without considering the user's authorization scope.

Attack Vector

The attack can be executed over the network by any authenticated user. An attacker with valid credentials to the MLflow instance can craft direct requests to the artifact download endpoint, specifying experiment IDs or artifact paths for experiments they do not have permission to access. Since the endpoint does not enforce authorization checks, the server responds with the requested artifact data regardless of the user's actual permissions.

The attacker can potentially enumerate available experiments and systematically download artifacts by iterating through experiment identifiers. This could lead to the exposure of trained machine learning models, model weights, configuration files, and other sensitive artifacts stored within MLflow.

Detection Methods for CVE-2026-33866

Indicators of Compromise

  • Unusual artifact download requests from users accessing experiments outside their authorized scope
  • Spike in API requests to the artifact download AJAX endpoint from a single user account
  • Access logs showing sequential experiment ID enumeration patterns
  • Downloads of artifacts from experiments where the requesting user has no recorded legitimate access

Detection Strategies

  • Implement audit logging for all artifact download requests, capturing the requesting user and target experiment ID
  • Monitor for access patterns where users request artifacts from experiments they have never interacted with before
  • Set up alerts for high-volume artifact download requests that deviate from normal user behavior
  • Cross-reference artifact access logs with experiment permission assignments to identify unauthorized access attempts

Monitoring Recommendations

  • Enable detailed logging on the MLflow tracking server to capture all API endpoint interactions
  • Review access logs regularly for anomalous patterns in artifact retrieval requests
  • Deploy network monitoring to detect enumeration behavior targeting the artifact download endpoint
  • Integrate MLflow logs with SIEM solutions for centralized security monitoring

How to Mitigate CVE-2026-33866

Immediate Actions Required

  • Review and apply the security patch referenced in the GitHub MLflow Pull Request
  • Audit artifact access logs to identify any potential unauthorized access that may have already occurred
  • Implement network-level access controls to restrict the artifact download endpoint to trusted networks if immediate patching is not possible
  • Review user permissions and experiment access controls to ensure principle of least privilege

Patch Information

A fix has been developed and is available through the GitHub MLflow Pull Request #21708. Organizations should update to the patched version of MLflow as soon as it becomes available. Additional technical analysis is available from the CERT CVE-2026-33865 Analysis and the A Fine Blog Post which discusses attack vectors against MLflow artifacts.

Workarounds

  • Restrict network access to the MLflow tracking server to trusted internal networks only
  • Implement a reverse proxy with custom authorization logic to validate user permissions before forwarding artifact download requests
  • Disable the affected AJAX artifact download endpoint if not required for operations until a patch can be applied
  • Deploy additional authentication layers such as mutual TLS for API access
bash
# Example: Restrict MLflow access using firewall rules (Linux iptables)
# Allow only trusted internal network to access MLflow (adjust IP range as needed)
iptables -A INPUT -p tcp --dport 5000 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 5000 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMlflow

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • A Fine Blog Post

  • CERT CVE-2026-33865 Analysis

  • GitHub MLflow Pull Request
  • Related CVEs
  • CVE-2026-0545: MLflow Auth Bypass Vulnerability

  • CVE-2026-2635: MLflow Authentication Bypass Vulnerability

  • CVE-2026-33865: MLflow Stored XSS Vulnerability

  • CVE-2026-0596: MLflow Command Injection 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