This repository was archived by the owner on Jan 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathbuildkitd.advisories.yaml
More file actions
993 lines (938 loc) · 26.8 KB
/
buildkitd.advisories.yaml
File metadata and controls
993 lines (938 loc) · 26.8 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
schema-version: 2.0.2
package:
name: buildkitd
advisories:
- id: CGA-26hw-5rgh-wxj7
aliases:
- CVE-2023-3978
- GHSA-2wrh-6pvc-2jm9
events:
- timestamp: 2024-01-30T15:54:11Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 24fb3ebbebde4ba4
componentName: golang.org/x/net
componentVersion: v0.8.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- id: CGA-28rj-6mp6-vf8g
aliases:
- CVE-2024-45337
- GHSA-v778-237x-gjrc
events:
- timestamp: 2024-12-12T08:04:01Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 232f6a7b2b291a81
componentName: golang.org/x/crypto
componentVersion: v0.27.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-12-12T16:31:06Z
type: fixed
data:
fixed-version: 0.18.1-r2
- id: CGA-3pwm-f94p-fppg
aliases:
- CVE-2025-30204
- GHSA-mh63-6h87-95cp
events:
- timestamp: 2025-03-22T08:14:34Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 105f85fb59ff2581
componentName: github.com/golang-jwt/jwt/v5
componentVersion: v5.2.1
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2025-03-22T12:19:36Z
type: fixed
data:
fixed-version: 0.20.1-r4
- id: CGA-4823-c588-79x4
aliases:
- CVE-2024-34156
- GHSA-crqm-pwhx-j97f
events:
- timestamp: 2024-09-10T07:07:55Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildctl
componentID: 1c4f204595d89359
componentName: stdlib
componentVersion: go1.23.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-03-20T19:33:19Z
type: fixed
data:
fixed-version: 0.20.1-r3
- id: CGA-4jgr-8hg2-hpf8
aliases:
- CVE-2024-45338
- GHSA-w32m-9786-jp63
events:
- timestamp: 2024-12-19T08:27:55Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 38b0d432f912b65b
componentName: golang.org/x/net
componentVersion: v0.29.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2024-12-19T13:39:07Z
type: fixed
data:
fixed-version: 0.18.2-r1
- id: CGA-4wmp-6w9c-3v8q
aliases:
- CVE-2024-21626
- GHSA-xr7r-f8xq-vfvv
events:
- timestamp: 2024-02-05T07:04:30Z
type: fixed
data:
fixed-version: 0.12.5-r1
- id: CGA-5r59-v4x3-mcq8
aliases:
- CVE-2024-23651
- GHSA-m3r6-h7wv-7xxv
events:
- timestamp: 2024-02-01T07:06:14Z
type: fixed
data:
fixed-version: 0.12.5-r0
- id: CGA-5w2m-6qcc-8vj2
aliases:
- CVE-2025-22870
- GHSA-qxp5-gwg8-xv66
events:
- timestamp: 2025-03-14T08:17:31Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: e128f32a0c8b5104
componentName: golang.org/x/net
componentVersion: v0.33.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-03-16T05:31:15Z
type: fixed
data:
fixed-version: 0.20.1-r2
- id: CGA-68p7-3997-8577
aliases:
- CVE-2024-24785
- GHSA-j6m3-gc37-6r6q
events:
- timestamp: 2024-04-11T19:01:05Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-6jm9-j3j6-7fxh
aliases:
- CVE-2023-48795
- GHSA-45x7-px36-x8w8
events:
- timestamp: 2024-01-30T15:54:12Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 2bce5397fdf60b52
componentName: golang.org/x/crypto
componentVersion: v0.2.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- id: CGA-6mh4-qmrc-qf44
aliases:
- CVE-2024-6104
- GHSA-v6v8-xj6m-xwqh
events:
- timestamp: 2024-06-25T08:14:07Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 94270d3f917f828a
componentName: github.com/hashicorp/go-retryablehttp
componentVersion: v0.7.5
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-06-25T10:23:06Z
type: fixed
data:
fixed-version: 0.14.1-r1
- id: CGA-7h53-78f9-pqf2
aliases:
- CVE-2025-54388
- GHSA-x4rx-4gw3-53p4
events:
- timestamp: 2025-07-30T07:05:35Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: e193718b6ac03b9f
componentName: github.com/docker/docker
componentVersion: v28.2.2+incompatible
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2025-07-30T08:50:01Z
type: fixed
data:
fixed-version: 0.23.2-r2
- id: CGA-7x48-64j5-42pf
aliases:
- CVE-2024-34155
- GHSA-8xfx-rj4p-23jm
events:
- timestamp: 2024-09-10T07:07:46Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildctl
componentID: 1c4f204595d89359
componentName: stdlib
componentVersion: go1.23.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-03-20T19:33:20Z
type: fixed
data:
fixed-version: 0.20.1-r3
- id: CGA-8j5r-c2w7-m2x2
aliases:
- CVE-2023-45284
- GHSA-rq3x-83w4-p28c
events:
- timestamp: 2023-11-07T19:23:47Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: Only affects Windows
- id: CGA-8q3r-4wx8-6f9q
aliases:
- GHSA-7ww5-4wqc-m92c
events:
- timestamp: 2024-01-30T15:54:13Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 75c561d61f53d326
componentName: github.com/containerd/containerd
componentVersion: v1.7.2
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:36Z
type: fixed
data:
fixed-version: 0.12.4-r4
- timestamp: 2024-02-07T20:36:36Z
type: pending-upstream-fix
data:
note: containerd v1.7.11 appears to contain API-incompatible changes with this version of buildkitd. Bumping this dependency downstream causes issues where buildkitd is unable to start due to a conflicting URL schema.
- id: CGA-94qp-jq9h-fvq6
aliases:
- CVE-2024-51744
- GHSA-29wx-vh33-7x7r
events:
- timestamp: 2024-11-05T09:12:30Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildctl
componentID: 31f7cac9cfe08ed2
componentName: github.com/golang-jwt/jwt/v4
componentVersion: v4.5.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-11-07T07:37:42Z
type: fixed
data:
fixed-version: 0.17.0-r1
- id: CGA-9gf3-9vpr-xg6r
aliases:
- CVE-2023-45289
- GHSA-32ch-6x54-q4h9
events:
- timestamp: 2024-04-11T19:00:33Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-9rgp-8f3j-ghcg
aliases:
- CVE-2024-24787
- GHSA-5fq7-4mxc-535h
events:
- timestamp: 2024-05-14T07:40:24Z
type: fixed
data:
fixed-version: 0.13.2-r1
- id: CGA-c6fj-w86g-3vm8
aliases:
- CVE-2025-47907
- GHSA-j5pm-7495-qmr3
events:
- timestamp: 2025-08-09T09:48:34Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 482c081d4688efc3
componentName: stdlib
componentVersion: go1.24.5
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-08-09T13:20:35Z
type: fixed
data:
fixed-version: 0.23.2-r3
- id: CGA-c999-hp6g-cm5q
aliases:
- CVE-2025-47910
- GHSA-8pjc-487g-w6p2
events:
- timestamp: 2025-09-24T12:04:48Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 8f0c9175de937390
componentName: stdlib
componentVersion: go1.25.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-09-24T20:31:34Z
type: fixed
data:
fixed-version: 0.24.0-r1
- id: CGA-cffc-qx4h-898j
aliases:
- CVE-2024-24789
- GHSA-236w-p7wf-5ph8
events:
- timestamp: 2024-06-07T09:21:43Z
type: fixed
data:
fixed-version: 0.13.2-r2
- id: CGA-cpw2-h53q-c5w6
aliases:
- CVE-2023-39325
- GHSA-4374-p667-p6c8
events:
- timestamp: 2024-01-30T15:54:12Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 24fb3ebbebde4ba4
componentName: golang.org/x/net
componentVersion: v0.8.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- id: CGA-cw6p-p84c-9rfj
aliases:
- CVE-2025-4673
- GHSA-62jj-gr2r-5c34
events:
- timestamp: 2025-06-14T08:11:26Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 88bfad30d0eb523e
componentName: stdlib
componentVersion: go1.24.3
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-06-14T11:39:25Z
type: fixed
data:
fixed-version: 0.22.0-r1
- id: CGA-f9ff-4pgg-ghr8
aliases:
- CVE-2025-22874
- GHSA-6f52-wpx2-hvf2
events:
- timestamp: 2025-06-14T08:11:26Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 88bfad30d0eb523e
componentName: stdlib
componentVersion: go1.24.3
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-06-14T11:39:26Z
type: fixed
data:
fixed-version: 0.22.0-r1
- id: CGA-fv9c-6jwv-42cp
aliases:
- CVE-2025-58181
- GHSA-j5w8-q4qc-rx2x
events:
- timestamp: 2025-11-21T09:33:18Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: fd336ac54e8c4b79
componentName: golang.org/x/crypto
componentVersion: v0.42.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-11-22T07:12:33Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: Govulncheck found no affected symbols in the scanned Go binaries.
- id: CGA-fvh9-6v4w-vfc5
aliases:
- CVE-2024-29018
- GHSA-mq39-4gv4-mvpx
events:
- timestamp: 2024-03-21T07:34:43Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 19cd3c2af876f2e9
componentName: github.com/docker/docker
componentVersion: v25.0.3+incompatible
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-03-21T11:43:47Z
type: fixed
data:
fixed-version: 0.13.1-r1
- id: CGA-g8fr-g5rp-4g53
aliases:
- CVE-2023-44487
- GHSA-qppj-fm5r-hxr3
events:
- timestamp: 2024-01-30T15:54:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 24fb3ebbebde4ba4
componentName: golang.org/x/net
componentVersion: v0.8.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- id: CGA-g9xv-mrf3-2jx9
aliases:
- CVE-2024-35255
- GHSA-m5vv-6r4h-3vj9
events:
- timestamp: 2024-06-12T07:03:16Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 479db76f53cf07a3
componentName: github.com/Azure/azure-sdk-for-go/sdk/azidentity
componentVersion: v1.1.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-06-15T18:35:01Z
type: fixed
data:
fixed-version: 0.14.0-r1
- id: CGA-gh3x-4cv3-3r74
aliases:
- GHSA-m425-mq94-257g
events:
- timestamp: 2024-01-30T15:54:14Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 5479b9a00cbef3b2
componentName: google.golang.org/grpc
componentVersion: v1.53.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- id: CGA-ghhc-x2xj-72p7
aliases:
- CVE-2024-41110
- GHSA-v23v-6jw2-98fq
events:
- timestamp: 2024-07-31T09:10:02Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildctl
componentID: c4f4fcb51c64e471
componentName: github.com/docker/docker
componentVersion: v27.0.3+incompatible
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2025-03-20T19:33:21Z
type: fixed
data:
fixed-version: 0.20.1-r3
- id: CGA-gj7h-g5h5-f3cj
aliases:
- CVE-2025-67499
- GHSA-jv3w-x3r3-g6rm
events:
- timestamp: 2025-12-10T11:07:53Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 538aa4f64dee7006
componentName: github.com/containernetworking/plugins
componentVersion: v1.8.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2025-12-10T13:31:58Z
type: fixed
data:
fixed-version: 0.26.2-r2
- id: CGA-gw7m-mhvq-98vj
aliases:
- CVE-2023-47108
- GHSA-8pgv-569h-w5rw
events:
- timestamp: 2024-01-30T15:54:13Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 5b504ca37fc67e7e
componentName: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
componentVersion: v0.40.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- timestamp: 2024-02-07T20:37:09Z
type: pending-upstream-fix
data:
note: otelgrpc v0.46.0 appears to contain API-incompatible changes with this version of buildkitd. Bumping this dependency causes build-time issues with missing required packages.
- id: CGA-h2vq-f2rf-jwrq
aliases:
- CVE-2023-45142
- GHSA-rcjv-mgp8-qvmr
events:
- timestamp: 2024-01-30T15:54:16Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: d187dc2cd891df14
componentName: go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
componentVersion: v0.40.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2024-01-31T17:46:37Z
type: fixed
data:
fixed-version: 0.12.4-r4
- timestamp: 2024-02-07T20:38:51Z
type: pending-upstream-fix
data:
note: otelhttptrace and otelhttp have been both bumped to v0.45.0 in the upstream via https://github.com/moby/buildkit/commit/5ecfec1039959e8b742494eec8f7b5fd8202df5a, but this change is yet to be released. Bumping this dependency downstream causes build-time issues with missing required packages.
- id: CGA-h4m2-wf3m-2v7g
aliases:
- CVE-2025-61729
- GHSA-7c64-f9jr-v9h2
events:
- timestamp: 2025-12-04T14:08:47Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 84a394b34758f276
componentName: stdlib
componentVersion: go1.25.4
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-12-04T16:01:13Z
type: fixed
data:
fixed-version: 0.26.2-r1
- id: CGA-h6wq-3vfj-vrgv
aliases:
- CVE-2023-45288
- GHSA-4v7x-pqxf-cx7m
events:
- timestamp: 2024-04-12T08:47:08Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-hp32-mw2w-f3m9
aliases:
- CVE-2025-22866
- GHSA-3whm-j4xm-rv8x
events:
- timestamp: 2025-02-08T18:21:05Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: a6ebe915603ae56a
componentName: stdlib
componentVersion: go1.23.5
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-02-09T10:24:07Z
type: fixed
data:
fixed-version: 0.19.0-r1
- id: CGA-hx6m-5pw9-29pm
aliases:
- CVE-2024-24788
- GHSA-2jwv-jmq4-4j3r
events:
- timestamp: 2024-05-14T07:40:20Z
type: fixed
data:
fixed-version: 0.13.2-r1
- id: CGA-j4wr-rjxh-qjfj
aliases:
- CVE-2025-22869
events:
- timestamp: 2025-03-11T15:23:08Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 420c66253ee02eec
componentName: golang.org/x/crypto
componentVersion: v0.31.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-03-12T11:15:57Z
type: fixed
data:
fixed-version: 0.20.1-r1
- id: CGA-j6c2-xp4q-vhg8
aliases:
- CVE-2023-45290
- GHSA-rr6r-cfgf-gc6h
events:
- timestamp: 2024-04-11T19:01:17Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-jh96-52rx-r7gm
aliases:
- CVE-2024-23653
- GHSA-wr6v-9f75-vh2g
events:
- timestamp: 2024-02-01T07:06:18Z
type: fixed
data:
fixed-version: 0.12.5-r0
- id: CGA-m25j-vf39-rw94
aliases:
- CVE-2024-40635
- GHSA-265r-hfxg-fhmg
events:
- timestamp: 2025-03-18T11:45:08Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 3327dddada12a638
componentName: github.com/containerd/containerd/v2
componentVersion: v2.0.3
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-03-22T05:19:35Z
type: fixed
data:
fixed-version: 0.20.1-r3
- id: CGA-pvj9-jfx8-wmx9
aliases:
- CVE-2024-24557
- GHSA-xw73-rw38-6vjc
events:
- timestamp: 2024-04-11T19:02:14Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-pwq3-833q-q6jr
aliases:
- CVE-2024-23650
- GHSA-9p26-698r-w4hx
events:
- timestamp: 2024-02-01T07:06:16Z
type: fixed
data:
fixed-version: 0.12.5-r0
- id: CGA-qjhp-rhq4-4qxr
aliases:
- CVE-2023-45283
- GHSA-vvjp-q62m-2vph
events:
- timestamp: 2023-11-07T19:23:46Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: Only affects Windows
- id: CGA-qmfw-8v8c-xqg3
aliases:
- CVE-2025-58187
- GHSA-frhw-mqj2-wxw2
events:
- timestamp: 2025-11-02T08:15:16Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 2c5efb6a85a8542a
componentName: stdlib
componentVersion: go1.25.2
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-11-02T12:46:45Z
type: fixed
data:
fixed-version: 0.25.1-r1
- id: CGA-qvgx-w72v-859j
aliases:
- CVE-2024-24784
- GHSA-fgq5-q76c-gx78
events:
- timestamp: 2024-04-11T19:01:57Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-r98x-cv4p-g4v2
aliases:
- CVE-2025-47914
- GHSA-f6x5-jh6r-wrfv
events:
- timestamp: 2025-11-21T09:33:17Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: fd336ac54e8c4b79
componentName: golang.org/x/crypto
componentVersion: v0.42.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-11-23T07:05:53Z
type: true-positive-determination
data:
note: 'Govulncheck found vulnerable symbols in Go binaries at the following locations: in buildctl-0.26.1-r0.apk, at usr/bin/buildctl, usr/bin/buildctl.'
- timestamp: 2025-11-24T12:47:59Z
type: fixed
data:
fixed-version: 0.26.2-r0
- id: CGA-wgv3-9hrx-gj3g
aliases:
- CVE-2024-23652
- GHSA-4v98-7qmw-rqr8
events:
- timestamp: 2024-02-01T07:06:15Z
type: fixed
data:
fixed-version: 0.12.5-r0
- id: CGA-wh8j-mhfv-89f7
aliases:
- CVE-2024-24786
- GHSA-8r3f-844c-mc37
events:
- timestamp: 2024-03-14T07:06:22Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildctl
componentID: aa14e3342f8f268a
componentName: google.golang.org/protobuf
componentVersion: v1.31.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2024-03-14T15:17:54Z
type: fixed
data:
fixed-version: 0.13.0-r1
- id: CGA-wjcv-j8w7-25q7
aliases:
- CVE-2025-8556
- GHSA-2x5j-vhc8-9cwm
events:
- timestamp: 2025-11-14T16:17:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: e5aada8c03ae0dd9
componentName: github.com/cloudflare/circl
componentVersion: v1.6.0
componentType: go-module
componentLocation: /usr/bin/buildkitd
scanner: grype
- timestamp: 2025-11-14T18:32:21Z
type: fixed
data:
fixed-version: 0.26.0-r1
- id: CGA-wr87-ff6v-q75v
aliases:
- CVE-2024-24790
- GHSA-49gw-vxvf-fc2g
events:
- timestamp: 2024-06-07T09:21:50Z
type: fixed
data:
fixed-version: 0.13.2-r2
- id: CGA-x352-mjxq-8r69
aliases:
- CVE-2024-34158
- GHSA-j7vj-rw65-4v26
events:
- timestamp: 2024-09-10T07:08:04Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildctl
componentID: 1c4f204595d89359
componentName: stdlib
componentVersion: go1.23.0
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-03-20T19:33:21Z
type: fixed
data:
fixed-version: 0.20.1-r3
- id: CGA-xq26-g4pf-7x8c
aliases:
- CVE-2024-24783
- GHSA-3q2c-pvp5-3cqp
events:
- timestamp: 2024-04-11T19:00:52Z
type: fixed
data:
fixed-version: 0.13.1-r2
- id: CGA-xqr2-w59q-2rm2
aliases:
- CVE-2025-22871
- GHSA-g9pc-8g42-g6vq
events:
- timestamp: 2025-04-10T08:48:01Z
type: detection
data:
type: scan/v1
data:
subpackageName: buildkitd
componentID: 3b62fc9385542653
componentName: stdlib
componentVersion: go1.24.1
componentType: go-module
componentLocation: /usr/bin/buildctl
scanner: grype
- timestamp: 2025-04-10T16:23:48Z
type: fixed
data:
fixed-version: 0.20.2-r1