forked from zalando/logbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from SmartBear/merge-from-base
Merge from base
- Loading branch information
Showing
52 changed files
with
2,577 additions
and
379 deletions.
There are no files selected for viewing
Empty file.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,44 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
<suppress> | ||
<cve>CVE-2018-1258</cve> | ||
<!-- Version clause doesn't match netty --> | ||
<cve>CVE-2019-10797</cve> | ||
<cve>CVE-2019-12814</cve> | ||
<cve>CVE-2020-5421</cve> | ||
<cve>CVE-2020-7712</cve> | ||
<cve>CVE-2020-10663</cve> | ||
<cve>CVE-2020-15824</cve> | ||
</suppress> | ||
|
||
<!-- | ||
False positive; matches old netty version. | ||
See https://github.com/jeremylong/DependencyCheck/issues/3830 | ||
--> | ||
<suppress> | ||
<!-- language=regex --> | ||
<packageUrl regex="true">pkg:maven\/io\.netty\.incubator\/netty-incubator-codec-(classes|native)-quic@0\.0\.24\.Final</packageUrl> | ||
<cve>CVE-2014-3488</cve> | ||
<cve>CVE-2015-2156</cve> | ||
<cve>CVE-2019-16869</cve> | ||
<cve>CVE-2019-20444</cve> | ||
<cve>CVE-2019-20445</cve> | ||
<cve>CVE-2021-37136</cve> | ||
<cve>CVE-2021-37137</cve> | ||
<cve>CVE-2021-21290</cve> | ||
<cve>CVE-2021-21295</cve> | ||
<cve>CVE-2021-21409</cve> | ||
<cve>CVE-2021-43797</cve> | ||
</suppress> | ||
|
||
<suppress> | ||
<!-- Related to SecurityContext, which Logbook never uses. --> | ||
<cve>CVE-2021-22112</cve> | ||
<cve>CVE-2021-22118</cve> | ||
</suppress> | ||
|
||
<suppress> | ||
<packageUrl regex="true">^pkg:maven/org\.springframework\.security/spring-security-core@4\..*\.RELEASE$</packageUrl> | ||
<vulnerabilityName>BREACH attack possible in CSRF tokens</vulnerabilityName> | ||
</suppress> | ||
<suppress> | ||
<cve>CVE-2021-37533</cve> | ||
<!-- Suppressing until the migration to Spring Framework 6--> | ||
<cve>CVE-2016-1000027</cve> | ||
<!-- False positive --> | ||
<cve>CVE-2020-5408</cve> | ||
<!-- Okhttp2 module uses the latest version of okhttp. The vulnerability is in OkHostnameVerifier.java, which is not used in this library --> | ||
<cve>CVE-2021-0341</cve> | ||
<!-- ktor requires a major upgrade. Suppressing until then --> | ||
<cve>CVE-2021-4277</cve> | ||
<!-- so far jackson-core and json-path don't have bugfix releases yet for that cve --> | ||
<cve>CVE-2022-45688</cve> | ||
</suppress> | ||
<suppress> | ||
<notes><![CDATA[ | ||
suppress CVE-2022-45688 only to pkg:maven/org.json/json | ||
]]></notes> | ||
<packageUrl regex="true">^(?!pkg:maven/org\.json/json@).+$</packageUrl> | ||
<!-- Suppressing until https://github.com/jeremylong/DependencyCheck/issues/5502 has been solved --> | ||
<cve>CVE-2022-45688</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
Oops, something went wrong.