---
id: CVE-2026-57231
aliases:
  - GHSA-4hq8-gpf5-8p68
title: >-
  Podman: Malformed Image can trick podman run into leaking host environment
  variables into the container
summary: >-
  Podman: Malformed Image can trick podman run into leaking host environment
  variables into the container
severity: high
cvss: 7.5
cwe:
  - CWE-200
vendor: containers
product: github.com/containers/podman/v5
ecosystem: go
affected:
  - github.com/containers/podman/v5 < 5.8.4
  - go.podman.io/podman/v6 < 6.0.0
  - github.com/containers/podman/v4 <= 4.9.5
  - github.com/containers/podman/v3 <= 3.4.7
  - github.com/containers/podman/v2 <= 2.2.1
  - 'github.com/containers/podman >= 1.8.1, < 5.8.4'
patched:
  - github.com/containers/podman/v5 5.8.4
  - go.podman.io/podman/v6 6.0.0
published: '2026-09-24'
updated: '2026-09-24'
sourceUpdated: '2026-09-24T19:40:22Z'
source: GHSA
sourceUrl: 'https://github.com/advisories/GHSA-4hq8-gpf5-8p68'
references:
  - url: >-
      https://github.com/podman-container-tools/podman/security/advisories/GHSA-4hq8-gpf5-8p68
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2026-57231'
  - url: >-
      https://github.com/podman-container-tools/podman/commit/6c431b73dbf8e4b20b778644d7a80caebdb75050
  - url: 'https://github.com/podman-container-tools/podman/releases/tag/v5.8.4'
  - url: 'https://github.com/podman-container-tools/podman/releases/tag/v6.0.0'
  - url: 'https://github.com/advisories/GHSA-4hq8-gpf5-8p68'
tags:
  - ghsa
  - go
epss: 0.00437
epssPercentile: 0.35267
ingestedAt: '2026-09-24T19:50:30.720Z'
---

## Overview

## Summary

An container image that contains a environment variable with just a key and no value can trick podman into passing that variable from the host into the container. This is made worse by the fact that using an asterisk (*) will cause podman to pass all host variables into the container. So essentially a malicious image can exfiltrate all podman environment variables that are set in the session from where the container is launched.

## Details

podman run allows `--env VAR1` or `--env VAR*` which will read the variable values from the current environment and then passes them into the container. However because the same parsing logic was reused for the image config env section that means that an image variable could also gain access to that.

## Patch

That image spec requires the env variables to be in the form of `key=value`, so to address this invalid formatted variables get rejected and the container will not run.

Fixed in https://github.com/podman-container-tools/podman/commit/6c431b73dbf8e4b20b778644d7a80caebdb75050

## Workaround

Do not run untrusted images. Before running an image consider inspecting the config with `podman image inspect --format '{{.Config.Env}}' <image>` and check for any variables that do not have a value assigned.

## Affected packages

- `github.com/containers/podman/v5 < 5.8.4`
- `go.podman.io/podman/v6 < 6.0.0`
- `github.com/containers/podman/v4 <= 4.9.5`
- `github.com/containers/podman/v3 <= 3.4.7`
- `github.com/containers/podman/v2 <= 2.2.1`
- `github.com/containers/podman >= 1.8.1, < 5.8.4`

## Remediation

Upgrade to a patched release:

- `github.com/containers/podman/v5 5.8.4`
- `go.podman.io/podman/v6 6.0.0`
