Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,25 @@ buildscript {
useVersion("3.6.1")
because("Dependabot alert #4: plexus-utils directory traversal (GHSA-6fmv-xxpf-w3cw)")
}
/*
* https://github.com/hotelengine/protoc-utils/security/dependabot/9
* … through https://github.com/hotelengine/protoc-utils/security/dependabot/15
* Seven jackson-databind advisories — PolymorphicTypeValidator bypasses
* (CVE-2026-54513, CVE-2026-54512), @JsonView / @JsonIgnore /
* @JsonIgnoreProperties bypasses (CVE-2026-54517, CVE-2026-54516,
* CVE-2026-54515, CVE-2026-54518), and InetSocketAddress eager-DNS SSRF
* (CVE-2026-54514). Transitive of the CycloneDX and JReleaser plugins.
* 2.22.0 is the first published release exceeding every vulnerable range —
* the named 2.21.5 fix (CVE-2026-54515) was never released to Maven Central.
* jackson-core is bumped in lock-step to avoid databind/core skew;
* jackson-annotations tracks its own 2.22 line via the BOM.
*/
if (requested.group == "com.fasterxml.jackson.core" &&
(requested.name == "jackson-databind" || requested.name == "jackson-core")
) {
useVersion("2.22.0")
because("Dependabot alerts #9-#15: jackson-databind PTV/@JsonView/@JsonIgnore bypasses and SSRF (CVE-2026-54512…54518)")
}
}
}
}
Expand Down
Loading