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-2024-2083

CVE-2024-2083: Zenml Path Traversal Vulnerability

CVE-2024-2083 is a path traversal vulnerability in Zenml that allows attackers to access arbitrary files outside restricted directories. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 26, 2026

CVE-2024-2083 Overview

CVE-2024-2083 is a directory traversal vulnerability in the zenml-io/zenml repository, an open-source MLOps framework. The flaw resides in the /api/v1/steps endpoint, where the logs URI path parameter is not validated against directory traversal sequences. Authenticated attackers can manipulate the parameter to retrieve arbitrary files from the host filesystem, bypassing the artifact store isolation boundary. The vulnerability is tracked under CWE-29: Path Traversal: '..\filename'.

Critical Impact

Authenticated attackers can read arbitrary files from the ZenML server, including configuration files, credentials, and secrets stored outside the intended artifact store path.

Affected Products

  • ZenML (zenml-io/zenml) — versions prior to the fix in commit 00e934f
  • ZenML server deployments exposing the /api/v1/steps API
  • ZenML installations using local or shared filesystem artifact stores

Discovery Timeline

  • 2024-04-16 - CVE-2024-2083 published to NVD
  • 2025-05-12 - Last updated in NVD database

Technical Details for CVE-2024-2083

Vulnerability Analysis

The vulnerability exists in the step logs retrieval logic of the ZenML server. The /api/v1/steps endpoint accepts a logs URI parameter intended to point to log files within the configured artifact store. The server does not normalize the supplied path or verify that the resolved location stays within the artifact store boundary. An attacker authenticated to the ZenML API can submit traversal sequences such as ../../etc/passwd to read files outside the artifact store directory.

Because ZenML deployments typically run with broad filesystem access to support multiple pipelines, the exposed file scope often includes deployment secrets, cloud credential files, Kubernetes service account tokens, and pipeline configuration data.

Root Cause

The root cause is missing artifact store isolation. The pre-patch code path used zenml.io.fileio to resolve and read log URIs directly from the underlying filesystem, bypassing the artifact store abstraction that enforces path containment. Any URI accepted by the local filesystem driver was honored, including absolute paths and relative traversal sequences.

Attack Vector

An attacker with low-privileged API access sends a crafted request to the steps endpoint with a logs URI containing traversal segments. The server resolves the path against the host filesystem and returns the file contents in the API response. No user interaction is required, and the network attack vector makes the issue exploitable wherever the ZenML server is reachable.

python
# Patch excerpt — src/zenml/artifacts/utils.py
     if not uri.startswith(artifact_store.path):
         uri = os.path.join(artifact_store.path, uri)
 
-    if manual_save and fileio.exists(uri):
+    if manual_save and artifact_store.exists(uri):
         # This check is only necessary for manual saves as we already check
         # it when creating the directory for step output artifacts
         other_artifacts = client.list_artifact_versions(uri=uri, size=1)

Source: zenml-io/zenml commit 00e934f

The fix replaces direct fileio calls with artifact_store.exists(), routing path checks through the artifact store abstraction so resolved paths are validated against the configured store boundary.

python
# Patch excerpt — src/zenml/logging/step_logging.py
 from zenml.artifact_stores import BaseArtifactStore
-from zenml.io import fileio
+from zenml.client import Client
 from zenml.logger import get_logger

Source: zenml-io/zenml commit 00e934f

Detection Methods for CVE-2024-2083

Indicators of Compromise

  • HTTP requests to /api/v1/steps containing ../ sequences or URL-encoded variants such as %2e%2e%2f in the logs query parameter.
  • API responses returning file contents inconsistent with expected ZenML log formats (for example, content from /etc/passwd, .env, or cloud credential files).
  • Unusual logs URI values referencing absolute paths outside the configured artifact store root.

Detection Strategies

  • Inspect ZenML web server access logs for requests to /api/v1/steps that include traversal patterns or absolute paths in query strings.
  • Implement a web application firewall (WAF) rule that flags requests to ZenML endpoints containing .., %2e%2e, or ~/ sequences in URI parameters.
  • Correlate authenticated ZenML API sessions with anomalous file access patterns and large response payloads from log retrieval endpoints.

Monitoring Recommendations

  • Enable verbose API request logging on the ZenML server and forward events to a centralized log platform for retention and search.
  • Alert on repeated 200 OK responses from /api/v1/steps with response sizes that deviate from baseline log retrieval sizes.
  • Monitor filesystem access on the ZenML host for reads outside the artifact store directory by the ZenML service account.

How to Mitigate CVE-2024-2083

Immediate Actions Required

  • Upgrade ZenML to the version containing commit 00e934f33a243a554f5f65b80eefd5ea5117367b (Improve Artifact Store isolation #2490) or later.
  • Rotate any credentials, API tokens, and secrets that were accessible from the ZenML server host, as they may have been exfiltrated.
  • Restrict network exposure of the ZenML API to trusted networks and authenticated users only.

Patch Information

The vendor fix is delivered in commit 00e934f, which routes log and artifact path resolution through the BaseArtifactStore abstraction. This enforces containment within the configured artifact store path and removes the direct fileio access that enabled the traversal. Additional context is available in the Huntr bounty disclosure.

Workarounds

  • Run the ZenML server under a dedicated, unprivileged service account with filesystem permissions limited to the artifact store directory.
  • Deploy a reverse proxy or WAF rule that rejects requests to /api/v1/steps containing traversal patterns until patching is complete.
  • Disable or firewall-block external access to the ZenML API and restrict access to internal CI/CD networks while remediation is in progress.
bash
# Example nginx reverse-proxy rule to block traversal patterns on the steps endpoint
location /api/v1/steps {
    if ($args ~* "(\.\./|%2e%2e|%2f%2e%2e)") {
        return 403;
    }
    proxy_pass http://zenml-backend;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechZenml

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability0.67%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-29
  • Technical References
  • Huntr Bounty Listing
  • Vendor Resources
  • GitHub Commit Changes
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi Flaw
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