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-2023-1177

CVE-2023-1177: Mlflow Path Traversal Vulnerability

CVE-2023-1177 is a path traversal vulnerability in Mlflow that allows attackers to access files outside intended directories using '\..\filename' patterns. This article covers technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-1177 Overview

CVE-2023-1177 is a critical path traversal vulnerability affecting MLflow, the popular open-source platform for managing the machine learning lifecycle. The vulnerability exists in versions prior to 2.2.1 and allows attackers to traverse directory structures using specially crafted path sequences containing \..\filename patterns. This enables unauthorized access to arbitrary files on the server hosting the MLflow application, potentially exposing sensitive model data, credentials, and system files.

Critical Impact

This path traversal vulnerability allows unauthenticated remote attackers to read and potentially write arbitrary files on MLflow servers, compromising machine learning pipelines and sensitive training data.

Affected Products

  • MLflow versions prior to 2.2.1
  • LF Projects MLflow (all platforms)
  • MLflow deployments accessible over network

Discovery Timeline

  • 2023-03-24 - CVE-2023-1177 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-1177

Vulnerability Analysis

This vulnerability stems from improper input validation when processing file path parameters in MLflow's API endpoints. The application fails to adequately sanitize user-supplied input containing directory traversal sequences, specifically the Windows-style backslash variant (\..\). When an attacker supplies a malicious path containing these sequences, the application resolves the path relative to its working directory, allowing traversal outside the intended directory boundaries.

The vulnerability is classified under CWE-29 (Path Traversal: '..\filename') and CWE-22 (Improper Limitation of a Pathname to a Restricted Directory). The flaw is particularly severe because MLflow servers often store sensitive machine learning artifacts, model weights, and configuration files that could be exfiltrated through this attack vector.

Root Cause

The root cause lies in insufficient path canonicalization and validation within MLflow's file handling routines. When the application receives file path parameters from API requests, it does not properly normalize paths or validate that the resolved path remains within the expected directory structure. The specific issue involves the handling of backslash directory separators combined with parent directory references (..), which bypass security checks that may only filter forward-slash variants.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker sends crafted HTTP requests to MLflow API endpoints, embedding path traversal sequences in parameters that accept file paths. The server processes these requests and returns contents of files outside the intended directories, or allows writing to unauthorized locations.

The vulnerability is exploited through network-accessible MLflow instances. Attackers craft malicious requests containing path traversal patterns like \..\..\..\etc\passwd or \..\..\..\..\windows\system32\config\sam depending on the target operating system. The server's failure to sanitize these inputs allows the attacker to escape the application's root directory and access sensitive system or application files.

For technical exploitation details, refer to the Huntr Vulnerability Bounty report.

Detection Methods for CVE-2023-1177

Indicators of Compromise

  • HTTP requests to MLflow endpoints containing \..\ or encoded variants (%5C%2E%2E%5C)
  • Unusual file access patterns in MLflow server logs showing paths outside expected directories
  • API requests attempting to access sensitive system files such as /etc/passwd, /etc/shadow, or Windows SAM database
  • Abnormal outbound data transfers from MLflow server containing sensitive file contents

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns including backslash variants
  • Monitor MLflow API access logs for requests containing suspicious path sequences or encoded characters
  • Deploy file integrity monitoring on MLflow artifact directories to detect unauthorized access attempts
  • Use SentinelOne Singularity Platform to detect exploitation attempts through behavioral analysis of file system access patterns

Monitoring Recommendations

  • Enable verbose logging on MLflow servers to capture full request parameters
  • Configure alerts for any file access outside designated MLflow artifact directories
  • Monitor network traffic for unusual file exfiltration patterns from MLflow servers
  • Implement endpoint detection and response (EDR) solutions to identify post-exploitation activities

How to Mitigate CVE-2023-1177

Immediate Actions Required

  • Upgrade MLflow to version 2.2.1 or later immediately
  • Restrict network access to MLflow servers using firewall rules and network segmentation
  • Implement authentication and authorization controls if not already in place
  • Audit MLflow server logs for signs of prior exploitation attempts

Patch Information

The vulnerability has been addressed in MLflow version 2.2.1. The fix implements proper path validation and canonicalization to prevent directory traversal attacks. Organizations should update their MLflow installations to the patched version as soon as possible.

The patch commit is available at the GitHub Pull Request Commit. Additional details about the vulnerability and its remediation can be found in the Huntr Vulnerability Bounty report.

Workarounds

  • Deploy a reverse proxy or WAF in front of MLflow to filter malicious path traversal patterns
  • Restrict MLflow server network exposure to trusted networks only until patching is complete
  • Run MLflow with minimal file system permissions using principle of least privilege
  • Implement container isolation for MLflow deployments to limit blast radius of potential exploitation
bash
# Configuration example - Restrict MLflow network access using firewall rules
# Allow access only from trusted networks
iptables -A INPUT -p tcp --dport 5000 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 5000 -j DROP

# Run MLflow with restricted user permissions
useradd -r -s /bin/false mlflow-service
chown -R mlflow-service:mlflow-service /opt/mlflow
sudo -u mlflow-service mlflow server --host 127.0.0.1 --port 5000

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechMlflow

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability93.33%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-29

  • CWE-22
  • Vendor Resources
  • GitHub Pull Request Commit

  • Huntr Vulnerability Bounty
  • Related CVEs
  • CVE-2025-15036: MLflow Path Traversal Vulnerability

  • CVE-2025-15031: MLflow Path Traversal Vulnerability

  • CVE-2026-0596: MLflow Command Injection RCE Vulnerability

  • CVE-2025-15381: MLflow Information Disclosure 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