This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Analyses the CVE report, upgrades vulnerable dependencies and suppres…
…ses false-positives (#340) * Analyses the CVE report and suppresses false-positives Changes: * Bumps Jackson to 2.13.3 (CVE-2020-36518) * Bumps Spring to 5.3.20 - not necessarily related to CVE, because we will ignore CVE-2016-1000027, CVE-2020-29582 and CVE-2022-24329 (see cve-supressions.xml) * Makes build failure stricter, now triggering on CVE score 5 and above (only works if specified as number, not as string!) * runs cve report only on root project
- Loading branch information
Showing
5 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
<suppress> | ||
<notes><![CDATA[ | ||
This vulnerablility is not going to be fixed by Spring. Instead, it's an inherent insecurity of | ||
Java Serialization, and the advice is not to rely on Java Serialization for untrusted data. | ||
]]></notes> | ||
<cve>CVE-2016-1000027</cve> | ||
</suppress> | ||
<suppress> | ||
<notes><![CDATA[ | ||
Kotlin is only included as transitive dependency from okhttp, therefore both CVEs don't apply. | ||
]]></notes> | ||
<packageUrl regex="true">^pkg:maven/org\.jetbrains\.kotlin/kotlin\-.*$</packageUrl> | ||
<cpe>cpe:/a:jetbrains:kotlin</cpe> | ||
<cve>CVE-2020-29582</cve> | ||
<cve>CVE-2022-24329</cve> | ||
</suppress> | ||
</suppressions> |
This file contains 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