Skip to content

Commit

Permalink
chore: suppress jackson-databind (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
natedanner authored Oct 17, 2022
1 parent 4923215 commit b944182
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ configure<nebula.plugin.release.git.base.ReleasePluginExtension> {

dependencyCheck {
analyzers.assemblyEnabled = false
suppressionFile = "suppressions.xml"
failBuildOnCVSS = 9.0F
}

Expand Down
12 changes: 12 additions & 0 deletions suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<suppress until="2022-11-17Z">
<notes><![CDATA[
file name: jackson-databind-2.13.4.jar
sev:HIGH
In FasterXML jackson-databind before 2.14.0-rc1, resource exhaustion can occur because of a lack of a check in primitive value deserializers to avoid deep wrapper array nesting, when the UNWRAP_SINGLE_VALUE_ARRAYS feature is enabled.
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\[email protected].*$</packageUrl>
<cve>CVE-2022-42003</cve>
</suppress>
</suppressions>

0 comments on commit b944182

Please sign in to comment.