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

CVE-2026-2393: MLflow SSRF Vulnerability in Webhooks

CVE-2026-2393 is a Server-Side Request Forgery flaw in MLflow versions prior to 3.9.0 that allows attackers to force HTTP requests to internal services. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-2393 Overview

CVE-2026-2393 is a Server-Side Request Forgery (SSRF) vulnerability in MLflow versions prior to 3.9.0. The _create_webhook() function in mlflow/server/handlers.py accepts a user-controlled url parameter without validation. The _send_webhook_request() function in mlflow/webhooks/delivery.py then issues HTTP POST requests to that attacker-supplied URL. An authenticated attacker can coerce the MLflow backend into reaching internal services, cloud metadata endpoints, or arbitrary external hosts. The flaw maps to [CWE-918: Server-Side Request Forgery].

Critical Impact

An authenticated attacker can pivot the MLflow server into internal networks and cloud metadata services, enabling credential theft and data exfiltration.

Affected Products

  • MLflow versions prior to 3.9.0
  • MLflow tracking server deployments exposing the webhook API
  • Self-hosted MLflow instances on AWS, Azure, and GCP infrastructure

Discovery Timeline

  • 2026-05-11 - CVE-2026-2393 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-2393

Vulnerability Analysis

MLflow exposes a webhook subsystem that lets clients register HTTP endpoints for event notifications. The _create_webhook() handler accepts a url field from the request body and persists it without validating the scheme, host, or destination. When an event fires, _send_webhook_request() reads the stored URL and dispatches an HTTP POST request from the MLflow backend process.

The handler performs no allowlist check, no scheme restriction, and no resolution of the target host against internal address ranges. Any authenticated user with permission to create webhooks can therefore direct the server to any reachable address. The request originates from the MLflow server's network context, bypassing perimeter controls that would block external clients.

Root Cause

The root cause is missing input validation on the webhook URL parameter. The code path trusts user-supplied input as a destination for outbound HTTP traffic. There is no URL parser that enforces https:// schemes, no denylist for loopback or link-local addresses, and no allowlist of approved webhook receivers. This combination produces a textbook SSRF primitive described in [CWE-918].

Attack Vector

An authenticated attacker submits a webhook creation request with a url pointing at an internal target. Common targets include http://169.254.169.254/latest/meta-data/ on AWS for instance metadata, http://metadata.google.internal/ on GCP, or http://localhost: ports hosting unauthenticated admin services. When MLflow triggers webhook delivery, the backend issues the POST request and may return response data or side effects observable to the attacker.

Exploitation requires network reachability to the MLflow API and a valid authenticated session. Refer to the Huntr Bug Bounty Report and the GitHub Commit History for full technical details of the vulnerable code path and the fix.

Detection Methods for CVE-2026-2393

Indicators of Compromise

  • Webhook records in the MLflow database containing URLs targeting 127.0.0.1, localhost, 169.254.169.254, metadata.google.internal, or RFC1918 ranges
  • Outbound HTTP requests from the MLflow server process to cloud metadata IPs
  • Unexpected POST calls originating from the MLflow backend to non-business endpoints

Detection Strategies

  • Audit the MLflow webhooks table and flag any URL whose host resolves to internal, loopback, or link-local addresses
  • Inspect MLflow application logs for _send_webhook_request() invocations targeting non-allowlisted destinations
  • Correlate authenticated MLflow API activity with subsequent outbound connections from the server host

Monitoring Recommendations

  • Egress filter MLflow server traffic and alert on connections to 169.254.169.254 and other metadata endpoints
  • Monitor for new webhook registrations from non-administrative accounts
  • Forward MLflow access logs and host network telemetry to a centralized analytics platform such as Singularity Data Lake for correlation across identity, endpoint, and cloud events

How to Mitigate CVE-2026-2393

Immediate Actions Required

  • Upgrade MLflow to version 3.9.0 or later on all tracking servers
  • Review existing webhook entries and remove any pointing to internal hosts or metadata services
  • Restrict webhook creation privileges to a minimal set of trusted users
  • On AWS, enforce IMDSv2 to blunt metadata theft via SSRF

Patch Information

The upstream fix is documented in the GitHub Commit History. The patch adds validation on the webhook URL handling in mlflow/server/handlers.py and mlflow/webhooks/delivery.py. Operators should upgrade to MLflow 3.9.0 or later, which contains the validated webhook delivery logic.

Workarounds

  • Block outbound traffic from the MLflow server to cloud metadata IP ranges and internal management subnets at the network layer
  • Place the MLflow server behind an egress proxy that enforces a destination allowlist for webhook deliveries
  • Disable the webhook feature entirely if it is not in use by removing webhook permissions from all user roles
bash
# Configuration example: restrict MLflow egress on Linux via iptables
# Block cloud metadata endpoints from the MLflow server
iptables -A OUTPUT -m owner --uid-owner mlflow -d 169.254.169.254 -j REJECT
iptables -A OUTPUT -m owner --uid-owner mlflow -d 169.254.170.2 -j REJECT

# Require IMDSv2 on AWS EC2 hosts running MLflow
aws ec2 modify-instance-metadata-options \
  --instance-id i-0123456789abcdef0 \
  --http-tokens required \
  --http-endpoint enabled

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechMlflow

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

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

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

  • CVE-2025-10279: Lfprojects Mlflow RCE Vulnerability

  • CVE-2026-33866: MLflow Authorization Bypass Vulnerability

  • CVE-2026-33865: MLflow Stored XSS 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