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
    • 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 vulnerability in Podman's HyperV backend that enables remote code execution with SYSTEM privileges on Windows. This article covers technical details, affected versions, and patches.

Updated: May 15, 2026

CVE-2026-33414 Overview

CVE-2026-33414 is a command injection vulnerability in Podman, an open-source tool for managing Open Container Initiative (OCI) containers and pods. The flaw resides in the HyperV machine backend code at pkg/machine/hyperv/stubber.go, where the virtual machine image path is inserted into a PowerShell double-quoted string without sanitization. Versions 4.8.0 through 5.8.1 are affected, and only Windows installations are vulnerable because the affected code is exclusive to the HyperV backend. An attacker who controls the VM image path through a crafted machine name or image directory can execute arbitrary PowerShell commands with the privileges of the Podman process. The issue is patched in version 5.8.2.

Critical Impact

Successful exploitation results in arbitrary PowerShell execution at the Podman process privilege level, which on typical Windows installations is SYSTEM.

Affected Products

  • Podman versions 4.8.0 through 5.8.1 (HyperV machine backend)
  • Microsoft Windows installations running Podman with HyperV backend
  • Podman 5.8.2 contains the fix

Discovery Timeline

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

Technical Details for CVE-2026-33414

Vulnerability Analysis

The vulnerability is a classic OS command injection flaw classified under [CWE-78]. Podman's HyperV backend constructs PowerShell command strings to manage virtual machines on Windows hosts. The VM image path is concatenated directly into a PowerShell double-quoted string. PowerShell evaluates $() subexpressions inside double-quoted strings before executing the outer command, which allows attacker-controlled path content to break out of the string context.

Because exploitation requires local access and high privileges to influence the Podman machine configuration or image directory, the CVSS 4.0 base score is 4.0 (MEDIUM). However, the impact on a successfully exploited host is significant because Podman commonly runs with elevated rights on Windows, leading to SYSTEM-level code execution.

Root Cause

The root cause is missing input sanitization in pkg/machine/hyperv/stubber.go. The VM image path is interpolated into a PowerShell double-quoted string without escaping or validation of the $, (, and ) characters. Any path component containing a PowerShell subexpression construct is evaluated by the shell rather than treated as literal data.

Attack Vector

An attacker with the ability to influence the Podman machine name or VM image directory path can craft a value containing a PowerShell $() subexpression. When Podman builds and runs the HyperV management command, PowerShell evaluates the embedded subexpression before executing the outer cmdlet, running attacker-supplied PowerShell with the privileges of the Podman process. Since microsoft windows is the only affected operating system in the CPE list, non-Windows installations are not impacted.

No public proof-of-concept exploit is available, and the EPSS score is 0.013%, indicating low predicted exploitation activity at this time.

Detection Methods for CVE-2026-33414

Indicators of Compromise

  • Podman machine names or VM image paths containing PowerShell subexpression syntax such as $( or backtick-escape sequences
  • Unexpected child powershell.exe processes spawned by the Podman process tree on Windows hosts
  • HyperV VM configuration entries referencing image paths with shell metacharacters

Detection Strategies

  • Inventory Windows endpoints running Podman versions 4.8.0 through 5.8.1 with the HyperV machine backend enabled
  • Monitor process creation telemetry for powershell.exe invocations whose command line contains $() constructs originating from Podman binaries
  • Audit machine creation events and configuration files for non-standard characters in machine names or image directory paths

Monitoring Recommendations

  • Forward Windows process creation events (Event ID 4688) and PowerShell script block logging (Event ID 4104) to a centralized analytics platform
  • Alert on Podman process trees that produce SYSTEM-context PowerShell execution outside normal VM lifecycle operations
  • Track changes to Podman machine configuration directories on Windows for unexpected path modifications

How to Mitigate CVE-2026-33414

Immediate Actions Required

  • Upgrade Podman to version 5.8.2 or later on all affected Windows hosts
  • Audit existing Podman machine configurations for image paths containing $, (, ), or backtick characters and recreate any suspicious machines
  • Restrict who can create or modify Podman machines and machine image directories on shared Windows systems

Patch Information

The Podman maintainers fixed the issue in version 5.8.2. The remediation is delivered through the upstream commit referenced in GitHub Podman Commit 571c842 and described in GitHub Security Advisory GHSA-hc8w-h2mf-hp59. Administrators should apply the update through their standard Podman distribution channel for Windows.

Workarounds

  • Avoid using the HyperV machine backend until the patch is applied; use alternative backends where supported
  • Constrain Podman machine names and image directory paths to alphanumeric characters and standard path separators
  • Limit Podman execution on Windows to trusted administrative accounts and prevent unprivileged users from supplying machine names or image paths
bash
# Verify the installed Podman version on Windows and upgrade if vulnerable
podman --version
# If version is between 4.8.0 and 5.8.1, upgrade to 5.8.2 or later
# winget upgrade RedHat.Podman

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWindows

  • SeverityMEDIUM

  • CVSS Score4.0

  • EPSS Probability0.01%

  • 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
  • Vendor Resources
  • GitHub Podman Commit

  • GitHub Security Advisory GHSA-hc8w-h2mf-hp59
  • Related CVEs
  • CVE-2026-33826: Windows Active Directory RCE Vulnerability

  • CVE-2026-32183: Windows Snipping Tool RCE Vulnerability

  • CVE-2026-32149: Windows Hyper-V RCE Vulnerability

  • CVE-2026-31995: Openclaw Command Injection Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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