Update module github.com/docker/docker to v25 [SECURITY] - #232
Open
renovate[bot] wants to merge 1 commit into
Open
Update module github.com/docker/docker to v25 [SECURITY]#232renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
deleted the
renovate/go-github.com-docker-docker-vulnerability
branch
August 28, 2026 20:55
renovate
Bot
force-pushed
the
renovate/go-github.com-docker-docker-vulnerability
branch
2 times, most recently
from
August 29, 2026 01:49
1c1ab27 to
04d752b
Compare
renovate
Bot
force-pushed
the
renovate/go-github.com-docker-docker-vulnerability
branch
2 times, most recently
from
September 1, 2026 01:31
04d752b to
2092aee
Compare
renovate
Bot
force-pushed
the
renovate/go-github.com-docker-docker-vulnerability
branch
2 times, most recently
from
September 2, 2026 23:39
2092aee to
2d4f38b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v20.10.19+incompatible→v25.0.13+incompatibleClassic builder cache poisoning
CVE-2024-24557 / GHSA-xw73-rw38-6vjc
More information
Details
The classic builder cache system is prone to cache poisoning if the image is built
FROM scratch.Also, changes to some instructions (most important being
HEALTHCHECKandONBUILD) would not cause a cache miss.An attacker with the knowledge of the Dockerfile someone is using could poison their cache by making them pull a specially crafted image that would be considered as a valid cache candidate for some build steps.
For example, an attacker could create an image that is considered as a valid cache candidate for:
when in fact the malicious image used as a cache would be an image built from a different Dockerfile.
In the second case, the attacker could for example substitute a different
HEALTCHECKcommand.Impact
23.0+ users are only affected if they explicitly opted out of Buildkit (
DOCKER_BUILDKIT=0environment variable) or are using the/buildAPI endpoint (which uses the classic builder by default).All users on versions older than 23.0 could be impacted. An example could be a CI with a shared cache, or just a regular Docker user pulling a malicious image due to misspelling/typosquatting.
Image build API endpoint (
/build) andImageBuildfunction fromgithub.com/docker/docker/clientis also affected as it the uses classic builder by default.Patches
Patches are included in Moby releases:
Workarounds
--no-cacheor use Buildkit if possible (DOCKER_BUILDKIT=1, it's default on 23.0+ assuming that the buildx plugin is installed).Version = types.BuilderBuildKitorNoCache = trueinImageBuildOptionsforImageBuildcall.Severity
CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:C/C:L/I:H/A:LReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Authz zero length regression
CVE-2024-41110 / GHSA-v23v-6jw2-98fq
More information
Details
A security vulnerability has been detected in certain versions of Docker Engine, which could allow an attacker to bypass authorization plugins (AuthZ) under specific circumstances. The base likelihood of this being exploited is low. This advisory outlines the issue, identifies the affected versions, and provides remediation steps for impacted users.
Impact
Using a specially-crafted API request, an Engine API client could make the daemon forward the request or response to an authorization plugin without the body. In certain circumstances, the authorization plugin may allow a request which it would have otherwise denied if the body had been forwarded to it.
A security issue was discovered In 2018, where an attacker could bypass AuthZ plugins using a specially crafted API request. This could lead to unauthorized actions, including privilege escalation. Although this issue was fixed in Docker Engine v18.09.1 in January 2019, the fix was not carried forward to later major versions, resulting in a regression. Anyone who depends on authorization plugins that introspect the request and/or response body to make access control decisions is potentially impacted.
Docker EE v19.03.x and all versions of Mirantis Container Runtime are not vulnerable.
Vulnerability details
Patches
Remediation steps
References
Severity
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:HReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Moby firewalld reload removes bridge network isolation
CVE-2025-54410 / GHSA-4vq8-7jfc-9cvp
More information
Details
Moby is an open source container framework developed by Docker Inc. that is distributed as Docker Engine, Mirantis Container Runtime, and various other downstream projects/products. The Moby daemon component (dockerd), which is developed as moby/moby is commonly referred to as Docker, or Docker Engine.
Firewalld is a daemon used by some Linux distributions to provide a dynamically managed firewall. When Firewalld is running, Docker uses its iptables backend to create rules, including rules to isolate containers in one bridge network from containers in other bridge networks.
Impact
The iptables rules created by Docker are removed when firewalld is reloaded using, for example "firewall-cmd --reload", "killall -HUP firewalld", or "systemctl reload firewalld".
When that happens, Docker must re-create the rules. However, in affected versions of Docker, the iptables rules that isolate containers in different bridge networks from each other are not re-created.
Once these rules have been removed, containers have access to any port, on any container, in any non-internal bridge network, running on the Docker host.
Containers running in networks created with
--internalor equivalent have no access to other networks. Containers that are only connected to these networks remain isolated after a firewalld reload.Where Docker Engine is not running in the host's network namespace, it is unaffected. Including, for example, Rootless Mode, and Docker Desktop.
Patches
Moby releases 28.0.0 and newer are not affected. A fix is available in moby release 25.0.13.
Workarounds
After reloading firewalld, either:
References
https://firewalld.org/
https://firewalld.org/documentation/howto/reload-firewalld.html
Severity
CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
docker/docker (github.com/docker/docker)
v25.0.13+incompatibleCompare Source
v25.0.12+incompatibleCompare Source
v25.0.11+incompatibleCompare Source
v25.0.10+incompatibleCompare Source
v25.0.9+incompatibleCompare Source
v25.0.8+incompatibleCompare Source
v25.0.7+incompatibleCompare Source
v25.0.6+incompatibleCompare Source
v25.0.5+incompatibleCompare Source
v25.0.4+incompatibleCompare Source
v25.0.3+incompatibleCompare Source
v25.0.2+incompatibleCompare Source
v25.0.1+incompatibleCompare Source
v25.0.0+incompatibleCompare Source
v24.0.9+incompatibleCompare Source
v24.0.8+incompatibleCompare Source
v24.0.7+incompatibleCompare Source
v24.0.6+incompatibleCompare Source
v24.0.5+incompatibleCompare Source
v24.0.4+incompatibleCompare Source
v24.0.3+incompatibleCompare Source
v24.0.2+incompatibleCompare Source
v24.0.1+incompatibleCompare Source
v24.0.0+incompatibleCompare Source
v23.0.18+incompatibleCompare Source
v23.0.17+incompatibleCompare Source
v23.0.16+incompatibleCompare Source
v23.0.15+incompatibleCompare Source
v23.0.14+incompatibleCompare Source
v23.0.13+incompatibleCompare Source
v23.0.12+incompatibleCompare Source
v23.0.11+incompatibleCompare Source
v23.0.10+incompatibleCompare Source
v23.0.9+incompatibleCompare Source
v23.0.8+incompatibleCompare Source
v23.0.7+incompatibleCompare Source
v23.0.6+incompatibleCompare Source
v23.0.5+incompatibleCompare Source
v23.0.4+incompatibleCompare Source
v23.0.3+incompatibleCompare Source
v23.0.2+incompatibleCompare Source
v23.0.1+incompatibleCompare Source
v23.0.0+incompatibleCompare Source
v20.10.27+incompatibleCompare Source
v20.10.26+incompatibleCompare Source
v20.10.25+incompatibleCompare Source
v20.10.24+incompatibleCompare Source
v20.10.23+incompatibleCompare Source
v20.10.22+incompatibleCompare Source
v20.10.21+incompatibleCompare Source
v20.10.20+incompatibleCompare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.