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

CVE-2026-0545: MLflow Auth Bypass Vulnerability

CVE-2026-0545 is an authentication bypass vulnerability in MLflow that allows unauthenticated access to job endpoints, potentially enabling remote code execution. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-0545 Overview

CVE-2026-0545 is a critical authentication bypass vulnerability in MLflow, an open-source platform for managing the machine learning lifecycle. The vulnerability exists in the FastAPI job endpoints under /ajax-api/3.0/jobs/*, which are not protected by authentication or authorization even when the basic-auth application is enabled. This flaw allows unauthenticated network clients to submit, read, search, and cancel jobs without credentials, completely bypassing basic-auth protections.

Critical Impact

When job execution is enabled and job functions are allowlisted, this vulnerability can lead to unauthenticated remote code execution if allowed jobs perform privileged actions such as shell execution or filesystem changes. Even when jobs are considered safe, attackers can exploit this flaw for job spam, denial of service, or data exposure through job results.

Affected Products

  • MLflow (mlflow/mlflow) - latest versions with MLFLOW_SERVER_ENABLE_JOB_EXECUTION=true
  • MLflow deployments with basic-auth app enabled and allowlisted job functions

Discovery Timeline

  • 2026-04-03 - CVE-2026-0545 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-0545

Vulnerability Analysis

This vulnerability is classified as CWE-306 (Missing Authentication for Critical Function). The core issue stems from the FastAPI job endpoints being implemented without authentication middleware when the basic-auth app is enabled on the MLflow server. This represents a fundamental design oversight where the job execution API surface was not integrated with the existing authentication framework.

The vulnerability requires two conditions to be exploitable: the environment variable MLFLOW_SERVER_ENABLE_JOB_EXECUTION must be set to true, and at least one job function must be allowlisted. When these conditions are met, the attack surface becomes significant as any network-accessible client can interact with the job endpoints without presenting valid credentials.

Root Cause

The root cause is a missing authentication check on the FastAPI job endpoints. While the MLflow basic-auth app provides authentication for most API routes, the job-related endpoints under /ajax-api/3.0/jobs/* were not properly wrapped with authentication middleware. This creates an authentication bypass where protected functionality remains accessible to unauthenticated users.

Attack Vector

The attack vector is network-based with low complexity requirements. An attacker with network access to the MLflow server can directly send HTTP requests to the unprotected job endpoints. The exploitation does not require any privileges or user interaction. Attackers can:

  1. Submit malicious job requests to execute arbitrary code if privileged job functions are allowlisted
  2. Search and read existing job data, potentially exposing sensitive information in job results
  3. Cancel legitimate jobs, causing denial of service
  4. Spam the job queue with requests to exhaust server resources

The vulnerability has been documented through the Huntr bug bounty platform. For detailed technical analysis and proof-of-concept information, refer to the Huntr Bounty Details.

Detection Methods for CVE-2026-0545

Indicators of Compromise

  • Unusual HTTP requests to /ajax-api/3.0/jobs/* endpoints without valid authentication headers
  • Unexpected job submissions in MLflow logs from unrecognized sources or IP addresses
  • Anomalous job cancellation events affecting legitimate workflow operations
  • Increased job queue activity without corresponding authenticated user sessions

Detection Strategies

  • Monitor web server access logs for requests to /ajax-api/3.0/jobs/* endpoints that lack authentication headers
  • Implement network-level monitoring for connections to MLflow server ports from unauthorized IP ranges
  • Review MLflow application logs for job submissions that do not correlate with authenticated sessions
  • Deploy web application firewall (WAF) rules to flag or block suspicious requests to job endpoints

Monitoring Recommendations

  • Enable verbose logging on the MLflow server to capture all job-related API activity
  • Establish baseline metrics for normal job submission rates and alert on anomalies
  • Implement network segmentation to restrict direct access to MLflow server endpoints from untrusted networks
  • Regularly audit the MLFLOW_SERVER_ENABLE_JOB_EXECUTION configuration and job function allowlists

How to Mitigate CVE-2026-0545

Immediate Actions Required

  • Disable job execution by setting MLFLOW_SERVER_ENABLE_JOB_EXECUTION=false until a patch is available
  • Review and minimize the job function allowlist to remove any privileged or dangerous functions
  • Implement network-level access controls to restrict access to MLflow server endpoints
  • Deploy reverse proxy or WAF rules to enforce authentication on /ajax-api/3.0/jobs/* routes

Patch Information

At the time of publication, users should monitor the MLflow GitHub repository and security advisories for an official patch. Refer to the Huntr Bounty Details for updates on remediation status.

Workarounds

  • Disable job execution functionality by setting the environment variable MLFLOW_SERVER_ENABLE_JOB_EXECUTION=false
  • Deploy MLflow behind a reverse proxy (nginx, Apache, or similar) that enforces authentication for all routes including job endpoints
  • Restrict network access to the MLflow server using firewall rules to allow only trusted IP addresses
  • Remove all entries from the job function allowlist to prevent any job execution
bash
# Disable job execution to mitigate the vulnerability
export MLFLOW_SERVER_ENABLE_JOB_EXECUTION=false

# Example nginx configuration to enforce authentication on job endpoints
# location /ajax-api/3.0/jobs/ {
#     auth_basic "Restricted Access";
#     auth_basic_user_file /etc/nginx/.htpasswd;
#     proxy_pass http://mlflow-server;
# }

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

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.24%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • Huntr Bounty Details
  • Related CVEs
  • CVE-2026-33866: MLflow Authorization 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