This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
284 lines (252 loc) · 9.88 KB
/
image-security-scan.yml
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
name: Trivy & Prisma Scan
on:
pull_request:
branches:
- 'main'
- 'release/[0-9]+.[0-9]+'
push:
branches:
- 'main'
- 'release/[0-9]+.[0-9]+'
schedule:
- cron: '30 2 * * 1-5'
env:
CODE_OWNERS: '<@U047W9ULVQ9>'
jobs:
setup_env:
uses: ./.github/workflows/setup-environment.yml
build:
name: Build
needs: setup_env
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build images with Gradle Wrapper
run: |
./gradlew -Pversion=${{ needs.setup_env.outputs.component_version }} --init-script init.gradle jibBuildTar -Djib.to.image=image:latest -Djib.outputPaths.tar=/tmp/image.tar
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: image
path: /tmp/image.tar
compression-level: 0
trivy_scan:
name: Trivy Scan
needs: build
runs-on: ubuntu-latest
outputs:
job: ${{ steps.publish.outputs.job }}
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: image
path: /tmp
- name: Load image
run: docker load -i /tmp/image.tar
- name: Scan all the vulnerabilities and generate JSON report
if: always()
uses: aquasecurity/trivy-action@0.22.0
with:
image-ref: image:latest
format: 'json'
vuln-type: 'os,library'
output: 'trivy-results.json'
- name: Save vulnerabilities report in tabular format
if: always()
uses: aquasecurity/trivy-action@0.22.0
with:
image-ref: trivy-results.json
scan-type: convert
vuln-type: ''
format: 'table'
output: 'trivy-results.txt'
- name: Display vulnerabilities report
if: always()
uses: aquasecurity/trivy-action@0.22.0
with:
image-ref: trivy-results.json
scan-type: convert
vuln-type: ''
- name: Fail on high and critical vulnerabilities
if: always()
uses: aquasecurity/trivy-action@0.22.0
with:
image-ref: trivy-results.json
scan-type: convert
exit-code: '1'
vuln-type: ''
severity: 'HIGH,CRITICAL'
- name: Publish scan report
if: always()
id: publish
run: |
api_url="https://api.github.com/repos/h2oai/${{ github.event.repository.name }}/actions/runs/${{ github.run_id }}/jobs"
job_id=$(curl -s -H "Authorization: token ${{ github.token }}" "$api_url" | jq -r '.jobs[] | select(.name == "Trivy Scan") | .id')
job_url_suffix="/actions/runs/${{ github.run_id }}/job/$job_id#step:7:17"
echo "job=${job_url_suffix}" >> $GITHUB_OUTPUT
- name: Upload report for notifications
if: always()
uses: actions/upload-artifact@v4
with:
name: trivy-results
path: trivy-results.txt
prisma_scan:
name: Prisma Scan
needs: build
runs-on: ubuntu-latest
outputs:
job: ${{ steps.publish.outputs.job }}
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: image
path: /tmp
- name: Load image
run: docker load -i /tmp/image.tar
- name: VPN Connection
uses: Twingate/github-action@V1.1
with:
service-key: ${{ secrets.TWINGATE_SERVICE_KEY }}
- name: Prisma Cloud image scan
uses: PaloAltoNetworks/prisma-cloud-scan@v1.6.7
with:
pcc_console_url: http://mr-0xz1.h2o.local:8081/
pcc_user: ${{ secrets.PCC_USER }}
pcc_pass: ${{ secrets.PCC_PASS }}
image_name: image:latest
results_file: pcc_scan_results.json
- name: Upload report for notifications
uses: actions/upload-artifact@v4
with:
name: prisma-results
path: pcc_scan_results.json
- name: Verify report results
run: |
high=$(jq '.results[0].vulnerabilityDistribution.high' pcc_scan_results.json)
critical=$(jq '.results[0].vulnerabilityDistribution.critical' pcc_scan_results.json)
if [[ $high -gt 0 || $critical -gt 0 ]]; then
exit 1
fi
echo "No high or critical vulnerabilities found."
- name: Publish scan report
if: always()
id: publish
run: |
api_url="https://api.github.com/repos/h2oai/${{ github.event.repository.name }}/actions/runs/${{ github.run_id }}/jobs"
job_id=$(curl -s -H "Authorization: token ${{ github.token }}" "$api_url" | jq -r '.jobs[] | select(.name == "Prisma Scan") | .id')
job_url_suffix="/actions/runs/${{ github.run_id }}/job/$job_id#step:5:18"
echo "job=${job_url_suffix}" >> $GITHUB_OUTPUT
notify:
name: Notify
needs:
- trivy_scan
- prisma_scan
if: failure()
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
pattern: '*-results'
merge-multiple: true
- name: Summarize the criticality count
run: |
trivy_total=0
trivy_low=0
trivy_medium=0
trivy_high=0
trivy_critical=0
while IFS= read -r line; do
if [[ $line =~ Total:\ ([0-9]+)\ \(UNKNOWN:\ [0-9]+,\ LOW:\ ([0-9]+),\ MEDIUM:\ ([0-9]+),\ HIGH:\ ([0-9]+),\ CRITICAL:\ ([0-9]+)\) ]]; then
trivy_total=$((trivy_total + ${BASH_REMATCH[1]}))
trivy_low=$((trivy_low + ${BASH_REMATCH[2]}))
trivy_medium=$((trivy_medium + ${BASH_REMATCH[3]}))
trivy_high=$((trivy_high + ${BASH_REMATCH[4]}))
trivy_critical=$((trivy_critical + ${BASH_REMATCH[5]}))
fi
done < "trivy-results.txt"
echo "TRIVY_SUMMARY='Total: $trivy_total (LOW: $trivy_low, MEDIUM: $trivy_medium, HIGH: $trivy_high, CRITICAL: $trivy_critical)'" >> $GITHUB_ENV
prisma_total=$(jq '.results[0].vulnerabilityDistribution.total' pcc_scan_results.json)
prisma_low=$(jq '.results[0].vulnerabilityDistribution.low' pcc_scan_results.json)
prisma_medium=$(jq '.results[0].vulnerabilityDistribution.medium' pcc_scan_results.json)
prisma_high=$(jq '.results[0].vulnerabilityDistribution.high' pcc_scan_results.json)
prisma_critical=$(jq '.results[0].vulnerabilityDistribution.critical' pcc_scan_results.json)
echo "PRISMA_SUMMARY='Total: $prisma_total (LOW: $prisma_low, MEDIUM: $prisma_medium, HIGH: $prisma_high, CRITICAL: $prisma_critical)'" >> $GITHUB_ENV
- name: Comment the results to the PR
if: ${{ github.event_name == 'pull_request' }}
uses: actions/github-script@v6
with:
github-token: ${{ github.token }}
script: |
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
})
const botComment = comments.find(comment => {
return comment.user.type === 'Bot' && comment.body.includes('#### Vulnerabilities have been detected')
})
const output = `#### Vulnerabilities have been detected.
\`\`\`
Trivy: ${process.env.TRIVY_SUMMARY}
Prisma: ${process.env.PRISMA_SUMMARY}
\`\`\`
@${{ github.actor }}, please review the following reports: [**Trivy**](https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.trivy_scan.outputs.job }}), [**Prisma**](https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.prisma_scan.outputs.job }})`;
if (botComment) {
github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: botComment.id,
body: output
})
} else {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
})
}
- name: Send Notification to Slack
if: ${{ startsWith(github.ref, 'refs/heads/main') || startsWith(github.ref, 'refs/heads/release/') }}
uses: slackapi/slack-github-action@v1.26.0
with:
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
payload: |
{
"text": "Trivy Vulnerability Report",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*DAI Runtimes* \n_Vulnerabilities have been detected on the `${{ github.ref_name }}` branch_"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "> *Trivy :: `${{ env.TRIVY_SUMMARY }}`*\n> *Prisma :: `${{ env.PRISMA_SUMMARY }}`*"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "${{ env.CODE_OWNERS }}, please review the following reports: <https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.trivy_scan.outputs.job }}|_Trivy_>, <https://github.com/h2oai/${{ github.event.repository.name }}${{ needs.prisma_scan.outputs.job }}|_Prisma_>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.H2O_OPS_SLACK_BOT_TOKEN }}