zot’s dist-spec authorization middleware infers the required action for PUT /v2/{name}/manifests/{reference} as create by default, and only switches to update when the tag already exists and reference != "latest".
as a result, when latest already exists, a user who is allowed to create (but not allowed to update) can still pass the authorization check for an overwrite attempt of latest.
pkg/api/authz.go (DistSpecAuthzHandler)slices.Contains(tags, reference) && reference != "latest" (line 352 at the pinned commit)HIGH category: CWE-863 (incorrect authorization)
note: impact depends on how a deployment uses latest (for example, if latest is treated as a protected or “push-once” tag), and on how access control is provisioned (users with create but without update). the attached poc demonstrates a real overwrite of latest (tag digest changes) under a create-only policy.
attacker has create but not update on a repository.latest./v2/acme/app/manifests/latest (example repository name).create (not update) for latest, so the request passes authorization even though the tag already exists.the attached poc demonstrates this deterministically with canonical.log and control.log markers.
update permission, including latest (or latest should be explicitly documented as exempt).reference=="latest" and the tag exists, the middleware keeps the action as create instead of switching to update.this can break least-privilege expectations in deployments that rely on the create vs update split to prevent tag overwrites (for example, “push-once” policies). if latest is used as a high-trust tag in ci/cd, this can create supply-chain risk because a create-only principal can overwrite an existing latest tag while other existing tags correctly require update.
remove the special-case exemption for latest when determining whether an existing tag requires update permission (treat latest the same as other tags), or document and enforce an explicit policy rule for latest.
DistSpecAuthzHandler.latest is exempt, this control does not apply to latest unless documented otherwise.{
"cwe_ids": [
"CWE-863"
],
"github_reviewed": true,
"github_reviewed_at": "2026-03-10T23:44:25Z",
"nvd_published_at": "2026-03-10T21:16:49Z",
"severity": "HIGH"
}