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-2020-27534

CVE-2020-27534: Docker Engine Path Traversal Vulnerability

CVE-2020-27534 is a path traversal vulnerability in Docker Engine affecting versions before 19.03.9. The flaw involves unsafe temporary file handling. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-27534 Overview

A path traversal vulnerability exists in Docker Engine before version 19.03.9 due to insecure temporary file handling in the Builder component. The vulnerability is located in util/binfmt_misc/check.go, where the os.OpenFile function is called with a potentially unsafe qemu-check temporary pathname. This insecure behavior stems from an ioutil.TempDir call that uses an empty first argument, which can lead to predictable temporary file locations.

Critical Impact

Attackers may exploit this vulnerability to access sensitive information through path traversal techniques, potentially compromising container build processes and exposing data on the host system.

Affected Products

  • Docker Engine versions prior to 19.03.9
  • Moby BuildKit (affected component)
  • Docker Desktop installations using vulnerable Docker Engine versions

Discovery Timeline

  • 2020-12-30 - CVE-2020-27534 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-27534

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal), enabling potential unauthorized access to files outside the intended directory structure. The flaw exists in the Docker Builder's QEMU binary format checking mechanism, which creates temporary files in an insecure manner.

When the ioutil.TempDir function is called with an empty string as its first argument, Go's standard library defaults to using the system's default temporary directory (typically /tmp on Unix-like systems). This behavior, combined with predictable naming patterns, creates a window for potential exploitation where an attacker could manipulate the temporary file path or pre-create files at expected locations.

Root Cause

The root cause lies in the improper use of Go's ioutil.TempDir function within util/binfmt_misc/check.go. When the first argument (the directory parameter) is passed as an empty string, the function uses os.TempDir() to determine the temporary directory location. This approach can be problematic in multi-tenant or shared environments where the temporary directory may be accessible to other processes or users, potentially allowing symlink attacks or file interception.

Attack Vector

The vulnerability is exploitable over the network with low attack complexity and requires no privileges or user interaction. An attacker could potentially:

  1. Predict or influence the temporary file path used during container builds
  2. Create malicious symlinks at the expected temporary file location before the Docker Builder creates its files
  3. Intercept or redirect file operations to access sensitive information or manipulate build processes

The vulnerability primarily impacts confidentiality, allowing potential information disclosure through path traversal techniques during Docker image builds that involve QEMU binary format checks.

Detection Methods for CVE-2020-27534

Indicators of Compromise

  • Unusual file access patterns in the system's temporary directory during Docker builds
  • Unexpected symlinks appearing in /tmp directory pointing to sensitive file paths
  • Docker build processes accessing files outside their expected working directories
  • Anomalous QEMU-related file operations during multi-architecture builds

Detection Strategies

  • Monitor Docker Engine logs for unusual file access errors during build operations
  • Implement file integrity monitoring on temporary directories used by Docker
  • Use audit logging to track open() and openat() system calls from Docker Builder processes
  • Deploy SentinelOne's container security monitoring to detect anomalous file system operations within build contexts

Monitoring Recommendations

  • Enable verbose logging for Docker Builder operations to capture temporary file handling events
  • Implement real-time monitoring of the /tmp directory for suspicious symlink creation
  • Configure alerts for Docker Engine processes accessing paths outside expected build contexts
  • Review Docker build logs periodically for path traversal indicators or unexpected file references

How to Mitigate CVE-2020-27534

Immediate Actions Required

  • Upgrade Docker Engine to version 19.03.9 or later immediately
  • Audit all Docker hosts to identify vulnerable versions using docker version command
  • Restrict access to temporary directories on Docker build hosts
  • Implement container isolation to limit the impact of potential exploitation

Patch Information

Docker has addressed this vulnerability in Docker Engine version 19.03.9. The fix modifies the temporary file handling in util/binfmt_misc/check.go to use secure temporary directory practices. The patches are tracked in the GitHub Moby Pull Request and GitHub BuildKit Pull Request. For detailed information about the release, refer to the Docker Release Notes.

Workarounds

  • If immediate patching is not possible, implement strict file system permissions on temporary directories
  • Use dedicated temporary directories with restricted access for Docker builds by configuring the TMPDIR environment variable
  • Deploy mandatory access control (SELinux/AppArmor) policies to restrict Docker Builder's file system access
  • Consider running Docker builds in isolated environments with limited host file system access
bash
# Configuration example
# Set a secure dedicated temporary directory for Docker operations
export TMPDIR=/var/lib/docker/tmp
mkdir -p $TMPDIR
chmod 700 $TMPDIR
chown root:root $TMPDIR

# Verify Docker Engine version to ensure patched version is installed
docker version --format '{{.Server.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/TechDocker

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.77%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • Docker Release Notes

  • GitHub BuildKit Pull Request

  • GitHub Moby Pull Request

  • Go Documentation - TempDir

  • Go Documentation - TempDir
  • Related CVEs
  • CVE-2022-25365: Docker Desktop Path Traversal Flaw

  • CVE-2022-23774: Docker Desktop Path Traversal Flaw

  • CVE-2026-5741: Docker-MCP-Server RCE Vulnerability

  • CVE-2025-15558: Docker CLI Privilege Escalation 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