File tree Expand file tree Collapse file tree 1 file changed +19
-9
lines changed Expand file tree Collapse file tree 1 file changed +19
-9
lines changed Original file line number Diff line number Diff line change 2
2
# SPDX-License-Identifier: BUSL-1.1
3
3
4
4
binary {
5
- secrets = false
6
- go_modules = false
7
- osv = true
8
- oss_index = true
9
- nvd = false
5
+ go_stdlib = true // Scan the Go standard library used to build the binary.
6
+ go_modules = true // Scan the Go modules included in the binary.
7
+ osv = true // Use the OSV vulnerability database.
8
+ oss_index = true // And use OSS Index vulnerability database.
9
+
10
+ triage {
11
+ suppress {
12
+ vulnerabilities = [
13
+ " GO-2022-0635" ,
// github.com/aws/[email protected]
14
+ ]
15
+ }
16
+ }
10
17
}
11
18
12
19
container {
13
- dependencies = true
14
- alpine_security = true
15
- secrets = true
20
+ dependencies = true // Scan any installed packages for vulnerabilities.
21
+ osv = true // Use the OSV vulnerability database.
22
+
23
+ secrets {
24
+ all = true
25
+ }
16
26
17
27
triage {
18
28
suppress {
19
29
vulnerabilities = [
20
- // We can't do anything about these two CVE's until a new Alpine container with busybox 1.38 is available.
30
+ // We can't do anything about these two CVEs until a new Alpine container with busybox 1.38 is available.
21
31
" CVE-2025-46394" ,
22
32
" CVE-2024-58251" ,
23
33
" GO-2022-0635" ,
// github.com/aws/[email protected]
You can’t perform that action at this time.
0 commit comments