banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-2020-8570

CVE-2020-8570: Kubernetes Java Path Traversal Flaw

CVE-2020-8570 is a path traversal vulnerability in Kubernetes Java client libraries that allows attackers to overwrite files outside the intended directory. This article covers technical details, affected versions, and mitigations.

Published: March 4, 2026

CVE-2020-8570 Overview

CVE-2020-8570 is a path traversal vulnerability affecting Kubernetes Java client libraries in version 10.0.0 and versions prior to 9.0.1. The vulnerability allows writes to paths outside of the current directory when copying multiple files from a remote pod which sends a maliciously crafted archive. This can potentially overwrite any files on the system of the process executing the client code.

Critical Impact

A remote attacker can leverage a malicious Kubernetes pod to send specially crafted archive files that overwrite arbitrary files on the system running the vulnerable Java client, potentially leading to code execution or system compromise.

Affected Products

  • Kubernetes Java Client version 10.0.0
  • Kubernetes Java Client versions prior to 9.0.1

Discovery Timeline

  • 2021-01-21 - CVE CVE-2020-8570 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-8570

Vulnerability Analysis

This vulnerability falls under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory) and CWE-23 (Relative Path Traversal). The flaw exists in the file copy functionality of the Kubernetes Java client library, specifically when handling archive files received from remote pods.

When users utilize the client library to copy files from a Kubernetes pod, the library processes the incoming archive data. The vulnerability arises because the library fails to properly sanitize file paths within the archive before extracting them. An attacker who controls a malicious pod can craft an archive containing files with relative path components (such as ../) that, when extracted, write files outside the intended destination directory.

The attack requires network access and can be exploited without authentication or user interaction. The impact is significant as it affects both the integrity and availability of the system—attackers can overwrite critical system files or application configurations.

Root Cause

The root cause is insufficient validation of file paths extracted from archive data received from remote Kubernetes pods. The Kubernetes Java client library does not properly canonicalize or validate that extracted file paths remain within the intended destination directory, allowing path traversal sequences to escape the target directory structure.

Attack Vector

The attack is network-based and requires the attacker to control or compromise a Kubernetes pod that the victim's Java client connects to for file copy operations. The attacker creates a maliciously crafted archive containing entries with path traversal sequences (e.g., ../../etc/cron.d/malicious). When the victim's application uses the vulnerable Kubernetes Java client to copy files from this pod, the archive is processed and files are written to unintended locations on the host filesystem.

This attack pattern is commonly known as a "Zip Slip" vulnerability, where archive extraction routines fail to properly validate destination paths. The exploitation does not require authentication to the target system and can occur without any user interaction beyond the normal file copy operation.

Detection Methods for CVE-2020-8570

Indicators of Compromise

  • Unexpected file modifications in system directories outside of normal Kubernetes working directories
  • Archive extraction operations from Kubernetes pods writing to paths containing ../ sequences
  • Unusual file creation events in sensitive directories such as /etc, /usr/bin, or application configuration paths
  • Log entries showing file operations with path traversal patterns during pod file copy operations

Detection Strategies

  • Monitor file system activity for write operations that occur during Kubernetes client file copy operations to directories outside expected paths
  • Implement file integrity monitoring (FIM) on critical system directories to detect unauthorized modifications
  • Review application logs for errors or anomalies during archive extraction operations from Kubernetes pods
  • Deploy endpoint detection rules that alert on path traversal patterns in file operation arguments

Monitoring Recommendations

  • Enable detailed logging for applications using the Kubernetes Java client library
  • Implement real-time file system monitoring on systems running Kubernetes client applications
  • Configure alerts for any file writes to system-critical directories during Kubernetes operations
  • Audit all file copy operations from remote pods for suspicious archive contents

How to Mitigate CVE-2020-8570

Immediate Actions Required

  • Upgrade Kubernetes Java client library to version 9.0.1 or later (for the 9.x branch) or version 10.0.1 or later (for the 10.x branch)
  • Audit applications using the Kubernetes Java client to identify vulnerable deployments
  • Review file copy operations from remote pods and restrict access to trusted pods only
  • Implement file system access controls to limit the directories writable by applications using the Kubernetes client

Patch Information

The vulnerability has been addressed by the Kubernetes project. Users should upgrade to patched versions of the Java client library. Detailed information about the fix is available in the GitHub Issue Report and the Kubernetes Security Announcement.

Workarounds

  • Restrict pod file copy operations to only trusted and verified pods within the Kubernetes cluster
  • Implement network segmentation to limit which pods can communicate with systems running the Java client
  • Run applications using the Kubernetes Java client with minimal filesystem permissions using principle of least privilege
  • Deploy additional file system access controls that prevent writes to sensitive directories regardless of application permissions
bash
# Verify your Kubernetes Java client version
mvn dependency:tree | grep kubernetes-client

# Upgrade to patched version in Maven pom.xml
# For 9.x branch: upgrade to 9.0.1 or later
# For 10.x branch: upgrade to 10.0.1 or later

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechKubernetes Java

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability1.08%

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

  • CWE-22
  • Technical References
  • Kubernetes Security Announcement

  • Apache Druid Commit Discussion

  • Apache Druid Commit Update

  • Apache Druid Commit Change

  • Apache Druid Commit Log
  • Vendor Resources
  • GitHub Issue Report
  • Latest CVEs
  • CVE-2026-29612: OpenClaw DOS Vulnerability

  • CVE-2026-29606: OpenClaw Auth Bypass Vulnerability

  • CVE-2026-28486: OpenClaw Path Traversal Vulnerability

  • CVE-2026-28481: OpenClaw Information Disclosure Flaw
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
  • English
  • 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