remote: validate foreign layer URLs to prevent SSRF (fixes #2259)#2293
Merged
Conversation
Foreign layer descriptors in OCI/Docker manifests may carry arbitrary URLs in the descriptor's "urls" field. When the registry blob endpoint returns 404, the client fetches these URLs directly with no validation, allowing a malicious registry to point them at internal services (e.g. the cloud instance-metadata endpoint 169.254.169.254). Add validateForeignURL, which applies the same scheme and private-IP checks as transport.validateRealmURL to every foreign layer URL before making a network request. HTTP is only permitted when the registry itself was reached over HTTP (insecure=true). DNS-based SSRF remains out of scope, consistent with the design decision in validateRealmURL. Fixes google#2259.
The previous fix validates each foreign layer URL with validateForeignURL before adding it to the fetch list. However, http.Client follows redirects by default: an attacker can host a foreign layer URL on a public domain that passes the initial check, then redirect the client to http://169.254.169.254/... (AWS/GCP instance-metadata), leaking cloud credentials. Add fetchForeignBlobURL (on *fetcher) that reuses the existing transport but sets a CheckRedirect hook calling validateForeignURL on every redirect hop. Compressed() now routes foreign layer fetches through this method instead of the shared fetchBlobURL so that the validation happens at both the initial URL and each redirect destination. New tests: - TestPullingForeignLayerSSRFViaRedirect: attacker httptest server issues a 302 to a loopback victim; confirms Compressed() returns an error before any credentials are returned.
4 tasks
Subserial
requested changes
May 13, 2026
Subserial
left a comment
Contributor
There was a problem hiding this comment.
Looks good, but needs some code cleanup before merge.
Move validateForeignURL and fetchForeignBlobURL (plus their tests) next to the fetcher receiver, trim verbose function comments, and rework Compressed() to call fetchBlobURL on the single registry URL with foreign URLs collected and iterated separately.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2293 +/- ##
==========================================
+ Coverage 56.73% 56.75% +0.02%
==========================================
Files 165 165
Lines 11259 11299 +40
==========================================
+ Hits 6388 6413 +25
- Misses 4112 4121 +9
- Partials 759 765 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Subserial
approved these changes
May 14, 2026
Subserial
pushed a commit
to Subserial/go-containerregistry
that referenced
this pull request
May 15, 2026
… (google#2293) * remote: validate foreign layer URLs to prevent SSRF Foreign layer descriptors in OCI/Docker manifests may carry arbitrary URLs in the descriptor's "urls" field. When the registry blob endpoint returns 404, the client fetches these URLs directly with no validation, allowing a malicious registry to point them at internal services (e.g. the cloud instance-metadata endpoint 169.254.169.254). Add validateForeignURL, which applies the same scheme and private-IP checks as transport.validateRealmURL to every foreign layer URL before making a network request. HTTP is only permitted when the registry itself was reached over HTTP (insecure=true). DNS-based SSRF remains out of scope, consistent with the design decision in validateRealmURL. Fixes google#2259. * remote: block SSRF redirect bypass for foreign layer URLs The previous fix validates each foreign layer URL with validateForeignURL before adding it to the fetch list. However, http.Client follows redirects by default: an attacker can host a foreign layer URL on a public domain that passes the initial check, then redirect the client to http://169.254.169.254/... (AWS/GCP instance-metadata), leaking cloud credentials. Add fetchForeignBlobURL (on *fetcher) that reuses the existing transport but sets a CheckRedirect hook calling validateForeignURL on every redirect hop. Compressed() now routes foreign layer fetches through this method instead of the shared fetchBlobURL so that the validation happens at both the initial URL and each redirect destination. New tests: - TestPullingForeignLayerSSRFViaRedirect: attacker httptest server issues a 302 to a loopback victim; confirms Compressed() returns an error before any credentials are returned. * remote: move foreign layer SSRF helpers to fetcher.go per review Move validateForeignURL and fetchForeignBlobURL (plus their tests) next to the fetcher receiver, trim verbose function comments, and rework Compressed() to call fetchBlobURL on the single registry URL with foreign URLs collected and iterated separately. * remote: rename unused params to satisfy revive linter
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.
Summary
OCI and Docker manifests may include a `urls` field in layer descriptors
specifying alternative sources for foreign layers. Without validation, a
malicious registry can set these URLs to private or link-local addresses
(e.g. `http://169.254.169.254/latest/meta-data/iam/security-credentials/\`),
causing the client to exfiltrate cloud credentials when pulling an image.
Attack scenario 1 — direct private IP in `urls`
```json
{
"mediaType": "application/vnd.docker.image.rootfs.foreign.diff.tar.gzip",
"digest": "sha256:...",
"size": 1024,
"urls": ["http://169.254.169.254/latest/meta-data/iam/security-credentials/my-role"]
}
```
The client calls `Compressed()`, which iterates `d.URLs` and fetches each
URL via `fetchBlobURL`. On AWS/GCP/Azure the metadata service returns IAM
tokens.
Attack scenario 2 — redirect-based bypass (added in this update)
Initial URL validation checks only the URL literal. A public CDN under
attacker control can pass validation and then issue a redirect:
Fix
IP literals. HTTP is only allowed when the registry itself uses HTTP
(insecure mode), matching the precedent in `transport.validateRealmURL`.
sets a `CheckRedirect` hook that passes every redirect destination through
`validateForeignURL`, closing the redirect-bypass path.
(not the shared `fetchBlobURL`) so both the initial URL and each redirect
hop are validated.
Test plan
(169.254.169.254), RFC-1918, unspecified, disallowed schemes, insecure HTTP.
URL is rejected before any request reaches 169.254.169.254.
attacker server redirects to loopback victim; confirms `Compressed()` returns
a "private or link-local" error before any data is returned.
Fixes #2259.