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-2026-40090

CVE-2026-40090: Zarf Path Traversal Vulnerability

CVE-2026-40090 is a path traversal flaw in Zarf that allows attackers to write malicious files to arbitrary filesystem locations. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 17, 2026

CVE-2026-40090 Overview

CVE-2026-40090 is a Path Traversal vulnerability affecting Zarf, an Airgap Native Packager Manager for Kubernetes. The vulnerability exists in the zarf package inspect sbom and zarf package inspect documentation subcommands, where output file paths are constructed by joining a user-controlled output directory with the package's Metadata.Name field. This field is read directly from an untrusted package's zarf.yaml manifest without proper sanitization, allowing attackers to write arbitrary files to the filesystem.

Critical Impact

Attackers can achieve arbitrary file write to sensitive locations such as SSH authorized_keys or cron directories, potentially leading to remote code execution or persistent backdoor access on systems running vulnerable Zarf versions.

Affected Products

  • Zarf versions 0.23.0 through 0.74.1

Discovery Timeline

  • 2026-04-15 - CVE CVE-2026-40090 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2026-40090

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal. The flaw stems from insufficient validation of the Metadata.Name field when constructing output paths during the SBOM and documentation inspection operations.

While Zarf validates Metadata.Name against a regex during package creation, this validation is bypassed when an attacker manually unarchives an existing package and modifies the zarf.yaml manifest. The modified package can then be redistributed to unsuspecting users who trust the package format.

When a victim runs inspection commands on the malicious package, the crafted Metadata.Name containing path traversal sequences is used directly in file path construction, allowing files to be written outside the intended output directory.

Root Cause

The root cause is the implicit trust placed in package metadata read from zarf.yaml during inspection operations. Although input validation exists at package creation time, the inspection workflow assumes packages have not been tampered with after creation. The output path construction uses simple string concatenation or path joining without sanitizing or validating the Metadata.Name field against directory traversal sequences.

Attack Vector

The attack requires user interaction—specifically, a victim must download and run inspection commands against a maliciously crafted Zarf package. An attacker prepares the exploit by:

  1. Creating or obtaining a legitimate Zarf package
  2. Unarchiving the package to access the zarf.yaml manifest
  3. Modifying Metadata.Name to include path traversal sequences such as ../../etc/cron.d/malicious or absolute paths like /home/user/.ssh/authorized_keys
  4. Including corresponding malicious files inside SBOMS.tar with matching names
  5. Re-archiving the package and distributing it to potential victims

When the victim inspects the package using zarf package inspect sbom or zarf package inspect documentation, the attacker-controlled content is written to arbitrary filesystem locations within the permissions of the user running the command.

Detection Methods for CVE-2026-40090

Indicators of Compromise

  • Unexpected file modifications in sensitive directories such as /etc/cron.d/, /home/*/.ssh/, or system configuration paths
  • Zarf packages with Metadata.Name fields containing ../ sequences or absolute paths starting with /
  • Unusual entries in SBOMS.tar archives within Zarf packages that reference paths outside expected directories

Detection Strategies

  • Implement file integrity monitoring on critical system directories to detect unauthorized file writes
  • Audit Zarf package contents before inspection, specifically examining zarf.yaml for suspicious Metadata.Name values
  • Monitor process execution logs for zarf package inspect commands followed by unexpected file system activity
  • Use endpoint detection solutions to identify path traversal patterns in command-line arguments and file operations

Monitoring Recommendations

  • Enable detailed logging for Zarf CLI operations to track package inspection activities
  • Configure alerts for file write operations in sensitive directories when preceded by Zarf process execution
  • Implement sandbox environments for inspecting untrusted Zarf packages before deployment

How to Mitigate CVE-2026-40090

Immediate Actions Required

  • Upgrade Zarf to version 0.74.2 or later immediately to address this vulnerability
  • Audit any Zarf packages received from untrusted sources before inspection
  • Review system logs for signs of exploitation, particularly unauthorized file writes in sensitive directories
  • Restrict Zarf CLI usage to dedicated service accounts with minimal filesystem permissions

Patch Information

The vulnerability has been fixed in Zarf version 0.74.2. The fix implements proper path sanitization to prevent traversal sequences from escaping the intended output directory. For detailed patch information, see the GitHub Pull Request 4793 and the GitHub Security Advisory GHSA-pj97-4p9w-gx3q.

Workarounds

  • Run Zarf inspection commands in isolated container environments or virtual machines to limit the impact of potential file writes
  • Manually verify zarf.yaml contents of packages before running inspection commands, checking for path traversal sequences in Metadata.Name
  • Use dedicated low-privilege user accounts for Zarf operations to minimize the impact of arbitrary file writes
  • Implement strict network policies to prevent download of packages from untrusted sources
bash
# Example: Run Zarf inspection in an isolated container
docker run --rm -v /path/to/package:/package:ro zarf:0.74.2 package inspect sbom /package/suspicious-package.tar.zst

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechZarf

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Pull Request 4793

  • GitHub Security Advisory GHSA-pj97-4p9w-gx3q
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE 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