-
Notifications
You must be signed in to change notification settings - Fork 16
Fix NPE #437
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 NPE #437
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +0,0 @@ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -80,6 +80,7 @@ | |
| ]]></notes> | ||
| <packageUrl regex="true">^pkg:maven/org\.json/json@.*$</packageUrl> | ||
| <cve>CVE-2022-45688</cve> | ||
| <cve>CVE-2023-5072</cve> | ||
| </suppress> | ||
| <suppress> | ||
| <notes><![CDATA[ | ||
|
|
@@ -101,4 +102,8 @@ | |
| <packageUrl regex="true">^pkg:maven/io\.netty/netty.*@.*$</packageUrl> | ||
| <vulnerabilityName>CVE-2023-4586</vulnerabilityName> | ||
| </suppress> | ||
| <suppress until="2023-12-30Z"> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please fix this rather than suppressing
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was suppressed because there is no mitigation currently available.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 4586 is the suppression above this one. You're correct that one can be suppressed as described in https://github.com/hypertrace/hypertrace-bom/blob/6e9d9aa4f9a9631c281df4b4c8916490d5cd39d9/owasp-suppressions.xml#L29-L40 The issue here is the newly added one, 44487 - that is the HTTP2 Rapid RST vuln and should not be suppressed. Netty |
||
| <packageUrl regex="true">^pkg:maven/io\.netty/netty.*@.*$</packageUrl> | ||
| <vulnerabilityName>CVE-2023-44487</vulnerabilityName> | ||
| </suppress> | ||
| </suppressions> | ||
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.
Now that I look a bit more closely, this one (and its sibling 45688 above it) is also incorrectly suppressed. Both have released. fixes that should be used. They historically had a FP on older versions of the dependency check plugin, but those were resolved last month. Try removing it, upgrading the dep check plugin to latest and rerun.