-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: return proper image digest #2310
base: main
Are you sure you want to change the base?
fix: return proper image digest #2310
Conversation
Trivy Operator incorrectly reported imageID as image digest. Fixes aquasecurity#2259
// - image ID (this is what is visible in 'docker image ls command') | ||
// Execute docker image ls --digests --no-trunc <image> to see both digest and ID. | ||
// See https://stackoverflow.com/questions/56364643/whats-the-difference-between-a-docker-images-image-id-and-its-digest | ||
var imageDigest = strings.Split(reports.Metadata.RepoDigests[0], "@")[1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@d-mankowski-synerise any reason to strip the sha256@
prefix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copying from the issue you raised:
"RepoDigests": [
"<registry>/<image repo>@sha256:cf3e3b3a98edde46eac58d4745a2467b9da2bc49a11191565a893ffac38034a3"
],
so it is not stripping sha256
prefix, but <registry>/<repo>@
part
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ohh, right! mixed up the delimiters 👍🏼
@@ -5,7 +5,10 @@ | |||
"Family": "alpine", | |||
"Name": "3.10.2", | |||
"EOSL": true | |||
} | |||
}, | |||
"RepoDigests": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not really sure why RepoDigests
and other parameters are not included in this report (which, I assume, is the output of trivy i --format json alpine:3.10.2
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, looks like the fixture is incomplete, might have been generated with an older version of Trivy?
Trivy Operator incorrectly reported imageID as image digest.
Fixes #2259
Description
Related issues
Remove this section if you don't have related PRs.
Checklist