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-2025-62156

CVE-2025-62156: Argo Workflows Path Traversal Vulnerability

CVE-2025-62156 is a Zip Slip path traversal flaw in Argoproj Argo Workflows that enables arbitrary file creation in system directories. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 26, 2026

CVE-2025-62156 Overview

CVE-2025-62156 is a Zip Slip path traversal vulnerability [CWE-22] in Argo Workflows, the open source container-native workflow engine for Kubernetes. The flaw affects versions prior to 3.6.12 and versions 3.7.0 through 3.7.2. During artifact extraction, the unpack/untar logic in workflow/executor/executor.go calls filepath.Join(dest, filepath.Clean(header.Name)) without verifying that header.Name remains within the intended extraction directory. A malicious archive entry containing a traversal sequence or absolute path can escape the /work/tmp extraction path. Attackers can write files into system directories such as /etc inside the container, enabling privilege escalation or persistence.

Critical Impact

Arbitrary file write into container system paths like /etc/passwd, /etc/hosts, and /etc/crontab can lead to in-container privilege escalation and workflow-executor persistence.

Affected Products

  • Argoproj Argo Workflows versions prior to 3.6.12
  • Argoproj Argo Workflows versions 3.7.0 through 3.7.2
  • Container deployments using the affected workflow executor on Kubernetes

Discovery Timeline

  • 2025-10-14 - CVE-2025-62156 published to the National Vulnerability Database
  • 2026-02-06 - Last updated in NVD database

Technical Details for CVE-2025-62156

Vulnerability Analysis

The Argo Workflows executor extracts artifacts retrieved from object stores and other sources before workflow steps run. The extraction routine in workflow/executor/executor.go builds destination paths using filepath.Join(dest, filepath.Clean(header.Name)). filepath.Clean collapses traversal sequences, but it does not constrain the result to the dest directory. When header.Name contains an absolute path, filepath.Join discards the dest prefix entirely. When it contains sufficient ../ segments, the cleaned path resolves above the extraction root. The executor then writes archive content to the resulting filesystem location.

Inside the workflow pod, the executor typically runs with permissions to write across the container filesystem. A crafted artifact archive can overwrite /etc/passwd to add a privileged account, modify /etc/hosts to redirect traffic, or drop a /etc/crontab entry to gain code execution outside the workflow context. The behavior matches the Zip Slip class of archive extraction flaws.

Root Cause

The root cause is missing validation of archive entry names against the canonicalized extraction directory. The code trusts filepath.Clean to neutralize traversal, but cleaning does not enforce containment. Safe extraction requires resolving the joined path and confirming it has the destination directory as a prefix before writing.

Attack Vector

Exploitation requires the ability to supply or substitute an artifact consumed by an Argo Workflow. An attacker with permission to submit workflows, modify artifact sources, or compromise an upstream artifact repository can deliver a malicious archive. Authentication is required (PR:L), and the attack proceeds over the network without user interaction.

The vulnerability is a classic Zip Slip pattern. Archive entries with names like ../../../../etc/crontab or absolute paths such as /etc/passwd are written outside /work/tmp when the executor unpacks the artifact. See the GitHub Security Advisory GHSA-p84v-gxvw-73pf and the vulnerable code location in executor.go for technical detail.

Detection Methods for CVE-2025-62156

Indicators of Compromise

  • Unexpected modifications to /etc/passwd, /etc/shadow, /etc/hosts, /etc/crontab, or files under /etc/cron.* within workflow executor containers.
  • Files written outside the /work/tmp artifact extraction directory during workflow execution.
  • Archive artifacts containing entries with ../ sequences or absolute paths in header.Name fields.
  • Workflow pods spawning unexpected child processes shortly after artifact retrieval.

Detection Strategies

  • Inspect archive contents before submission and reject entries whose names contain .. segments or leading /.
  • Audit Argo Workflows executor logs for artifact extraction targeting paths outside the expected working directory.
  • Compare deployed Argo Workflows versions against 3.6.12 and 3.7.3 baselines across all clusters.

Monitoring Recommendations

  • Enable Kubernetes audit logging for workflow pod activity and alert on writes to /etc paths inside executor containers.
  • Monitor file integrity for system configuration files within container images used by workflow executors.
  • Track artifact source repositories for unauthorized changes that could introduce malicious archives.

How to Mitigate CVE-2025-62156

Immediate Actions Required

  • Upgrade Argo Workflows to 3.6.12 or 3.7.3 across all clusters.
  • Restrict workflow submission permissions to trusted users and service accounts while patching is in progress.
  • Audit artifact repositories referenced by workflows for unexpected or attacker-controlled archives.
  • Run workflow executor containers with a read-only root filesystem where possible to limit write impact.

Patch Information

The maintainers fixed the issue in Argo Workflows 3.6.12 and 3.7.3. The remediation validates that the joined extraction path stays within the destination directory before writing. Review the upstream fixes in commit 5659ad9b and commit 9f6bc5d2.

Workarounds

  • Disable or restrict workflows that consume archives from untrusted sources until the upgrade is complete.
  • Apply Pod Security Standards or admission policies that mount a read-only root filesystem for executor containers.
  • Use OPA/Gatekeeper or Kyverno policies to block workflows referencing artifact sources outside an allow-list.
  • Pre-validate archives in a hardened sandbox and reject any entry whose normalized path escapes the extraction root.
bash
# Verify and upgrade Argo Workflows to a patched release
kubectl -n argo get deploy workflow-controller \
  -o jsonpath='{.spec.template.spec.containers[0].image}{"\n"}'

helm repo update
helm upgrade argo-workflows argo/argo-workflows \
  --namespace argo \
  --version 3.7.3

kubectl -n argo rollout status deploy/workflow-controller

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechArgo Workflows

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.30%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Argo Workflows Code Location
  • Vendor Resources
  • GitHub Argo Workflows Commit Log

  • GitHub Argo Workflows Commit Log

  • GitHub Security Advisory GHSA-p84v-gxvw-73pf
  • Related CVEs
  • CVE-2026-42295: Argo Workflows Credential Disclosure Flaw

  • CVE-2026-42296: Argo Workflows Auth Bypass Vulnerability

  • CVE-2026-42297: Argo Workflows Auth Bypass Vulnerability

  • CVE-2026-42183: Argoproj Argo Workflows DOS 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