Skip to content

Commit ce3ade5

Browse files
ChrisJBurnsclaude
andauthored
Ignore Docker daemon-side vulns in govulncheck (#4521)
GO-2026-4883 (plugin privilege validation) and GO-2026-4887 (AuthZ plugin bypass) affect Docker daemon internals. ToolHive only uses the Docker client SDK and is not impacted. No fix exists for the github.com/docker/docker module path yet — the patch is only in github.com/moby/moby/v2 v2.0.0-beta.8+. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a948281 commit ce3ade5

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/security-scan.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,18 @@ jobs:
6868
# Indirect dependency via mcp-go, invopop/jsonschema, wk8/go-ordered-map.
6969
# The vulnerability is in the Delete function which is not called by ToolHive
7070
# or any of its dependencies. No fixed version exists yet (all versions affected).
71-
IGNORED_VULNS="GO-2025-4192 GO-2026-4514"
71+
# GO-2026-4883: Off-by-one error in Moby plugin privilege validation (CVE-2026-33997)
72+
# Affects the Docker daemon's plugin privilege handling code. ToolHive only uses
73+
# the Docker client SDK to manage containers, not the daemon plugin subsystem.
74+
# No fixed version exists for github.com/docker/docker; fix is only in
75+
# github.com/moby/moby/v2 v2.0.0-beta.8+ which is not yet available as a
76+
# docker/docker release.
77+
# GO-2026-4887: AuthZ plugin bypass with oversized request bodies (CVE-2026-34040)
78+
# Affects the Docker daemon's AuthZ plugin mechanism. ToolHive only uses the
79+
# Docker client SDK and does not run or configure AuthZ plugins. No fixed version
80+
# exists for github.com/docker/docker; fix is only in github.com/moby/moby/v2
81+
# v2.0.0-beta.8+ which is not yet available as a docker/docker release.
82+
IGNORED_VULNS="GO-2025-4192 GO-2026-4514 GO-2026-4883 GO-2026-4887"
7283
7384
# Show the raw output for debugging
7485
echo "::group::govulncheck raw output"

0 commit comments

Comments
 (0)