Cyber Resilience

CVE-2026-33414

Command Injection in Podman Project Podman 4.8.0 – 5.8.2

Published
14 April 2026
Modified
24 July 2026
Patch / advisory
CVSS Score v4 4.0
Click a component to see what it means
Raw vectorCVSS: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
EPSS Score 0.0061 46th percentile
Risk Priority 19 floored blend · peak EPSS

Summary

CVE-2026-33414 is a medium-severity OS Command Injection (CWE-78) vulnerability in Podman Project Podman. Its CVSS base score is 4.0 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Command and Scripting Interpreter (T1059); ranked at the 46th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to SA-11 (Developer Testing and Evaluation) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

CVE-2026-33414 is a command injection vulnerability in Podman, a tool for managing OCI containers and pods. It affects versions 4.8.0 through 5.8.1, specifically in the HyperV machine backend located at pkg/machine/hyperv/stubber.go. The issue arises when the VM image path is inserted unsanitized into a PowerShell double-quoted string, enabling $() subexpression injection. PowerShell evaluates these subexpressions before executing the outer command, and the vulnerability is exclusive to Windows due to the HyperV backend dependency. The CVSS v3.1 base score is 7.8 (AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H), mapped to CWE-78 (Improper Neutralization of Special Elements used in an OS Command).

An attacker with local access and low privileges (PR:L) can exploit this by controlling the VM image path, such as through a crafted machine name or image directory. This allows injection of arbitrary PowerShell commands executed with the privileges of the Podman process. On typical Windows installations, this grants SYSTEM-level code execution, providing high confidentiality, integrity, and availability impacts in a scoped attack (S:C). The high attack complexity (AC:H) stems from the need to manipulate the specific path context.

Podman has addressed the vulnerability in version 5.8.2. The patch commit is available at https://github.com/containers/podman/commit/571c842bd357ee626019ea97d030fb772fc654ed, and further details are in the security advisory at https://github.com/containers/podman/security/advisories/GHSA-hc8w-h2mf-hp59. Security practitioners should upgrade to 5.8.2 or later on affected Windows systems running Podman.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

Podman is a tool for managing OCI containers and pods. Versions 4.8.0 through 5.8.1 contain a command injection vulnerability in the HyperV machine backend in pkg/machine/hyperv/stubber.go, where the VM image path is inserted into a PowerShell double-quoted string without sanitization,…

more

allowing $() subexpression injection. 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 execute arbitrary PowerShell commands with the privileges of the Podman process. On typical Windows installations this means SYSTEM-level code execution, and only Windows is affected as the code is exclusive to the HyperV backend. This issue has been patched in version 5.8.2.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1059 Command and Scripting Interpreter Execution
Adversaries may abuse command and script interpreters to execute commands, scripts, or binaries.
T1059.003 Windows Command Shell Execution
Adversaries may abuse the Windows command shell for execution.
T1059.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
T1059.001 PowerShell Execution
Adversaries may abuse PowerShell commands and scripts for execution.
T1059.002 AppleScript Execution
Adversaries may abuse AppleScript for execution.
T1059.005 Visual Basic Execution
Adversaries may abuse Visual Basic (VB) for execution.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2024-24278Same product: Microsoft Windows
CVE-2023-1004Same product: Microsoft Windows
CVE-2023-1003Same product: Microsoft Windows
CVE-2025-7361Same product: Microsoft Windows
CVE-2023-41444Same product: Microsoft Windows
CVE-2025-4056Same product: Microsoft Windows
CVE-2024-50919Same product: Microsoft Windows
CVE-2023-41179Same product: Microsoft Windows
CVE-2024-23755Same product: Microsoft Windows
CVE-2026-50650Same product: Microsoft Windows

Affected Assets

podman project
podman
4.8.0 — 5.8.2

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V1.2.5
  • V1.2.8
  • V15.2.5
  • V1.3.1

Mitigating Controls (NIST 800-53 r5) AI

Developer testing and evaluation can discover missing or incorrect command sanitization during development.

Input validation directly neutralizes or rejects special characters that would otherwise alter OS command structure.

Least privilege reduces the permissions available to any process that could be subverted by injected commands.

Least functionality restricts available OS commands and interpreters, limiting the blast radius of injection.

Requiring documented secure development standards and tools enforces use of safe code-generation APIs and escaping.

Secure engineering principles require proper neutralization of untrusted input before command construction.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

PR.PS-06's SDLC practices directly require secure coding and input handling that blocks command-injection defects, yet the single broad outcome leaves many specific neutralization vectors and verification gaps unaddressed.

PR.PS-02 partial match
prevents

Routine patching/maintenance can remediate known command-injection CVEs in dependencies (partial forward) but does nothing to stop developers from introducing improper neutralization in custom code (none reverse).

PR.DS-10 none match
prevents

PR.DS-10 protects runtime data confidentiality/integrity but has no bearing on neutralizing externally influenced input during code generation, so neither direction shows any preventive effect.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

finds

Security testing and code review target insecure use of operating-system command interfaces, catching command-injection flaws introduced during development.

prevents

Banning unapproved code samples and unauthenticated web services, combined with secure-coding standards and SAST, prevents the dynamic generation or inclusion of attacker-supplied code.

none

Controls that restrict unauthorized or malicious code from being introduced via external networks or removable media limit opportunities for an attacker to inject and execute arbitrary code.

References