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

CVE-2025-14279: MLFlow DNS Rebinding CSRF Vulnerability

CVE-2025-14279 is a DNS rebinding CSRF flaw in MLFlow that allows attackers to bypass Same-Origin Policy and execute unauthorized REST calls. This post covers its technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-14279 Overview

MLFlow versions up to and including 3.4.0 are vulnerable to DNS rebinding attacks due to a lack of Origin header validation in the MLFlow REST server. This vulnerability allows malicious websites to bypass Same-Origin Policy protections and execute unauthorized calls against REST endpoints. An attacker can query, update, and delete experiments via the affected endpoints, leading to potential data exfiltration, destruction, or manipulation.

Critical Impact

Attackers can exploit this DNS rebinding vulnerability to bypass browser security controls and perform unauthorized operations against MLFlow REST APIs, potentially compromising machine learning experiments, models, and sensitive training data.

Affected Products

  • MLFlow versions up to and including 3.4.0
  • MLFlow REST server deployments without Origin header validation
  • Organizations running MLFlow in environments accessible from web browsers

Discovery Timeline

  • 2026-01-12 - CVE CVE-2025-14279 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-14279

Vulnerability Analysis

This vulnerability (CWE-346: Origin Validation Error) exists because the MLFlow REST server fails to properly validate the Origin header in incoming HTTP requests. DNS rebinding is a technique that allows an attacker to circumvent the browser's Same-Origin Policy by manipulating DNS responses to redirect a victim's browser to make requests to internal or localhost services.

When a user visits a malicious website, the attacker can leverage DNS rebinding to trick the browser into sending requests to the MLFlow server running on the victim's machine or internal network. Since the server does not validate the Origin header, it processes these requests as legitimate, allowing the attacker to interact with the REST API endpoints.

The vulnerability affects the core REST API functionality of MLFlow, enabling attackers to perform CRUD operations on experiments, runs, and potentially models. This poses significant risks to machine learning operations including data integrity, confidentiality of training data, and overall experiment management.

Root Cause

The root cause is the absence of Origin header validation in the MLFlow REST server's request handling logic. Without proper validation, the server cannot distinguish between legitimate requests from authorized origins and malicious requests originating from attacker-controlled domains via DNS rebinding. The fix implemented in version 3.5.0 introduces proper Origin header checks to prevent unauthorized cross-origin requests.

Attack Vector

The attack requires user interaction where a victim must visit a malicious website while having access to an MLFlow server. The attacker controls a domain with a short TTL (Time-To-Live) DNS record. When the victim visits the malicious site, the attacker's JavaScript initially resolves to the attacker's server but then rebinds to the victim's local MLFlow server address. The browser, believing it's still communicating with the original domain, sends requests to the MLFlow server without triggering Same-Origin Policy violations.

The vulnerability is exploitable over the network with low attack complexity. While it does not directly impact availability, it can lead to high confidentiality and integrity impacts through unauthorized data access and modification of ML experiments.

Detection Methods for CVE-2025-14279

Indicators of Compromise

  • Unusual cross-origin requests to MLFlow REST API endpoints from unexpected domains
  • MLFlow API calls originating from browser contexts when typical usage is programmatic
  • Unexpected modifications to experiments, runs, or models without corresponding user activity
  • Network traffic showing DNS queries with unusually short TTL values targeting internal services

Detection Strategies

  • Monitor MLFlow access logs for requests with suspicious or missing Origin/Referer headers
  • Implement network-level monitoring to detect DNS rebinding patterns (rapid DNS TTL changes)
  • Deploy web application firewalls configured to validate Origin headers on MLFlow endpoints
  • Set up anomaly detection for MLFlow API usage patterns that deviate from baseline behavior

Monitoring Recommendations

  • Enable detailed request logging on MLFlow servers to capture Origin and Host headers
  • Configure SIEM rules to alert on cross-origin requests to MLFlow REST endpoints
  • Implement real-time monitoring of experiment and model modifications with user attribution
  • Deploy endpoint detection solutions to identify malicious JavaScript executing DNS rebinding attacks

How to Mitigate CVE-2025-14279

Immediate Actions Required

  • Upgrade MLFlow to version 3.5.0 or later which includes the security fix
  • Restrict network access to MLFlow servers using firewall rules to trusted IP ranges only
  • Implement reverse proxy configurations with strict Origin header validation
  • Audit recent MLFlow activity for signs of unauthorized access or data manipulation

Patch Information

The vulnerability is resolved in MLFlow version 3.5.0. The fix introduces proper Origin header validation in the REST server to prevent DNS rebinding attacks. The security patch can be reviewed in the GitHub commit. Additional details about the vulnerability disclosure are available through the Huntr bug bounty listing.

Workarounds

  • Deploy MLFlow behind a reverse proxy that enforces strict Origin header validation
  • Configure host-based firewalls to restrict MLFlow server access to specific trusted hosts
  • Disable browser-based access to MLFlow and require API-key authentication for all requests
  • Implement network segmentation to isolate MLFlow servers from user browsing environments
  • Use VPN or private networks to access MLFlow deployments, reducing exposure to DNS rebinding

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechMlflow

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.02%

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

  • Huntr Bug Bounty Listing
  • Related CVEs
  • CVE-2026-33866: MLflow Authorization Bypass Vulnerability

  • CVE-2026-33865: MLflow Stored XSS Vulnerability

  • CVE-2026-0545: MLflow Auth Bypass 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