A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-3198

CVE-2026-3198: Lfprojects MLflow Auth Bypass Vulnerability

CVE-2026-3198 is an authorization bypass flaw in Lfprojects MLflow that allows authenticated users to access gateway secrets, endpoints, and model definitions. This article covers technical details, affected versions, and mitigation.

Published: June 4, 2026

CVE-2026-3198 Overview

CVE-2026-3198 is a missing authorization vulnerability in MLflow 3.9.0 when deployed with basic authentication (--app-name basic-auth). The BEFORE_REQUEST_HANDLERS dictionary in mlflow/server/auth/__init__.py omits entries for ListGatewaySecretInfos, ListGatewayEndpoints, and ListGatewayModelDefinitions. Any authenticated user can enumerate gateway secrets, endpoints, and model definitions regardless of assigned permissions. The flaw maps to [CWE-284: Improper Access Control] and exposes API keys, endpoint configurations, and proprietary model definitions to unauthorized accounts.

Critical Impact

Authenticated low-privilege users can list all gateway secrets, endpoints, and model definitions, disclosing API keys and proprietary AI/ML model metadata.

Affected Products

  • MLflow 3.9.0 deployed with the basic-auth app (--app-name basic-auth)
  • LF Projects MLflow tracking server Gateway API
  • Any MLflow Gateway deployment relying on basic-auth for access control

Discovery Timeline

  • 2026-06-02 - CVE-2026-3198 published to NVD
  • 2026-06-03 - Last updated in NVD database

Technical Details for CVE-2026-3198

Vulnerability Analysis

MLflow's basic-auth plugin enforces authorization by registering per-endpoint handlers inside the BEFORE_REQUEST_HANDLERS dictionary. Each handler validates the caller's permission before the request reaches the underlying view function. When an endpoint is not present in this dictionary, the basic-auth layer falls through and lets the request proceed without an authorization check.

Three Gateway API list operations are missing from this dictionary: ListGatewaySecretInfos, ListGatewayEndpoints, and ListGatewayModelDefinitions. As a result, any authenticated user, including accounts with the lowest permission tier, can call these endpoints and receive the full server-wide listing. The response contains secret metadata, gateway endpoint URLs and configurations, and registered model definitions used to route inference traffic.

The disclosed data accelerates downstream attacks. Leaked endpoint configurations expose backend LLM provider routes, and secret listings reveal which API credentials exist on the server, narrowing targets for credential abuse against connected AI providers.

Root Cause

The root cause is incomplete coverage of the authorization registry. Authorization is implemented as an allow-list of endpoint names mapped to permission checks, but the developers did not add the three list endpoints when the Gateway API was extended. Missing entries default to no enforcement instead of deny-by-default.

Attack Vector

An attacker with any valid MLflow basic-auth credential sends HTTP GET requests to the affected Gateway list endpoints over the network. No elevated privileges or user interaction are required. The server returns sensitive gateway data that should be restricted to administrators.

No verified public exploit code is available. See the Huntr Bounty Listing for technical details.

Detection Methods for CVE-2026-3198

Indicators of Compromise

  • Access log entries showing authenticated requests to Gateway list endpoints (ListGatewaySecretInfos, ListGatewayEndpoints, ListGatewayModelDefinitions) from non-administrative accounts.
  • Unexpected enumeration patterns where a single authenticated user sequentially calls multiple Gateway list endpoints in a short window.
  • Outbound traffic to LLM providers using API keys whose metadata was previously listed only on the MLflow Gateway.

Detection Strategies

  • Audit MLflow server access logs for HTTP requests targeting Gateway list routes and correlate the caller identity against the basic-auth permission table.
  • Compare the set of accounts calling list endpoints against the set of administrative accounts; flag any deviation.
  • Hash and inventory gateway secret identifiers; alert when secret metadata is returned to accounts without MANAGE permission.

Monitoring Recommendations

  • Forward MLflow application logs and reverse-proxy access logs to a centralized log platform for query and retention.
  • Set alerting thresholds on bursts of GET requests to /api/2.0/mlflow/gateway/* list endpoints from a single principal.
  • Monitor for new or unexpected API key usage at downstream LLM providers that may indicate post-disclosure abuse.

How to Mitigate CVE-2026-3198

Immediate Actions Required

  • Restrict network exposure of the MLflow 3.9.0 Gateway to trusted networks and authenticated administrators only.
  • Rotate all gateway secrets and provider API keys configured in the affected MLflow Gateway, since prior exposure cannot be ruled out.
  • Reduce the number of basic-auth users with access to the MLflow server and disable inactive accounts.
  • Review audit logs for prior calls to ListGatewaySecretInfos, ListGatewayEndpoints, and ListGatewayModelDefinitions and investigate any non-administrative callers.

Patch Information

At the time of publication, no fixed MLflow release is listed in the NVD entry for CVE-2026-3198. Track the Huntr Bounty Listing and the MLflow project release notes for an updated version that adds authorization handlers for the affected Gateway list endpoints.

Workarounds

  • Place the MLflow server behind a reverse proxy that blocks the three affected Gateway list endpoints for non-administrative users until a patched version is deployed.
  • Disable the Gateway API on the MLflow deployment if it is not required for production workflows.
  • Apply a local override of BEFORE_REQUEST_HANDLERS in mlflow/server/auth/__init__.py to register permission checks for ListGatewaySecretInfos, ListGatewayEndpoints, and ListGatewayModelDefinitions.
bash
# Example reverse-proxy block for the affected list endpoints (nginx)
location ~* /api/2\.0/mlflow/gateway/(secrets|endpoints|model-definitions)$ {
    if ($request_method = GET) {
        return 403;
    }
    proxy_pass http://mlflow_upstream;
}

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 Score6.5

  • EPSS Probability0.03%

  • 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
  • Huntr Bounty Listing
  • Related CVEs
  • CVE-2026-2651: MLflow Auth Bypass Vulnerability

  • CVE-2026-33866: MLflow Authorization Bypass Vulnerability

  • CVE-2026-0545: MLflow Auth Bypass Vulnerability

  • CVE-2026-2635: MLflow Authentication Bypass 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