-
Notifications
You must be signed in to change notification settings - Fork 575
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
Add purls in sarif report #2254
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: George Liontos <[email protected]>
Signed-off-by: George Liontos <[email protected]>
grype/presenter/sarif/presenter.go
Outdated
@@ -122,6 +122,7 @@ func (pres *Presenter) sarifRules() (out []*sarif.ReportingDescriptor) { | |||
// For GitHub reportingDescriptor object: | |||
// https://docs.github.com/en/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning#reportingdescriptor-object | |||
"security-severity": pres.securitySeverityValue(m), | |||
"purls": [...]string{m.Package.PURL}, |
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.
Thanks for the updates here @GeorgeLS. We should probably only add this field if we have a non-empty PURL instead of creating arrays of empty strings, like this results in -- in other words: I think the tests would be reverted because we shouldn't see "purls": [""],
, and we should add something that validates when a PURL is set, it is output as expected.
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 you are right. I will change asap. 🙏
Signed-off-by: George Liontos <[email protected]>
Hello there!
Seems like that
purls
are missing from Sarif reports ofgrype
.I attempted adding those in the Sarif report. In order to do that I had to copy the
deriveBomRef
function that is being used in CycloneDx as well.I tried making
deriveBomRef
a member function ofPackage
type in order to avoid duplication but I couldn't build the project locally.Thanks,
George