From 61961dbf8e0e6bad86fd5ab5eeb893dfe3e9787c Mon Sep 17 00:00:00 2001 From: midays Date: Tue, 7 Jul 2026 18:28:29 +0300 Subject: [PATCH] Fix urllib3 CVEs by upgrading to >= 2.7.0 This commit fixes the following CVEs by upgrading urllib3: - CVE-2025-66418: Unbounded decompression chain leads to resource exhaustion - CVE-2025-66471: Excessive resource consumption - CVE-2026-21441: DoS via redirect response decompression - CVE-2026-44431: Sensitive headers forwarded across origins All four CVEs require urllib3 >= 2.7.0 to be fully resolved. Jira tickets: MIG-1808, MIG-1809, MIG-1810, MIG-1811, MIG-1812, MIG-1813, MIG-1814, MIG-1815, MIG-1816, MIG-1826, MIG-1827, MIG-1828, MIG-1829, MIG-1830, MIG-1831, MIG-1832, MIG-1833, MIG-1834, MIG-1835, MIG-1836, MIG-1837, MIG-1838, MIG-1839, MIG-1840, MIG-1841, MIG-1842, MIG-1843, MIG-1916 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a9ec1ba75..d1f318bd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN CGO_ENABLED=1 GOOS=linux go build -tags "$BUILDTAGS" -a -o $APP_ROOT/src/man # Copy the controller-manager into a thin image FROM registry.access.redhat.com/ubi8-minimal +RUN microdnf upgrade -y python3-urllib3 && microdnf clean all WORKDIR / COPY --from=builder /opt/app-root/src/manager . USER 65534:65534