Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plugin-keychain-vault): fix CVE-2024-0553 in vault server image
1. The solution here was to migrate the image from Debian to Ubuntu because it seems to not have the same vulnerabilities as the lastest stable Debian image does, so the change itself is to move to Ubuntu 24.04 LTS. 2. Also upgraded the Rust toolchain to the current latest which mandated a couple of small code changes that are also added in this commit. The original security report from Trivy that we've discoverd on the CI: ┌─────────────┬───────────────┬──────────┬───────────────────┐ │ Library │ Vulnerability │ Severity │ Installed Version │ ├─────────────┼───────────────┼──────────┼───────────────────┤ │ libgnutls30 │ CVE-2024-0553 │ HIGH │ 3.6.7-4+deb10u11 │ │ │ │ │ │ └─────────────┴───────────────┴──────────┴───────────────────┘ ... ┬──────────────────┬───────────────────────────────────────────┐ │ Fixed Version │ Title │ ┼──────────────────┼───────────────────────────────────────────┤ │ 3.6.7-4+deb10u12 │ gnutls: incomplete fix for CVE-2023-5981 │ │ │ https://avd.aquasec.com/nvd/cve-2024-0553 │ ┴──────────────────┴───────────────────────────────────────────┘ Signed-off-by: Peter Somogyvari <[email protected]>
- Loading branch information
1eacf7e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold
0.05
.cmd-api-server_HTTP_GET_getOpenApiSpecV1
588
ops/sec (±1.61%
)598
ops/sec (±1.68%
)1.02
cmd-api-server_gRPC_GetOpenApiSpecV1
365
ops/sec (±1.23%
)370
ops/sec (±1.31%
)1.01
This comment was automatically generated by workflow using github-action-benchmark.
CC: @petermetz