-
Notifications
You must be signed in to change notification settings - Fork 2k
Open
Labels
untriagedvulnerabilityReport of a known vulnerability in an imageReport of a known vulnerability in an image
Description
There is a critical vulnerability in the latest versions of dotnet runtime.
Version Tested: mcr.microsoft.com/dotnet/runtime:10.0.5-alpine3.23-amd64
podman run --rm anchore/syft mcr.microsoft.com/dotnet/runtime:10.0.5-alpine3.23-amd64
| Package | Version | Type |
|---|---|---|
| zlib | 1.3.1-r2 | apk |
CVE-2026-22184 was fixed with version 1.3.2 which was released last month.
Alpine 3.23 has been patched, but it seems there is an issue with the official Microsoft dotnet images not grabbing the latest? Can we only expect this critical vulnerability to be fixed when Alpine versions?
I have addressed this manually in the dockerfile
# https://github.com/dotnet/dotnet-docker/blob/main/README.aspnet.md
ARG RUNTIME_VERSION=10.0.5-alpine3.23-amd64
# set up base image
FROM mcr.microsoft.com/dotnet/aspnet:$RUNTIME_VERSION AS base
# Force update of zlib to mitigate CVE-2026-22184
RUN apk add --no-cache --upgrade zlibReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
untriagedvulnerabilityReport of a known vulnerability in an imageReport of a known vulnerability in an image
Type
Projects
Status
In Progress