-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathsecurity-scan.hcl
More file actions
131 lines (120 loc) · 2.94 KB
/
security-scan.hcl
File metadata and controls
131 lines (120 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
# These scan results are run as part of CRT workflows.
# Un-triaged results will block release. See `security-scanner` docs for more
# information on how to add `triage` config to unblock releases for specific results.
# In most cases, we should not need to disable the entire scanner to unblock a release.
# To run manually, install scanner and then from the repository root run
# `SECURITY_SCANNER_CONFIG_FILE=.release/security-scan.hcl scan ...`
# To scan a local container, add `local_daemon = true` to the `container` block below.
# See `security-scanner` docs or run with `--help` for scan target syntax.
container {
dependencies = true
alpine_security = true
osv = true
go_modules = true
secrets {
all = true
}
triage {
suppress {
vulnerabilities = [
"CVE-2000-3712",
"CVE-2006-1174",
"CVE-2010-5298",
"CVE-2014-3505",
"CVE-2014-3513",
"CVE-2014-3570",
"CVE-2014-8176",
"CVE-2015-0209",
"CVE-2015-3194",
"CVE-2015-3197",
"CVE-2015-4000",
"CVE-2015-7575",
"CVE-2016-0799",
"CVE-2016-2177",
"CVE-2016-7056",
"CVE-2016-8610",
"CVE-2017-3735",
"CVE-2017-3736",
"CVE-2018-0734",
"CVE-2018-0735",
"CVE-2019-1547",
"CVE-2019-1551",
"CVE-2020-1971",
"CVE-2021-23840",
"CVE-2021-3449",
"CVE-2021-3712",
"CVE-2021-43618",
"CVE-2022-0778",
"CVE-2022-1292",
"CVE-2022-3358",
"CVE-2022-3602",
"CVE-2022-4203",
"CVE-2022-4304",
"CVE-2023-0286",
"CVE-2023-0464",
"CVE-2023-2975",
"CVE-2023-3446",
"CVE-2023-4641",
"CVE-2023-5363",
"CVE-2024-12797",
"CVE-2024-2511",
"CVE-2024-4067",
"CVE-2024-40896",
"CVE-2024-52533",
"CVE-2024-5535",
"CVE-2024-56433",
"CVE-2024-57970",
"CVE-2024-6119",
"CVE-2025-11187",
"CVE-2025-13601",
"CVE-2025-14104",
"CVE-2025-15281",
"CVE-2025-15467",
"CVE-2025-25724",
"CVE-2025-31115",
"CVE-2025-32414",
"CVE-2025-3277",
"CVE-2025-3576",
"CVE-2025-4598",
"CVE-2025-5702",
"CVE-2025-5914",
"CVE-2025-6021",
"CVE-2025-6395",
"CVE-2025-68973",
"CVE-2025-6965",
"CVE-2025-8058",
"CVE-2025-9086",
"CVE-2025-9230",
"CVE-2025-9714",
"CVE-2026-0861",
"CVE-2026-24882"
]
}
}
}
binary {
go_modules = true
osv = true
secrets {
all = true
}
triage {
suppress {
vulnerabilities = []
}
}
}
repository {
go_modules = true
osv = true
triage {
suppress {
vulnerabilities = [
"GO-2022-0635",
"GO-2022-0646"
]
}
}
}