Merged
Conversation
Alpine Linux has a separate repo where they reject CVEs that don't merit further investigation or being tagged in their build system, such as CVEs that are disputed upstream, or affect a package that coincidentally has the same name as an APK. Previously, these extra rejections were missed by vunnel, resulting in false positives in Grype. Therefore, pull in these packages and emit NAKs for them for every Alpine version. Signed-off-by: Will Murphy <[email protected]>
kzantow
reviewed
Jan 29, 2026
|
|
||
| The security-rejections repository contains CVEs that Alpine has determined | ||
| do not affect Alpine packages (false positives). These are emitted as NAK | ||
| entries with Version: "0" to filter NVD CPE matches. |
Contributor
There was a problem hiding this comment.
APK NAKs need to have a constraint of < 0, I don't see where this may be added to the record, am I missing it or does it need to be added?
Or do these records end up in the unaffected_package_handles table somehow?
Contributor
Author
There was a problem hiding this comment.
https://github.com/anchore/vunnel/pull/1023/changes#diff-cc0e41fc1b8dbbc321e0b3fad2934e3d89f124428fa78675df7502f3357c887cR335 adds the fix 0 to the record. These are handled the same way as other Alpine NAKs, just from a different source.
Contributor
There was a problem hiding this comment.
Ah, got it -- it's a fix version of 0 which implies "vulnerable constraint" < 0 👍
kzantow
approved these changes
Jan 29, 2026
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.
Alpine Linux has a separate repo where they reject CVEs that don't merit
further investigation or being tagged in their build system, such as
CVEs that are disputed upstream, or affect a package that coincidentally
has the same name as an APK. Previously, these extra rejections were
missed by vunnel, resulting in false positives in Grype. Therefore, pull
in these packages and emit NAKs for them for every Alpine version.
Fixes #1012