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

CVE-2025-66626: Argo Workflows RCE Vulnerability

CVE-2025-66626 is a remote code execution flaw in Argoproj Argo Workflows caused by unsafe untar handling of symbolic links. Attackers can overwrite critical files to execute malicious code at pod start.

Published: April 29, 2026

CVE-2025-66626 Overview

CVE-2025-66626 is a symlink attack vulnerability in Argo Workflows, an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. The vulnerability exists in the unsafe untar code that handles symbolic links in archives, where the computation of a link's target and the subsequent validation check are flawed. This allows an attacker to craft malicious archives containing symbolic links that can bypass path validation, enabling arbitrary file overwrite within the container.

Critical Impact

An attacker can overwrite the critical file /var/run/argo/argoexec with a script of their choice, which would be executed at pod startup, potentially leading to container compromise and unauthorized access to Kubernetes cluster resources.

Affected Products

  • Argoproj Argo Workflows versions 3.6.13 and below
  • Argoproj Argo Workflows versions 3.7.0 through 3.7.4

Discovery Timeline

  • 2025-12-09 - CVE-2025-66626 published to NVD
  • 2025-12-19 - Last updated in NVD database

Technical Details for CVE-2025-66626

Vulnerability Analysis

This vulnerability represents a bypass of the previous security patch deployed against CVE-2025-62156. The flawed symlink validation in the archive extraction code fails to properly resolve and validate symbolic link targets before creating them on the filesystem.

The vulnerable code path in workflow/executor/executor.go attempts to validate symlink targets by joining the directory path with the link name and checking if the result stays within the destination directory. However, the validation is ineffective against crafted archives because it does not properly handle absolute symlink targets before performing the path join operation. When a symlink with an absolute path target is encountered, the join operation produces an unexpected result, allowing the symlink to point outside the intended extraction directory.

Root Cause

The root cause lies in the improper validation of symbolic link targets during tar archive extraction. The original code computed the link target by joining the directory of the target file with header.Linkname without first checking whether the link target is an absolute path. This oversight allows attackers to craft archives with symbolic links containing absolute paths that escape the intended destination directory bounds.

Attack Vector

An attacker can exploit this vulnerability by:

  1. Crafting a malicious tar archive containing a symbolic link with a carefully constructed target path
  2. Uploading or providing this archive to an Argo Workflow that processes artifacts
  3. When the archive is extracted, the symlink bypasses the path validation check
  4. The attacker overwrites /var/run/argo/argoexec with a malicious script
  5. The malicious script executes when the pod starts, granting the attacker code execution within the container
go
 			if !strings.HasPrefix(target, filepath.Clean(dest)+string(os.PathSeparator)) {
 				return fmt.Errorf("illegal file path: %s", header.Name)
 			}
 			switch header.Typeflag {
 			case tar.TypeSymlink:
-				linkTarget := filepath.Join(filepath.Dir(target), header.Linkname)
+				// Validate symlink target before creating it
+				linkTarget := header.Linkname
+				if !filepath.IsAbs(linkTarget) {
+					linkTarget = filepath.Join(filepath.Dir(target), header.Linkname)
+				}
 				if !strings.HasPrefix(filepath.Clean(linkTarget), filepath.Clean(dest)+string(os.PathSeparator)) {
 					return fmt.Errorf("illegal symlink target: %s -> %s", header.Name, header.Linkname)
 				}
+				// Create parent directory if needed
+				if err := os.MkdirAll(filepath.Dir(target), 0o755); err != nil {
+					return err
+				}
 				err := os.Symlink(header.Linkname, target)
 				if err != nil {
 					return err

Source: GitHub Commit 6b92af23f35aed4d4de8b04adcaf19d68f006de1

Detection Methods for CVE-2025-66626

Indicators of Compromise

  • Unexpected modifications to /var/run/argo/argoexec file in workflow pods
  • Symbolic links within extracted artifact directories pointing to paths outside the extraction destination
  • Unusual script execution patterns during pod initialization
  • Unexpected process spawning from argoexec processes

Detection Strategies

  • Monitor filesystem changes to critical Argo Workflows executables, particularly /var/run/argo/argoexec
  • Implement runtime security monitoring for container workloads to detect file integrity violations
  • Audit artifact handling workflows for archives containing suspicious symbolic links
  • Deploy container security solutions that can detect path traversal attempts during archive extraction

Monitoring Recommendations

  • Enable Kubernetes audit logging to track artifact upload and extraction activities
  • Configure alerts for unexpected file modifications in Argo executor containers
  • Implement SentinelOne Singularity for Kubernetes to monitor container runtime behavior
  • Review workflow definitions for untrusted artifact sources that could deliver malicious archives

How to Mitigate CVE-2025-66626

Immediate Actions Required

  • Upgrade Argo Workflows to version 3.6.14 or 3.7.5 immediately
  • Audit existing workflows for any artifacts sourced from untrusted locations
  • Review pod security policies to restrict write access to critical system paths
  • Implement network policies to limit artifact sources to trusted repositories

Patch Information

The fix has been released in Argo Workflows versions 3.6.14 and 3.7.5. The patch adds proper validation for absolute symbolic link targets before the path join operation. The security fix ensures that both relative and absolute symlink targets are validated against the destination directory bounds before the symlink is created on the filesystem.

For detailed patch information, refer to the GitHub Security Advisory GHSA-xrqc-7xgx-c9vh and the security patch commit.

Workarounds

  • Restrict artifact sources to only trusted, verified repositories until patches can be applied
  • Implement admission controllers to reject workflows that process artifacts from external sources
  • Use read-only root filesystems for Argo executor containers where possible
  • Deploy runtime security solutions to block unauthorized file modifications in container workloads
bash
# Upgrade Argo Workflows using Helm
helm repo update
helm upgrade argo-workflows argo/argo-workflows --version 3.7.5 -n argo

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechArgo Workflows

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

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

  • CWE-59
  • Technical References
  • GitHub Security Advisory

  • GitHub Code Reference
  • Vendor Resources
  • GitHub Commit

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40886: Argo Workflows DoS Vulnerability

  • CVE-2026-28229: Argo Workflows Information Disclosure Flaw

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

  • CVE-2026-23960: Argo Workflows Stored XSS 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