forked from NVIDIA/aicr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.grype.yaml
More file actions
54 lines (51 loc) · 2.52 KB
/
Copy path.grype.yaml
File metadata and controls
54 lines (51 loc) · 2.52 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
# Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
exclude:
- '**/.terraform/**'
- '**/node_modules/**'
# Exclude generated local binaries and release output from source scans.
- './bin/**'
- './aicr'
- './aicrd'
- './dist/**'
# Coding-agent git worktrees: full checkouts at older commits whose stale
# go.mod files resurface already-fixed module findings. Local-only (CI
# scans a fresh checkout, so this path never exists there).
- './.claude/worktrees/**'
# CVE suppressions for the aiperf-bench image are managed in
# `.openvex.json` and consumed by scan-action via the `vex:` input in
# `.github/workflows/vuln-scan-images.yaml`. The OpenVEX document
# carries the structured status + justification + per-CVE
# reachability evidence and is self-sufficient for suppression.
# The image builds on python:3.13-slim (Debian trixie) and ships on
# nvcr.io/nvidia/distroless/python:3.13-v4.0.8, so suppressed findings
# come from CPython, pillow, and Debian libraries in that runtime base.
#
# When scanning the aiperf-bench image locally, pass `--vex
# .openvex.json` alongside `-c .grype.yaml`. Scans of the AICR Go
# source tree (`make scan` → `grype dir:.`) don't need VEX since the
# suppressed CVEs are all in Python / glibc / libcap2 / ncurses /
# pillow / libexpat1 and never surface against Go source.
# Reviewed: 2026-08-03
# Go-source suppressions (accepted risk, not "not affected").
#
# Unlike the aiperf-bench image CVEs above, these Go-module findings are
# REACHABLE in AICR source and are suppressed only because no fixed
# release exists upstream yet. Each entry MUST record the reachable path,
# the no-fix status, the target fixed version, and a review date. Drop the
# entry the moment a fixed version is vendored — do not let it linger.
# Currently empty. Last entry (GHSA-fxhp-mv3v-67qp, oras-go hardlink
# traversal) was dropped 2026-07-22 when the upstream fix shipped in
# oras.land/oras-go/v2 v2.6.2 (vendored; advisory range is <= 2.6.1).
ignore: []