Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-30973

CVE-2026-30973: Appium Path Traversal Vulnerability

CVE-2026-30973 is a path traversal flaw in Appium's @appium/support package that allows ZIP Slip attacks to write files outside intended directories. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-30973 Overview

A path traversal vulnerability (Zip Slip) exists in Appium's @appium/support package prior to version 7.0.6. The ZIP extraction implementation in extractAllTo() via ZipExtractor.extract() contains a non-functional path traversal security check. The vulnerability allows malicious ZIP entries containing ../ path components to write files outside the intended destination directory, potentially enabling arbitrary file writes on the affected system.

Critical Impact

Attackers can craft malicious ZIP archives to overwrite arbitrary files on systems running vulnerable versions of Appium, potentially leading to code execution or system compromise.

Affected Products

  • @appium/support versions prior to 7.0.6
  • Appium automation framework using JS-based extraction code paths
  • Applications utilizing the extractAllTo() or ZipExtractor.extract() functions

Discovery Timeline

  • 2026-03-10 - CVE CVE-2026-30973 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-30973

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal) and specifically manifests as a "Zip Slip" attack vector. The flaw exists in the ZIP extraction implementation within packages/support/lib/zip.js. At line 88, the security check designed to prevent path traversal attacks creates an Error object but critically fails to throw it. This programming oversight renders the entire path traversal protection mechanism ineffective.

The vulnerability affects all JavaScript-based extractions, which represent the default code path in Appium. This means the exposure is not limited to edge cases using specific options like fileNamesEncoding, but rather impacts the standard operation of the ZIP extraction functionality.

Root Cause

The root cause is a coding error where an Error object is instantiated but never thrown. The intended security check at line 88 of packages/support/lib/zip.js was designed to detect and reject ZIP entries containing path traversal sequences like ../. However, because the error is created but not thrown, execution continues normally, allowing malicious entries to be extracted to arbitrary locations outside the intended directory.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious ZIP archive containing entries with specially crafted filenames that include directory traversal sequences (e.g., ../../../../etc/cron.d/malicious). When this ZIP file is processed by a vulnerable Appium installation using the extractAllTo() or ZipExtractor.extract() functions, the malicious files are written to locations outside the intended extraction directory.

The attack requires network access and user interaction (such as processing an attacker-supplied ZIP file). This is particularly concerning in automation testing environments where test artifacts or plugins may be distributed as ZIP archives.

The vulnerability mechanism centers on the flawed security check in the ZIP extraction routine. When a ZIP entry is processed, the code attempts to validate the extraction path but fails to enforce the check due to the missing throw statement. Detailed technical information is available in the GitHub Security Advisory.

Detection Methods for CVE-2026-30973

Indicators of Compromise

  • Presence of unexpected files in system directories (e.g., /etc/cron.d/, /tmp/, web server roots)
  • Modified configuration files or scripts outside of normal application directories
  • ZIP extraction operations targeting sensitive system paths in application logs
  • Anomalous file creation events with paths containing resolved ../ sequences

Detection Strategies

  • Monitor file system events for file creation operations outside expected extraction directories during ZIP processing
  • Implement application-level logging to capture ZIP extraction paths and flag entries containing path traversal sequences
  • Scan dependencies for @appium/support versions prior to 7.0.6 using software composition analysis tools
  • Review application logs for ZIP extraction activities with suspicious destination paths

Monitoring Recommendations

  • Deploy file integrity monitoring on critical system directories that should not receive extracted content
  • Implement runtime application self-protection (RASP) to detect path traversal attempts during ZIP extraction
  • Set up alerts for npm package updates and security advisories related to Appium dependencies
  • Monitor process behavior for unexpected file writes outside designated application directories

How to Mitigate CVE-2026-30973

Immediate Actions Required

  • Upgrade @appium/support to version 7.0.6 or later immediately
  • Audit any systems that have processed untrusted ZIP files for signs of compromise
  • Review and restrict file system permissions on directories accessible to the Appium process
  • Implement network-level controls to limit exposure of systems running vulnerable versions

Patch Information

The vulnerability has been addressed in @appium/support version 7.0.6. The fix ensures that the Error object created during path traversal detection is properly thrown, preventing malicious ZIP entries from being extracted to unauthorized locations. Users should upgrade to this version or later to remediate the vulnerability.

For detailed release information, see the GitHub Release Note.

Workarounds

  • Validate all ZIP archives before extraction by scanning for entries containing ../ path components
  • Implement a pre-extraction check that rejects ZIP files with suspicious entry names
  • Run Appium processes with minimal file system permissions using principle of least privilege
  • Isolate Appium execution environments using containers or sandboxing to limit the impact of successful exploitation
bash
# Update @appium/support to patched version
npm update @appium/support@7.0.6

# Verify installed version
npm list @appium/support

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechAppium

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

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

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected 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