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

CVE-2026-20613: Apple Container Path Traversal Flaw

CVE-2026-20613 is a path traversal vulnerability in Apple Container that allows malicious archives to extract files to any user-writable location. This article covers the technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2026-20613 Overview

CVE-2026-20613 is a Path Traversal vulnerability affecting Apple's Container and Containerization software packages for Swift. The ArchiveReader.extractContents() function used by cctl image load and container image load commands performs no pathname validation before extracting an archive member. This allows a maliciously crafted archive to extract files into arbitrary user-writable locations on the system using relative pathnames (e.g., ../../../).

Critical Impact

Attackers can craft malicious container images that, when loaded by users, extract files to arbitrary locations on the host system, potentially leading to code execution, configuration tampering, or credential theft.

Affected Products

  • Apple Container (versions prior to 0.8.0)
  • Apple Containerization (versions prior to 0.21.0)
  • Swift-based container management implementations using the vulnerable ArchiveReader component

Discovery Timeline

  • 2026-01-23 - CVE-2026-20613 published to NVD
  • 2026-01-27 - Last updated in NVD database

Technical Details for CVE-2026-20613

Vulnerability Analysis

This vulnerability falls under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal or Directory Traversal. The flaw exists in the archive extraction logic where the ArchiveReader.extractContents() function fails to sanitize or validate file paths contained within archive members before writing them to disk.

When a user loads a container image using the cctl image load or container image load commands, the application processes the image archive and extracts its contents. Without proper path validation, an attacker can include archive entries with relative path components (such as ../) that escape the intended extraction directory.

The local attack vector requires user interaction—a victim must load the malicious archive—but requires no authentication or special privileges to exploit. Successful exploitation can result in high impact to confidentiality, integrity, and availability of the system.

Root Cause

The root cause is the absence of pathname sanitization in the ArchiveReader.extractContents() function. The function directly uses filenames from archive entries without checking for path traversal sequences or validating that the resolved destination path remains within the intended extraction directory. This is a classic "Zip Slip" style vulnerability applied to container image archives.

Attack Vector

An attacker would craft a malicious container image archive containing entries with path traversal sequences in their filenames. When an unsuspecting user loads this image using the vulnerable container tools, files are written outside the expected directory structure.

The vulnerability can be exploited to:

  • Overwrite configuration files (e.g., shell profiles, cron jobs)
  • Plant malicious executables in common binary paths
  • Modify or replace scripts that may be executed by other processes
  • Exfiltrate or corrupt existing user data

The attack scenario involves distributing the malicious container image through container registries, direct file sharing, or other software distribution channels where container images are exchanged.

Detection Methods for CVE-2026-20613

Indicators of Compromise

  • Unexpected file modifications in user-writable directories outside container storage paths
  • Files with timestamps corresponding to container image load operations appearing in unexpected locations
  • Presence of files with names or content associated with known malicious container images
  • Unusual archive extraction activity writing to paths containing ../ sequences

Detection Strategies

  • Monitor file system events for writes outside expected container image storage directories during cctl image load or container image load operations
  • Implement file integrity monitoring on critical user-writable locations such as shell profiles, cron directories, and local bin paths
  • Audit container image load operations and correlate with file system changes across the system
  • Scan incoming container images for archive entries containing path traversal patterns before loading

Monitoring Recommendations

  • Enable detailed logging for container management tool operations including cctl and container commands
  • Configure SentinelOne to monitor for suspicious file writes that correlate with container operations
  • Implement alerts for modifications to sensitive user configuration files following container image loads
  • Review container image sources and implement allowlisting for trusted image registries

How to Mitigate CVE-2026-20613

Immediate Actions Required

  • Upgrade Apple Container to version 0.8.0 or later immediately
  • Upgrade Apple Containerization to version 0.21.0 or later immediately
  • Audit recently loaded container images and verify the integrity of user-writable directories
  • Temporarily restrict the use of cctl image load and container image load commands until patching is complete

Patch Information

Apple has addressed this vulnerability in Container version 0.8.0 and Containerization version 0.21.0. The fix implements proper pathname validation to ensure extracted files cannot escape the intended extraction directory. Organizations should prioritize upgrading to these patched versions.

For detailed patch information, refer to the GitHub Security Advisory GHSA-cq3j-qj2h-6rv3.

Workarounds

  • Avoid loading container images from untrusted or unverified sources until the patch is applied
  • Implement additional file system restrictions using sandboxing or mandatory access controls to limit where container tools can write files
  • Pre-scan container image archives for path traversal patterns using third-party archive inspection tools before loading
  • Use read-only file system mounts for critical directories during container image operations where feasible
bash
# Verify installed versions and upgrade
# Check current container version
cctl version

# Update to patched versions using Swift Package Manager
swift package update container
swift package update containerization

# Verify the upgrade was successful
cctl version

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechApple Container

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Vendor Resources
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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