Suppression by CPE in 5.2.2 not working?
See original GitHub issueSince the NVD XML feeds were shutoff, we upgraded our plugin to 5.2.2. We are in the process of changing our suppression file from 1.1 to 1.3 XSD. When the plugin fails a build, we open the report and copy the CPE suppression(s), add it to our suppression file and re-build. Suppression by CPE for jackson-databind doesn’t seem to work, the build still fails.
<suppress>
<notes><![CDATA[file name: jackson-databind-2.9.10.jar]]></notes>
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$</packageUrl>
<cpe>cpe:/a:fasterxml:jackson</cpe>
</suppress>
cpe:/a:fasterxml:jackson-databind
doesn’t work, either.
[ERROR] One or more dependencies were identified with vulnerabilities that have a CVSS score greater than or equal to '6.0':
[ERROR]
[ERROR] jackson-databind-2.9.8.jar: CVE-2019-14379, CVE-2019-14439, CVE-2019-12086
If we add an entry for each individual jackson-databind CVE (9 of them), then the build passes.
Is this intended? Do I not understand how this is supposed to work?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Dependency-Check Report - GitHub Pages
NOTE: Sun disputes this issue, stating "The report makes references to source code and files that do not exist in the mentioned products."...
Read more >Release Notes - AudioCodes Media Gateways
Silence suppression is not displayed as "On" in any packet capture where it is used. Applicable Products: Gateway.
Read more >User's Manual & Installation Guide for: WiN52XX/WiN51XX Series ...
We have checked the contents of this manual against the hardware and software described. However, deviations from the description.
Read more >Murata Manufacturing Co., Ltd.
Murata Official product details information. Here are the latest datasheet, appearance & shape, specifications, features, applications, product data of ...
Read more >RFC 7594 - A Framework for Large-Scale Measurement of ...
Such a scale presents unique problems in coordination, execution, and measurement result collection. Several use cases have been proposed for large-scale ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I faced the exact similar issue. Rather than adding each CVE to suppression.xml , I bumped the jackson version to 2.10.0 . The build passed. But agree CPE suppression should work. Its annoying to add each individual CVEs.
Great, thanks. Missed that
<cve>
can now be used multiple times.