A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Read More
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
    • AI 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-2734

CVE-2026-2734: MLflow Information Disclosure Vulnerability

CVE-2026-2734 is an information disclosure vulnerability in MLflow that allows authenticated users to access model version data without proper authorization. This article covers technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-2734 Overview

CVE-2026-2734 is a broken access control vulnerability [CWE-284] in MLflow versions up to and including 3.9.0. The SearchModelVersions REST API endpoint and the corresponding mlflowSearchModelVersions GraphQL query do not enforce per-model authorization when basic authentication is enabled. Any authenticated user can enumerate every model version across all registered models, bypassing the permission model. Exposed metadata includes model names, version descriptions, source URIs, and tags. In multi-tenant MLflow deployments, this allows low-privileged tenants to discover proprietary model assets owned by other tenants. The MLflow maintainers resolved the issue in version 3.10.0.

Critical Impact

Authenticated users with minimal privileges can enumerate sensitive metadata for every registered model version, exposing proprietary machine learning assets in multi-tenant environments.

Affected Products

  • MLflow versions up to and including 3.9.0
  • MLflow deployments with basic authentication enabled
  • MLflow REST API and GraphQL interfaces exposing model registry endpoints

Discovery Timeline

  • 2026-05-21 - CVE-2026-2734 published to NVD
  • 2026-05-21 - Last updated in NVD database

Technical Details for CVE-2026-2734

Vulnerability Analysis

The flaw resides in the MLflow authentication plugin at mlflow/server/auth/__init__.py. MLflow registers per-endpoint authorization hooks through two dispatch tables, BEFORE_REQUEST_VALIDATORS and AFTER_REQUEST_HANDLERS. These hooks filter requests and responses based on the caller's permission for a specific registered model. The SearchModelVersions REST handler was never added to either dispatch table, so requests bypass the permission check entirely. The GraphQL path has an equivalent gap: the mlflowSearchModelVersions field is missing from GraphQLAuthorizationMiddleware.PROTECTED_FIELDS. As a result, the middleware does not invoke authorization logic for that query, and the resolver returns model versions from all owners.

Root Cause

The root cause is a missing authorization entry rather than a flawed check. MLflow's basic auth plugin uses an allowlist-style registration model where each protected endpoint must be explicitly enrolled. SearchModelVersions was omitted from both the REST validator map and the GraphQL PROTECTED_FIELDS set, leaving the endpoint unguarded.

Attack Vector

An attacker needs only valid credentials for any account on the MLflow server. The attacker sends a GET request to the SearchModelVersions REST endpoint or issues the mlflowSearchModelVersions GraphQL query. The server returns model version records for every registered model, including those the user has no read permission on.

python
     GetModelVersionDownloadUri,
     GetRegisteredModel,
     RenameRegisteredModel,
+    SearchModelVersions,
     SearchRegisteredModels,
     SetModelVersionTag,
     SetRegisteredModelAlias,

Source: GitHub Commit 6989066. The patch adds SearchModelVersions to the imports used when registering authorization handlers, then wires it into the per-user permission filter so results are scoped to models the caller can read.

Detection Methods for CVE-2026-2734

Indicators of Compromise

  • High-volume requests to /api/2.0/mlflow/model-versions/search from a single authenticated user account.
  • GraphQL queries referencing mlflowSearchModelVersions from accounts that do not own registered models.
  • Access log entries showing successful SearchModelVersions responses to users whose other model-registry calls return 403.

Detection Strategies

  • Audit MLflow access logs for SearchModelVersions requests and cross-reference the caller against the registered model owners.
  • Compare the count of model versions returned to a user against the count of models they have explicit READ permission on.
  • Monitor GraphQL query logs for invocations of mlflowSearchModelVersions and inspect the response size relative to the user's authorized scope.

Monitoring Recommendations

  • Forward MLflow tracking server logs to a centralized SIEM and alert on enumeration patterns against the model registry.
  • Track the MLflow server version in software inventory and flag any host running 3.9.0 or earlier with basic auth enabled.
  • Baseline normal API usage per service account and alert on deviations involving model registry search endpoints.

How to Mitigate CVE-2026-2734

Immediate Actions Required

  • Upgrade MLflow to version 3.10.0 or later, which adds SearchModelVersions to the authorization handler set.
  • Inventory all MLflow instances exposed to multi-tenant users and prioritize patching those with basic authentication enabled.
  • Rotate or review credentials for accounts that may have used the vulnerable endpoint, and review audit logs for prior enumeration.

Patch Information

The fix is published in MLflow 3.10.0 via commit 6989066af33fdcb03588fd71a1a67f8fc5ef12c9. The patch registers SearchModelVersions in BEFORE_REQUEST_VALIDATORS and AFTER_REQUEST_HANDLERS, and adds the field to GraphQLAuthorizationMiddleware.PROTECTED_FIELDS. See the Huntr bounty report for the original disclosure.

Workarounds

  • Restrict network access to the MLflow tracking server so only trusted users and services can reach the REST and GraphQL endpoints.
  • Disable or front the SearchModelVersions endpoint with an authenticating reverse proxy that enforces per-user authorization until the upgrade is applied.
  • Avoid storing sensitive identifiers, credentials, or proprietary descriptions in model version source, description, or tags fields on vulnerable deployments.
bash
# Upgrade MLflow to the patched release
pip install --upgrade 'mlflow>=3.10.0'

# Verify the installed version
python -c "import mlflow; print(mlflow.__version__)"

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

  • SeverityMEDIUM

  • CVSS Score6.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Commit Update

  • Huntr Bounty Report
  • Related CVEs
  • CVE-2026-2614: MLflow Information Disclosure Vulnerability

  • CVE-2025-15381: MLflow Information Disclosure Vulnerability

  • CVE-2026-4137: MLflow Insecure Permissions RCE Vulnerability

  • CVE-2026-2611: MLflow Assistant RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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