-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy path.openvex.json
More file actions
1285 lines (1285 loc) · 107 KB
/
Copy path.openvex.json
File metadata and controls
1285 lines (1285 loc) · 107 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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@context": "https://openvex.dev/ns/v0.2.0",
"@id": "https://github.com/NVIDIA/aicr/.openvex.json",
"author": "NVIDIA AICR maintainers",
"role": "document creator",
"timestamp": "2026-07-13T00:00:00Z",
"version": 7,
"tooling": "manual; aiperf-bench statements verified against aiperf v0.7.0 source; aicr statement reachability verified by source inspection (CGO-free ko build, no libssl linkage); aicr-gate statements suppress CVEs in the embedded upstream kyverno/chainsaw binary (affected packages identified via vuln.go.dev), justified by chainsaw's ephemeral cluster-internal readiness-gate usage",
"statements": [
{
"vulnerability": {
"name": "CVE-2026-6100",
"description": "cpython use-after-free in lzma.LZMADecompressor / bz2.BZ2Decompressor / gzip.GzipFile when a decompressor instance is reused after a MemoryError (CWE-416, Critical)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "aiperf v0.7.0 source contains zero imports or references to the gzip, lzma, or bz2 stdlib modules (verified with `grep -rn -E '^(import|from) (gzip|lzma|bz2)'`). The vulnerable decompressor classes are never instantiated. The vulnerability requires not just calling these classes but also reusing the same instance after a MemoryError; one-shot helpers (lzma.decompress(), bz2.decompress(), gzip.decompress(), zlib.decompress()) are not affected per the upstream Python advisory."
},
{
"vulnerability": {
"name": "CVE-2026-3298",
"description": "cpython out-of-bounds write in asyncio.ProactorEventLoop.sock_recvfrom_into() on Windows (CWE-787, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_present",
"impact_statement": "The vulnerable class is asyncio.ProactorEventLoop, defined in asyncio.windows_events and conditionally compiled out of non-Windows CPython builds. The aiperf-bench image is based on python:3.13-slim (Debian trixie, Linux/glibc); the ProactorEventLoop class is not present in the shipped CPython binary."
},
{
"vulnerability": {
"name": "CVE-2026-4786",
"description": "cpython command injection in webbrowser.open() via crafted URL (CWE-77, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "aiperf imports webbrowser exclusively in aiperf/plot/dashboard/server.py and invokes webbrowser.open(url) only when launching the local plot dashboard server. That code path is reached from the `aiperf plot` subcommand. The aiperf-bench image's benchmark workload runs `aiperf profile` (validators/performance/inference_perf_constraint.go), which never imports the plot or dashboard modules. Additionally, the URL passed to webbrowser.open is the internally-constructed dashboard server URL, not attacker-supplied."
},
{
"vulnerability": {
"name": "CVE-2026-5450",
"description": "glibc heap overflow in _vfscanf_internal via the %mc scanf format specifier (CWE-787, Critical)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "Trigger requires calling glibc's scanf family with the %mc (malloc'd character match) format specifier. CPython does not expose the C scanf family to Python code. aiperf's declared runtime dependencies (aiohttp, cyclopts, fastapi, jinja2, jmespath, kaleido, matplotlib, msgspec, numpy, pillow, transformers, uvicorn, uvloop, zstandard) parse user input via Python-native parsers, not scanf. Upstream advisory notes %mc is not used by major Linux distros."
},
{
"vulnerability": {
"name": "CVE-2026-4437",
"description": "glibc out-of-bounds read in gethostbyaddr / gethostbyaddr_r legacy POSIX reverse DNS lookup (CWE-125, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "Upstream advisory explicitly states getaddrinfo() is not affected. aiperf's HTTP client is aiohttp, which uses asyncio's resolver (getaddrinfo) for name resolution; aiperf source contains no gethostbyaddr references. The legacy gethostbyaddr() and gethostbyaddr_r() reverse-DNS functions are not on aiperf-bench's execution path."
},
{
"vulnerability": {
"name": "CVE-2026-4046",
"description": "glibc iconv() assertion failure DoS when converting IBM1390 / IBM1399 EBCDIC variant character sets (CWE-617, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "Trigger requires iconv() conversion specifically to/from IBM1390 or IBM1399. aiperf transports UTF-8 JSON over HTTP between the benchmark and the inference endpoint; Python's defaults are UTF-8 throughout. No code in aiperf or its declared dependencies references IBM1390/IBM1399, codepage 1390, or codepage 1399."
},
{
"vulnerability": {
"name": "CVE-2026-5435",
"description": "glibc out-of-bounds write in the deprecated DNS resolver-printing functions ns_printrrf / ns_printrr / fp_nquery when processing TSIG records (CWE-787, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The vulnerable functions are deprecated libresolv internals (ns_printrrf, ns_printrr, fp_nquery) used for formatting DNS records as text. CPython does not expose these symbols; aiperf and its declared dependencies do not link libresolv or print DNS packets. The benchmark performs only outbound HTTP and name resolution via getaddrinfo."
},
{
"vulnerability": {
"name": "CVE-2026-5928",
"description": "glibc buffer under-read in ungetwc / _IO_wdefault_pbackfail on wide-char streams using non-Unicode encodings with byte/multibyte overlaps (CWE-127, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "Upstream advisory: the spurious-match condition that triggers the under-read 'is not possible in the standard Unicode character sets.' aiperf runs with Python's default UTF-8 locale; no LC_ALL / LANG override pins the process to a non-Unicode wide-char encoding. The trigger condition cannot occur."
},
{
"vulnerability": {
"name": "CVE-2026-4878",
"description": "libcap TOCTOU race in cap_set_file() allowing local privilege escalation when an attacker controls the target's parent directory (CWE-367, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aiperf-bench image drops root after pip install and runs as the non-root user `aiperf` (uid 10001, no shell, no home write privileges; see validators/performance/aiperf-bench.Dockerfile). The workload never calls cap_set_file or any other libcap API; libcap2 is present only as a transitive dependency of base-image utilities. The benchmark process has no capabilities to set and no parent-directory-control vector."
},
{
"vulnerability": {
"name": "CVE-2025-69720",
"description": "ncurses stack-based buffer overflow in analyze_string() in progs/infocmp.c, triggered by `infocmp -i` on crafted terminfo input (CWE-121, High)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The vulnerable analyze_string() function lives in the infocmp utility binary (ncurses-bin package), not in the shared libraries (libncursesw6, libtinfo6). Trigger requires executing `infocmp -i <crafted-terminfo>`. The aiperf-bench image runs `aiperf profile` and never invokes infocmp; no shell wrapper or aiperf subcommand exec's it."
},
{
"vulnerability": {
"name": "GHSA-whj4-6x5x-4v2j",
"description": "pillow FITS image format decoder GZIP decompression bomb leading to unbounded memory consumption (CVE-2026-40192, CWE-400, High). Fixed in pillow 12.2.0; pinned by aiperf to 12.1.x."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "AICR invokes aiperf-bench as `aiperf profile <text-LLM> --url <endpoint>` against text-only models (Qwen/Qwen3-0.6B per validators/performance/inference_perf_constraint.go) with synthetic text tokens (aiperfInputTokensMean=128, aiperfOutputTokensMean=128). The benchmark transports only JSON over HTTP and never loads image files. aiperf's image-loading code paths in dataset_manager.py / generator/image.py / utils.py are gated to multimodal benchmark configurations that the AICR validator does not exercise. Even when image mode is enabled, aiperf's ImageFormat enum (aiperf/common/enums/enums.py) restricts inputs to PNG/JPEG; FITS is not in the allowlist."
},
{
"vulnerability": {
"name": "GHSA-pwv6-vv43-88gr",
"description": "pillow PSD image codec integer overflow leading to out-of-bounds write in src/decode.c / src/encode.c (CVE-2026-25990, CWE-787, High). Fixed in pillow 12.2.0; pinned by aiperf to 12.1.x."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "Same reachability argument as GHSA-whj4-6x5x-4v2j: the AICR text-LLM benchmark workload never enters pillow's image-loading paths, and aiperf's ImageFormat allowlist restricts inputs to PNG/JPEG. PSD is not in the allowlist."
},
{
"vulnerability": {
"name": "CVE-2026-7210",
"description": "cpython xml.parsers.expat and xml.etree.ElementTree use insufficient entropy for Expat hash-flooding protection, allowing a crafted XML document to trigger hash flooding (GHSA-wxv8-w48j-r2f4, CWE-331, Critical CVSS 9.8). Fix requires libexpat 2.8.0+ AND a CPython patch; as of 2026-06-06 the patch is merged only to cpython main/3.15 \u2014 no 3.13.x backport exists (cpython PR #149646 for 3.14 still open, no 3.13 PR filed)."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The attack requires parsing a crafted (attacker-controlled) XML document through xml.parsers.expat or xml.etree.ElementTree to trigger hash flooding. AICR invokes aiperf-bench exclusively as `aiperf profile <text-LLM> --url <endpoint>` (validators/performance/inference_perf_constraint.go). That subcommand communicates with the inference endpoint via JSON over HTTP only; all data transport uses aiohttp + orjson/msgspec. aiperf v0.7.0's declared dependencies contain no XML parsing libraries \u2014 the runtime stack (aiohttp, msgspec, orjson, numpy, transformers, uvicorn, fastapi) is entirely JSON/binary-based. While xml.parsers.expat is present in the Python 3.13 stdlib image, no attacker-controlled XML document can enter the aiperf profile execution path, making the hash-flooding trigger unreachable."
},
{
"vulnerability": {
"name": "CVE-2026-15308",
"description": "cpython CPU-exhaustion DoS in html.parser.HTMLParser incremental feed() via repeated unterminated markup declarations (PSF-2026-33, CWE-407, High CVSS 7.5/8.7). Fix merged to the cpython 3.13 branch on 2026-07-04 (PR #153040) but as of 2026-07-13 no released CPython contains it — v3.13.14 (2026-06-10), v3.14.6, and v3.15.0b3 all predate the fix, so no base-image bump can remediate yet."
},
"products": [
{
"@id": "pkg:oci/aicr-aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aicr-aiperf-bench"
}
},
{
"@id": "pkg:oci/aiperf-bench",
"identifiers": {
"purl": "pkg:oci/aiperf-bench"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The trigger requires incrementally feeding attacker-controlled HTML containing repeated unterminated markup declarations into html.parser.HTMLParser.feed(). aiperf v0.7.0 source contains zero references to html.parser, HTMLParser, or any html stdlib import (verified with `grep -rn -E 'html\\.parser|HTMLParser|^(import|from) html'` against the PyPI sdist — no hits). AICR invokes aiperf-bench exclusively as `aiperf profile <text-LLM> --url <endpoint>` (validators/performance/inference_perf_constraint.go); the workload exchanges only JSON over HTTP via aiohttp + msgspec/orjson and never parses HTML documents from the inference endpoint or any other source. No attacker-controlled markup can reach the vulnerable parser, so the quadratic-complexity code path is unreachable."
},
{
"vulnerability": {
"name": "CVE-2026-45447",
"description": "OpenSSL heap use-after-free in PKCS7_verify() (CWE-416, High). Fixed for Ubuntu 24.04 (noble) in openssl 3.0.13-0ubuntu3.11; the aicr image inherits the unpatched package transitively from the nvcr.io/nvidia/cuda CUDA base until that base rebuilds."
},
"products": [
{
"@id": "pkg:oci/aicr",
"identifiers": {
"purl": "pkg:oci/aicr"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr image is a statically-linked Go binary built by ko (`ko build ./cmd/aicr --bare`, base from .ko.yaml: nvcr.io/nvidia/cuda:13.2.1-runtime-ubuntu24.04). The build is CGO-free (ko default CGO_ENABLED=0; no `import \"C\"` anywhere in cmd/ or pkg/), so the binary uses Go's native crypto/tls and crypto/x509 and does not dynamically link, dlopen, or otherwise call into libssl3t64/libcrypto. The vulnerable symbol PKCS7_verify is reachable only through the OpenSSL C API, which no process in the container invokes: the openssl and libssl3t64 packages are inert Ubuntu base-image artifacts inherited from the CUDA image, and the container's sole entrypoint is the aicr binary. CVE-2026-45447 requires calling PKCS7_verify on attacker-influenced PKCS#7 input, and that code path does not exist in the running workload. The sibling aicrd image is unaffected by this CVE because it builds on gcr.io/distroless/static:nonroot, which carries no openssl package. Verified with grype v0.110.0 (the scan-action pin) `--vex .openvex.json` against the published ghcr.io/nvidia/aicr scan image: CVE-2026-45447 moves to ignoredMatches for both openssl and libssl3t64 under the vex namespace, leaving zero surviving HIGH findings."
},
{
"vulnerability": {
"name": "GHSA-jppx-rxg9-jmrx",
"description": "chainsaw (embedded kyverno binary): key constraints not enforced in golang.org/x/crypto/ssh/agent (CVE-2026-39833, GO-2026-5005)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5005",
"description": "chainsaw (embedded kyverno binary): key constraints not enforced in golang.org/x/crypto/ssh/agent (CVE-2026-39833, GO-2026-5005)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-f5wc-c3c7-36mc",
"description": "chainsaw (embedded kyverno binary): agent constraints dropped when forwarding keys in golang.org/x/crypto/ssh/agent (CVE-2026-39832, GO-2026-5006)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5006",
"description": "chainsaw (embedded kyverno binary): agent constraints dropped when forwarding keys in golang.org/x/crypto/ssh/agent (CVE-2026-39832, GO-2026-5006)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-q4h4-gmj2-qvw2",
"description": "chainsaw (embedded kyverno binary): byte arithmetic underflow and panic in golang.org/x/crypto/ssh (CVE-2026-46597, GO-2026-5013)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5013",
"description": "chainsaw (embedded kyverno binary): byte arithmetic underflow and panic in golang.org/x/crypto/ssh (CVE-2026-46597, GO-2026-5013)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-vgwf-h737-ff37",
"description": "chainsaw (embedded kyverno binary): client can cause server deadlock on unexpected responses in golang.org/x/crypto/ssh (CVE-2026-39830, GO-2026-5017)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5017",
"description": "chainsaw (embedded kyverno binary): client can cause server deadlock on unexpected responses in golang.org/x/crypto/ssh (CVE-2026-39830, GO-2026-5017)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-w879-237q-wc7r",
"description": "chainsaw (embedded kyverno binary): pathological RSA/DSA parameters may cause DoS in golang.org/x/crypto/ssh (CVE-2026-39829, GO-2026-5018)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5018",
"description": "chainsaw (embedded kyverno binary): pathological RSA/DSA parameters may cause DoS in golang.org/x/crypto/ssh (CVE-2026-39829, GO-2026-5018)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-89gr-r52h-f8rx",
"description": "chainsaw (embedded kyverno binary): bypass of FIDO/U2F security key physical interaction in golang.org/x/crypto/ssh (CVE-2026-39831, GO-2026-5019)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5019",
"description": "chainsaw (embedded kyverno binary): bypass of FIDO/U2F security key physical interaction in golang.org/x/crypto/ssh (CVE-2026-39831, GO-2026-5019)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-rm3j-f69w-wqmq",
"description": "chainsaw (embedded kyverno binary): infinite loop on large channel writes in golang.org/x/crypto/ssh (CVE-2026-39834, GO-2026-5020)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5020",
"description": "chainsaw (embedded kyverno binary): infinite loop on large channel writes in golang.org/x/crypto/ssh (CVE-2026-39834, GO-2026-5020)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-5cgq-3rg8-m6cv",
"description": "chainsaw (embedded kyverno binary): auth bypass via unenforced @revoked status in golang.org/x/crypto/ssh/knownhosts (CVE-2026-42508, GO-2026-5021)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5021",
"description": "chainsaw (embedded kyverno binary): auth bypass via unenforced @revoked status in golang.org/x/crypto/ssh/knownhosts (CVE-2026-42508, GO-2026-5021)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GHSA-x527-x647-q7gg",
"description": "chainsaw (embedded kyverno binary): VerifiedPublicKeyCallback permissions skip enforcement in golang.org/x/crypto/ssh (CVE-2026-46595, GO-2026-5023)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "GO-2026-5023",
"description": "chainsaw (embedded kyverno binary): VerifiedPublicKeyCallback permissions skip enforcement in golang.org/x/crypto/ssh (CVE-2026-46595, GO-2026-5023)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw is a Kubernetes test runner and never establishes SSH client, server, or agent connections; the golang.org/x/crypto/ssh* code path is not reached during `chainsaw test`."
},
{
"vulnerability": {
"name": "CVE-2026-25679",
"description": "chainsaw (embedded kyverno binary): incorrect parsing of IPv6 host literals in net/url."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "GO-2026-4601",
"description": "chainsaw (embedded kyverno binary): incorrect parsing of IPv6 host literals in net/url."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "CVE-2026-27137",
"description": "chainsaw (embedded kyverno binary): incorrect enforcement of email constraints in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "GO-2026-4599",
"description": "chainsaw (embedded kyverno binary): incorrect enforcement of email constraints in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "CVE-2026-32280",
"description": "chainsaw (embedded kyverno binary): unexpected work during chain building in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "GO-2026-4947",
"description": "chainsaw (embedded kyverno binary): unexpected work during chain building in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "CVE-2026-32281",
"description": "chainsaw (embedded kyverno binary): inefficient policy validation in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "GO-2026-4946",
"description": "chainsaw (embedded kyverno binary): inefficient policy validation in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "CVE-2026-32283",
"description": "chainsaw (embedded kyverno binary): unauthenticated TLS 1.3 KeyUpdate record can cause connection retention and DoS in crypto/tls."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "GO-2026-4870",
"description": "chainsaw (embedded kyverno binary): unauthenticated TLS 1.3 KeyUpdate record can cause connection retention and DoS in crypto/tls."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "CVE-2026-33810",
"description": "chainsaw (embedded kyverno binary): case-sensitive excludedSubtrees name constraints cause auth bypass in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "GO-2026-4866",
"description": "chainsaw (embedded kyverno binary): case-sensitive excludedSubtrees name constraints cause auth bypass in crypto/x509."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. The only TLS peer chainsaw connects to is the Kubernetes API server, whose certificate chain is trusted via the in-cluster kubeconfig CA. Triggering this requires an attacker-controlled certificate or TLS peer, which is not present on the gate's execution path."
},
{
"vulnerability": {
"name": "CVE-2026-33811",
"description": "chainsaw (embedded kyverno binary): crash when handling long CNAME response in net."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "GO-2026-4981",
"description": "chainsaw (embedded kyverno binary): crash when handling long CNAME response in net."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "CVE-2026-33814",
"description": "chainsaw (embedded kyverno binary): infinite loop in HTTP/2 transport given bad SETTINGS_MAX_FRAME_SIZE (net/http, golang.org/x/net/http2)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw acts only as an HTTP/2 client of the trusted in-cluster API server; triggering this requires a hostile server or hostname, which the gate's usage does not present."
},
{
"vulnerability": {
"name": "GO-2026-4918",
"description": "chainsaw (embedded kyverno binary): infinite loop in HTTP/2 transport given bad SETTINGS_MAX_FRAME_SIZE (net/http, golang.org/x/net/http2)."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. chainsaw acts only as an HTTP/2 client of the trusted in-cluster API server; triggering this requires a hostile server or hostname, which the gate's usage does not present."
},
{
"vulnerability": {
"name": "CVE-2026-39820",
"description": "chainsaw (embedded kyverno binary): quadratic string concatenation in consumeComment in net/mail."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "GO-2026-4986",
"description": "chainsaw (embedded kyverno binary): quadratic string concatenation in consumeComment in net/mail."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "CVE-2026-39836",
"description": "chainsaw (embedded kyverno binary): panic in Dial and LookupPort on NUL byte (Windows-only) in net."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "GO-2026-4971",
"description": "chainsaw (embedded kyverno binary): panic in Dial and LookupPort on NUL byte (Windows-only) in net."
},
"products": [
{
"@id": "pkg:oci/aicr-gate",
"identifiers": {
"purl": "pkg:oci/aicr-gate"
}
}
],
"status": "not_affected",
"justification": "vulnerable_code_not_in_execute_path",
"impact_statement": "The aicr-gate image embeds the upstream, cosign-attested kyverno/chainsaw binary (/usr/local/bin/chainsaw, CHAINSAW_VERSION in .settings.yaml) alongside the AICR gate binary; see cmd/gate/Dockerfile. The vulnerable code is present ONLY in that embedded chainsaw binary -- the AICR gate binary is clean (built with Go 1.26.5, golang.org/x/crypto v0.53.0, golang.org/x/net v0.56.0). chainsaw v0.2.15 (the latest release) was built with an older Go toolchain and older golang.org/x/{crypto,net}; kyverno has not yet shipped a rebuilt release. Within AICR, chainsaw runs exclusively as an ephemeral, cluster-internal readiness-gate Job: the bundler launches it to `chainsaw test` recipe-authored assertions, talking only to the trusted in-cluster Kubernetes API server. It exposes no network listener, accepts no untrusted ingress, and processes only operator-authored manifests and trusted API-server responses. Triggering this requires attacker-controlled input to the affected parser; chainsaw parses only operator-authored recipe manifests and trusted API-server responses, so the adversarial-input path is not reached."
},
{
"vulnerability": {
"name": "CVE-2026-42499",
"description": "chainsaw (embedded kyverno binary): quadratic string concatenation in consumePhrase in net/mail."
},
"products": [