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

CVE-2025-15381: MLflow Information Disclosure Vulnerability

CVE-2025-15381 is an information disclosure vulnerability in MLflow that exposes trace data to unauthorized users when basic-auth is enabled. This article covers the technical details, affected versions, and mitigation strategies.

Published: April 3, 2026

CVE-2025-15381 Overview

A broken access control vulnerability exists in MLflow when the basic-auth app is enabled. The tracing and assessment endpoints lack proper permission validators, allowing any authenticated user—including those with NO_PERMISSIONS on an experiment—to read trace information and create assessments for traces they should not have access to. This vulnerability impacts both confidentiality through exposure of trace metadata and integrity by permitting unauthorized creation of assessments.

Critical Impact

Authenticated users can bypass permission controls to access sensitive trace data and create unauthorized assessments in MLflow deployments using basic-auth authentication.

Affected Products

  • MLflow (latest version) with basic-auth app enabled
  • Deployments using mlflow server --app-name=basic-auth

Discovery Timeline

  • 2026-03-27 - CVE CVE-2025-15381 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2025-15381

Vulnerability Analysis

This vulnerability stems from missing authorization checks on specific API endpoints within MLflow's basic authentication module. When MLflow is deployed with the basic-auth application enabled via mlflow server --app-name=basic-auth, the server enforces authentication but fails to properly validate user permissions for tracing and assessment operations.

The flaw allows any authenticated user to access trace information from experiments regardless of their assigned permission level. Even users explicitly configured with NO_PERMISSIONS on an experiment can read trace metadata and create assessments. This represents a significant breach of the principle of least privilege and violates the expected access control model.

The vulnerability is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor), as it enables information disclosure beyond intended authorization boundaries.

Root Cause

The root cause is the absence of permission validators on tracing and assessment API endpoints. While other MLflow endpoints properly check user permissions against experiment access controls, these specific endpoints were implemented without corresponding authorization checks, creating an inconsistent security posture within the application.

Attack Vector

An attacker with any valid authentication credentials to the MLflow server can exploit this vulnerability remotely over the network. The attack requires low privileges (any authenticated user) and no user interaction. The exploitation path involves:

  1. Authenticating to the MLflow server using any valid credentials
  2. Making direct API requests to tracing endpoints to enumerate and read trace data from experiments
  3. Creating unauthorized assessments for traces belonging to experiments the attacker should not have access to

The vulnerability can be exploited through standard HTTP requests to the affected API endpoints. Technical details regarding the specific endpoints and request formats can be found in the Huntr vulnerability bounty report.

Detection Methods for CVE-2025-15381

Indicators of Compromise

  • Unexpected API requests to tracing endpoints from users with limited or no experiment permissions
  • Trace data access logs showing reads by users not assigned to the associated experiments
  • New assessments created by users without proper experiment access rights
  • Anomalous patterns in authentication logs followed by tracing API activity

Detection Strategies

  • Implement audit logging for all tracing and assessment API endpoint access
  • Monitor for users accessing trace data outside their authorized experiment scope
  • Review MLflow access logs for permission violations on trace-related operations
  • Configure alerts for assessment creation by users with NO_PERMISSIONS roles

Monitoring Recommendations

  • Enable verbose logging on MLflow server instances using basic-auth
  • Correlate authentication events with subsequent API activity to identify unauthorized access patterns
  • Implement network-level monitoring for unusual request volumes to tracing endpoints
  • Regularly audit user permissions and compare against actual API access patterns

How to Mitigate CVE-2025-15381

Immediate Actions Required

  • Audit existing MLflow deployments using --app-name=basic-auth for potential unauthorized access
  • Review trace data and assessments for signs of unauthorized creation or access
  • Implement network-level access controls to restrict MLflow API access to trusted users and systems
  • Consider temporarily disabling tracing functionality if sensitive data is at risk until a patch is available

Patch Information

No official patch information is currently available in the CVE data. Monitor the official MLflow repository and security advisories for updates. Additional vulnerability details are available through the Huntr vulnerability bounty report.

Workarounds

  • Deploy MLflow behind a reverse proxy with additional access control layers
  • Implement network segmentation to limit which users can reach MLflow server endpoints
  • Use application-level firewall rules to restrict access to tracing and assessment API paths
  • Consider alternative authentication mechanisms if basic-auth cannot be properly secured
bash
# Example: Restrict access to MLflow tracing endpoints via nginx reverse proxy
location ~ ^/api/2.0/mlflow/(traces|assessments) {
    # Deny access or implement additional authorization
    deny all;
    # Or restrict to specific IP ranges
    # allow 10.0.0.0/8;
    # deny all;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechMlflow

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • Huntr Vulnerability Bounty
  • Related CVEs
  • CVE-2026-0596: MLflow Command Injection RCE Vulnerability

  • CVE-2025-15379: MLflow Command Injection RCE Vulnerability

  • CVE-2025-15036: MLflow Path Traversal Vulnerability

  • CVE-2025-15031: MLflow 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