vault/.release/security-scan.hcl
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

38 lines
956 B
HCL

# Copyright IBM Corp. 2016, 2025
# SPDX-License-Identifier: BUSL-1.1
binary {
go_stdlib = true // Scan the Go standard library used to build the binary.
go_modules = true // Scan the Go modules included in the binary.
osv = true // Use the OSV vulnerability database.
oss_index = true // And use OSS Index vulnerability database.
triage {
suppress {
vulnerabilities = [
"GO-2022-0635", // github.com/aws/aws-sdk-go@v1.x
]
}
}
}
container {
dependencies = true // Scan any installed packages for vulnerabilities.
osv = true // Use the OSV vulnerability database.
secrets {
all = true
}
triage {
suppress {
vulnerabilities = [
// We can't do anything about these two CVEs until a new Alpine container with busybox 1.38 is available.
"CVE-2025-46394",
"CVE-2024-58251",
"GO-2022-0635", // github.com/aws/aws-sdk-go@v1.x
]
}
}
}