-
Notifications
You must be signed in to change notification settings - Fork 601
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
vex: Add package name to VEX product identifiers #1905
Comments
Hi @ferozsalam, we think this makes sense, it would be great if you wanted to implement it and send in a PR. Let us know if you have any trouble or any questions, and thanks in advance! |
Thanks @tgerla - I'll try to look at this in the coming week. |
@tgerla I'm finally taking a look at this at the moment and I had a question. When using grype to scan an image from a remote registry, I note that the
I was hoping to use the |
Hey @ferozsalam, I think at a high level this seems like a good enhancement. It seems like we should be able to try parsing the It should be noted that there may be some cases where we get an image and we are unable to get tags, such as if the only thing provided is a digest, so there may be some edge cases where things don't get excluded as expected because no name was found anywhere. There are probably some details to make sure we get right here, but I think we overall agree with the change you've described. 👍 Developer note: we may be able to include a tag in stereoscope if they were specified in the input. |
What would you like to be added:
It would be good to add the
pkg.Source.Name
andpkg.Source.Digest
information to the matchable product identifiers when using VEX documents to filter out vulnerabilities. This would allow for VEX document filtering on locally built images, which currently doesn't work when scanning images built locally withdocker build
. In turn, this would help with CI workflows that use VEX documents to filter out triaged vulnerabilities in locally built images.I have explained my investigation and reasoning in more detail below. If the change sounds reasonable (it is minor), I am happy to make it myself.
Why is this needed:
When using a VEX document to filter out vulnerabilities in Grype, the
product
field is used to specify which images in particular a vulnerability annotation applies to.So for example the following VEX document:
can be used against
nginx:1.27.0
(make sure you are ignoring fixed VEX statuses in yourgrype.yaml
:As shown above, this works as expected (1 ignored vulnerability, where the
pkg:oci/nginx
matches the pURL of the container being scanned) when downloading an image from a container registry. However, when building an image locally, this doesn't work.Dockerfile:
then run:
$ docker build -t nginx-grype-test .
, and update the VEX document above to specify the new image name:However, Grype doesn't ignore the same vulnerability in this new image, despite there being essentially no difference in the images:
Doing some digging + adding some extra debug logging, I've discovered that the generation of product identifiers to match on happens here, and that in the case of locally built images,
v.RepoDigests
doesn't contain any information, so there's practically no way for Grype to successfully product match on a locally built image. This breaks CI workflows, for example building and then scanning a container with VEX documents applied.However, the
pkgContext.Source.Name
andpkgContext.Source.ID
(the local image name and digest) are all set, so it would be trivial (and sensible) to add them to the list of matchable fields for VEX documents, which would fix the issue.productIdentifiersFromContext
already has a TODO that suggestsWe could generate more identifiers to match better.
, and I think this change would help with that.As mentioned earlier, I have a good idea of what needs to be done, so if this seems like a sensible approach I'll go ahead and implement it.
cc @puerco as the original author of the VEX functionality.
The text was updated successfully, but these errors were encountered: