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-33414

CVE-2026-33414: Podman HyperV Backend RCE Vulnerability

CVE-2026-33414 is a command injection RCE flaw in Podman's HyperV backend that allows attackers to execute arbitrary PowerShell commands with SYSTEM privileges on Windows. This article covers technical details, affected versions, impact, and mitigation steps.

Published: April 17, 2026

CVE-2026-33414 Overview

CVE-2026-33414 is a command injection vulnerability affecting Podman, a popular tool for managing OCI containers and pods. The vulnerability exists in the HyperV machine backend within pkg/machine/hyperv/stubber.go, where the VM image path is inserted into a PowerShell double-quoted string without proper sanitization. This allows $() subexpression injection, enabling attackers to execute arbitrary PowerShell commands with the privileges of the Podman process.

Because PowerShell evaluates subexpressions inside double-quoted strings before executing the outer command, an attacker who can control the VM image path through a crafted machine name or image directory can achieve arbitrary code execution. On typical Windows installations, this results in SYSTEM-level code execution. This vulnerability exclusively affects Windows systems as the vulnerable code is specific to the HyperV backend.

Critical Impact

Attackers with local access and high privileges can achieve SYSTEM-level code execution on Windows systems through PowerShell command injection via crafted VM image paths.

Affected Products

  • Podman versions 4.8.0 through 5.8.1
  • Windows systems using the HyperV machine backend
  • Podman HyperV backend component (pkg/machine/hyperv/stubber.go)

Discovery Timeline

  • 2026-04-14 - CVE CVE-2026-33414 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-33414

Vulnerability Analysis

This command injection vulnerability (CWE-78) exists due to improper input validation when constructing PowerShell commands in Podman's HyperV backend. The vulnerable code in pkg/machine/hyperv/stubber.go directly interpolates user-controllable file paths into a PowerShell command string using double quotes, without sanitizing for PowerShell's subexpression syntax.

PowerShell's string interpolation feature evaluates expressions within $() constructs when they appear inside double-quoted strings. This behavior allows an attacker who controls the VM image path to inject arbitrary PowerShell commands that execute before the intended Resize-VHD command runs. The attack requires local access and elevated privileges, but successful exploitation grants code execution with the privileges of the Podman process—typically SYSTEM on Windows.

Root Cause

The root cause is the direct insertion of unsanitized user input into a PowerShell double-quoted string context. The original code used fmt.Sprintf to construct a command string with the image path, failing to account for PowerShell's subexpression evaluation in double-quoted strings. This classic command injection pattern allows metacharacter injection when attackers can influence the file path through machine naming or image directory manipulation.

Attack Vector

The attack vector is local, requiring an attacker to have access to the target Windows system with sufficient privileges to create or manipulate Podman machine configurations. By crafting a malicious machine name or image directory path containing PowerShell subexpression syntax like $(malicious-command), the attacker can inject arbitrary PowerShell commands. When Podman executes HyperV operations such as disk resizing, the injected commands execute with the process privileges.

The following patch demonstrates how the vulnerability was addressed by using environment variables instead of direct string interpolation:

go
 }
 
 func resizeDisk(newSize strongunits.GiB, imagePath *define.VMFile) error {
-	resize := exec.Command("powershell", []string{"-command", fmt.Sprintf("Resize-VHD \"%s\" %d", imagePath.GetPath(), newSize.ToBytes())}...)
+	resize := exec.Command("powershell", "-command", fmt.Sprintf("Resize-VHD \"$ENV:IMAGE_PATH\" %d", newSize.ToBytes()))
 	logrus.Debug(resize.Args)
 	resize.Stdout = os.Stdout
 	resize.Stderr = os.Stderr
+	resize.Env = append(os.Environ(), "IMAGE_PATH="+imagePath.GetPath())
 	if err := resize.Run(); err != nil {
 		return fmt.Errorf("resizing image: %q", err)
 	}

Source: GitHub Podman Commit Update

Detection Methods for CVE-2026-33414

Indicators of Compromise

  • Unusual PowerShell process spawning from Podman executable with suspicious command-line arguments
  • Machine names or image paths containing $() subexpression patterns
  • Unexpected child processes under Podman with elevated privileges
  • PowerShell execution logs showing commands inconsistent with normal Podman operations

Detection Strategies

  • Monitor PowerShell command-line arguments for subexpression injection patterns containing $( constructs
  • Implement file integrity monitoring on Podman machine configuration directories
  • Enable PowerShell Script Block Logging and Module Logging to capture executed commands
  • Use endpoint detection rules to alert on Podman spawning PowerShell with unusual parameters

Monitoring Recommendations

  • Enable Windows Event Log forwarding for PowerShell events (Event IDs 4103, 4104)
  • Configure SentinelOne policies to monitor for command injection patterns in PowerShell arguments
  • Audit Podman machine configurations for suspicious naming conventions
  • Implement file path validation logging for HyperV backend operations

How to Mitigate CVE-2026-33414

Immediate Actions Required

  • Upgrade Podman to version 5.8.2 or later immediately on all Windows systems using HyperV backend
  • Audit existing Podman machine names and image directories for suspicious path patterns
  • Restrict local access to systems running Podman with HyperV backend
  • Review PowerShell execution policies and enable constrained language mode where feasible

Patch Information

The vulnerability has been addressed in Podman version 5.8.2. The fix replaces direct string interpolation with environment variable usage, preventing PowerShell subexpression evaluation. The patched code passes the image path via the IMAGE_PATH environment variable and references it as $ENV:IMAGE_PATH in the PowerShell command, which does not trigger subexpression evaluation.

For detailed patch information, refer to the GitHub Podman Security Commit and the GitHub Security Advisory GHSA-hc8w-h2mf-hp59.

Workarounds

  • Restrict Podman usage to non-HyperV backends where possible until patching is complete
  • Implement strict input validation for machine names at the organizational policy level
  • Use application control policies to restrict PowerShell execution from Podman processes
  • Limit high-privilege access to systems running vulnerable Podman versions
bash
# Verify current Podman version and upgrade
podman --version
# If version is between 4.8.0 and 5.8.1, upgrade immediately
# Windows: Use official Podman installer for version 5.8.2+
# Or via package manager if available
winget upgrade containers.podman

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPodman

  • SeverityMEDIUM

  • CVSS Score4.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:H/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Technical References
  • GitHub Podman Commit Update

  • GitHub Security Advisory GHSA-hc8w-h2mf-hp59
  • Related CVEs
  • CVE-2026-34045: Podman Desktop Denial-of-Service Flaw

  • CVE-2025-9566: Podman Path Traversal Vulnerability

  • CVE-2025-4953: Podman Information Disclosure Vulnerability

  • CVE-2025-6032: Podman TLS Verification 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