-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathk3d.advisories.yaml
1704 lines (1618 loc) · 46.2 KB
/
k3d.advisories.yaml
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
schema-version: 2.0.2
package:
name: k3d
advisories:
- id: CGA-2353-8jq3-c7rh
aliases:
- CVE-2024-24788
- GHSA-2jwv-jmq4-4j3r
events:
- timestamp: 2024-05-14T12:06:10Z
type: fixed
data:
fixed-version: 5.6.3-r2
- id: CGA-25cw-m8pg-wxxj
aliases:
- CVE-2024-24557
- GHSA-xw73-rw38-6vjc
events:
- timestamp: 2024-03-22T07:06:05Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 22f44d686d875f84
componentName: github.com/docker/docker
componentVersion: v24.0.7+incompatible
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- id: CGA-28f7-9mwr-qjvg
aliases:
- CVE-2020-29652
- GHSA-3vm4-22fp-5rfm
events:
- timestamp: 2024-02-17T16:59:46Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 4eeb9a83aa81cd20
componentName: golang.org/x/crypto
componentVersion: v0.0.0-20190308221718-c2843e01d9a2
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:46Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-2f87-r2cr-7g69
aliases:
- CVE-2023-5077
- GHSA-86c6-3g63-5w64
events:
- timestamp: 2024-02-17T17:00:12Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:33Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-2q42-4xwv-8jw8
aliases:
- CVE-2019-9514
- GHSA-39qc-96h7-956f
events:
- timestamp: 2024-02-17T16:59:45Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: de59c9a9f4f37b11
componentName: golang.org/x/net
componentVersion: v0.0.0-20190522155817-f3200d17e092
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:48Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-3rh5-7fx9-w6cf
aliases:
- CVE-2023-5954
- GHSA-4qhc-v8r6-8vwm
events:
- timestamp: 2024-02-17T16:59:48Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:56Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-4h8p-fh8p-p339
aliases:
- CVE-2021-38554
- GHSA-6239-28c2-9mrm
events:
- timestamp: 2024-02-17T16:59:52Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:30Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-56vr-2gw4-98c6
aliases:
- CVE-2019-11841
- GHSA-x3jr-pf6g-c48f
events:
- timestamp: 2024-02-17T17:02:27Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 4eeb9a83aa81cd20
componentName: golang.org/x/crypto
componentVersion: v0.0.0-20190308221718-c2843e01d9a2
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:54Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-585c-pgh6-jfxh
aliases:
- CVE-2022-2582
- GHSA-6jvc-q2x7-pchv
events:
- timestamp: 2024-02-17T17:00:00Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 12723223390d3303
componentName: github.com/aws/aws-sdk-go
componentVersion: v1.13.41
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:57Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-594w-mv7g-h3x7
aliases:
- CVE-2021-43565
- GHSA-gwc9-m7rh-j2ww
events:
- timestamp: 2024-02-17T17:00:58Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 4eeb9a83aa81cd20
componentName: golang.org/x/crypto
componentVersion: v0.0.0-20190308221718-c2843e01d9a2
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:28Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-5fjg-x8f5-qwm6
aliases:
- CVE-2024-24787
- GHSA-5fq7-4mxc-535h
events:
- timestamp: 2024-05-14T12:06:18Z
type: fixed
data:
fixed-version: 5.6.3-r2
- id: CGA-5h7p-wpqm-j5g6
aliases:
- CVE-2024-32473
- GHSA-x84c-p2g9-rqv9
events:
- timestamp: 2024-04-19T13:24:14Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 95f969648a343c6f
componentName: github.com/docker/docker
componentVersion: v26.0.0+incompatible
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-04-24T16:02:28Z
type: fixed
data:
fixed-version: 5.6.3-r1
- id: CGA-5p79-wxp7-9267
aliases:
- CVE-2020-8911
- GHSA-f5pg-7wfw-84q9
events:
- timestamp: 2024-02-17T17:00:43Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 12723223390d3303
componentName: github.com/aws/aws-sdk-go
componentVersion: v1.13.41
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-01T10:13:09Z
type: pending-upstream-fix
data:
note: k3d-proxy is using an unmaintained repository since 2022 which requires multiple upstream code changes to fix this vulnerability.
- timestamp: 2024-04-09T17:19:52Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-6765-gr5x-vfr9
aliases:
- CVE-2024-24784
- GHSA-fgq5-q76c-gx78
events:
- timestamp: 2024-03-12T09:18:25Z
type: fixed
data:
fixed-version: 5.6.0-r7
- id: CGA-6874-g337-m4xh
aliases:
- CVE-2019-9512
- GHSA-hgr8-6h9x-f7q9
events:
- timestamp: 2024-02-17T17:01:07Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: de59c9a9f4f37b11
componentName: golang.org/x/net
componentVersion: v0.0.0-20190522155817-f3200d17e092
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:33Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-6cp7-4hc3-hhfh
aliases:
- CVE-2023-45289
- GHSA-32ch-6x54-q4h9
events:
- timestamp: 2024-03-12T09:18:04Z
type: fixed
data:
fixed-version: 5.6.0-r7
- id: CGA-6jc3-c8pf-fwpg
aliases:
- CVE-2023-25000
- GHSA-vq4h-9ghm-qmrr
events:
- timestamp: 2024-02-17T17:02:05Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:43Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-6qm4-fh43-2c34
aliases:
- CVE-2024-41110
- GHSA-v23v-6jw2-98fq
events:
- timestamp: 2024-07-31T07:23:03Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 2401dd6883ea7eb1
componentName: github.com/docker/docker
componentVersion: v27.0.3+incompatible
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-07-31T13:13:41Z
type: fixed
data:
fixed-version: 5.7.2-r1
- id: CGA-7cp9-2x24-j53v
aliases:
- CVE-2024-34158
- GHSA-j7vj-rw65-4v26
events:
- timestamp: 2024-09-10T20:06:34Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 7e6540f10d02aca1
componentName: stdlib
componentVersion: go1.22.6
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-09-13T05:26:07Z
type: fixed
data:
fixed-version: 5.7.4-r0
- id: CGA-7h89-2q7j-c365
aliases:
- CVE-2024-34156
- GHSA-crqm-pwhx-j97f
events:
- timestamp: 2024-09-10T20:05:54Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 7e6540f10d02aca1
componentName: stdlib
componentVersion: go1.22.6
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-09-13T05:26:08Z
type: fixed
data:
fixed-version: 5.7.4-r0
- id: CGA-8847-cf6q-86r7
aliases:
- CVE-2023-39325
- GHSA-4374-p667-p6c8
events:
- timestamp: 2024-02-14T12:26:38Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-tools
componentID: aafb93d0f2ebf334
componentName: golang.org/x/net
componentVersion: v0.10.0
componentType: go-module
componentLocation: /usr/bin/k3d-tools
scanner: grype
- timestamp: 2024-02-20T10:08:41Z
type: fixed
data:
fixed-version: 5.6.0-r6
- id: CGA-88q5-f562-4hcw
aliases:
- CVE-2021-32574
- GHSA-25gf-8qrr-g78r
events:
- timestamp: 2024-02-17T16:59:42Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 6867591b12e35e51
componentName: github.com/hashicorp/consul
componentVersion: v1.0.7
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T16:48:16Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-8g9v-pp84-2m4x
aliases:
- CVE-2020-7919
- GHSA-cjjc-xp8v-855w
events:
- timestamp: 2024-02-17T17:00:40Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 4eeb9a83aa81cd20
componentName: golang.org/x/crypto
componentVersion: v0.0.0-20190308221718-c2843e01d9a2
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:58Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-8gcv-7232-cv9c
aliases:
- CVE-2020-8912
- GHSA-7f33-f4f5-xwgw
events:
- timestamp: 2024-02-17T17:00:07Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 12723223390d3303
componentName: github.com/aws/aws-sdk-go
componentVersion: v1.13.41
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:49Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-8rqf-qmcc-jwqr
aliases:
- CVE-2021-41802
- GHSA-qv95-g3gm-x542
events:
- timestamp: 2024-02-17T17:01:44Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T16:48:15Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-92vv-799f-r2wq
aliases:
- CVE-2021-38561
- GHSA-ppp9-7jff-5vj2
events:
- timestamp: 2024-02-17T17:01:30Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 477050c736db1195
componentName: golang.org/x/text
componentVersion: v0.3.0
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:32Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-9c44-fr62-j5qf
aliases:
- CVE-2020-25864
- GHSA-8xmx-h8rq-h94j
events:
- timestamp: 2024-02-17T17:00:21Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 6867591b12e35e51
componentName: github.com/hashicorp/consul
componentVersion: v1.0.7
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:38Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-9qc7-gjgg-3239
aliases:
- CVE-2024-24785
- GHSA-j6m3-gc37-6r6q
events:
- timestamp: 2024-03-12T09:17:57Z
type: fixed
data:
fixed-version: 5.6.0-r7
- id: CGA-c7mh-q2h5-qwr6
aliases:
- CVE-2019-11254
- GHSA-wxc4-f4m6-wwqv
events:
- timestamp: 2024-02-17T17:02:21Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 5773f08b41ca4628
componentName: gopkg.in/yaml.v2
componentVersion: v2.2.2
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-01T10:11:03Z
type: pending-upstream-fix
data:
note: k3d-proxy is using an unmaintained repository since 2022 which requires multiple upstream code changes to fix this vulnerability.
- timestamp: 2024-04-09T17:20:00Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-ccmv-p286-fp45
aliases:
- CVE-2019-11840
- GHSA-r5c5-pr8j-pfp7
events:
- timestamp: 2024-02-17T17:01:49Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 4eeb9a83aa81cd20
componentName: golang.org/x/crypto
componentVersion: v0.0.0-20190308221718-c2843e01d9a2
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:36Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-f8gh-26vj-59c8
aliases:
- CVE-2019-9764
- GHSA-q7fx-wm2p-qfj8
events:
- timestamp: 2024-02-17T17:01:40Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 6867591b12e35e51
componentName: github.com/hashicorp/consul
componentVersion: v1.0.7
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T16:48:13Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-fmpj-p2jh-q7cx
aliases:
- CVE-2022-41316
- GHSA-9mh8-9j64-443f
events:
- timestamp: 2024-02-17T17:00:24Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:54Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-frmj-42r9-jrvg
aliases:
- CVE-2023-3462
- GHSA-9v3w-w2jh-4hff
events:
- timestamp: 2024-02-17T17:00:27Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T16:48:15Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-g3v4-fwfm-x54v
aliases:
- CVE-2022-41723
- GHSA-vvpx-j8f3-3w6h
events:
- timestamp: 2024-02-17T17:02:10Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: de59c9a9f4f37b11
componentName: golang.org/x/net
componentVersion: v0.0.0-20190522155817-f3200d17e092
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:50Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-g7mx-gf88-9654
aliases:
- CVE-2022-32149
- GHSA-69ch-w2m2-3vjp
events:
- timestamp: 2024-02-17T16:59:56Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 477050c736db1195
componentName: golang.org/x/text
componentVersion: v0.3.0
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-01T10:16:25Z
type: pending-upstream-fix
data:
note: k3d-proxy is using an unmaintained repository since 2022 which requires multiple upstream code changes to fix this vulnerability.
- timestamp: 2024-04-09T17:19:34Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-gf42-cfvw-28vj
aliases:
- CVE-2024-45338
- GHSA-w32m-9786-jp63
events:
- timestamp: 2024-12-19T15:38:51Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 1a7589f85867d51c
componentName: golang.org/x/net
componentVersion: v0.23.0
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-12-20T06:44:34Z
type: fixed
data:
fixed-version: 5.7.5-r2
- id: CGA-gg8m-cjr9-3275
aliases:
- CVE-2023-0620
- GHSA-v3hp-mcj5-pg39
events:
- timestamp: 2024-02-17T17:01:59Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:45Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-gqcf-3mf9-qx5q
aliases:
- CVE-2024-24786
- GHSA-8r3f-844c-mc37
events:
- timestamp: 2024-03-14T07:08:28Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 6ae545edc2d9ee4a
componentName: google.golang.org/protobuf
componentVersion: v1.31.0
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-03-16T20:28:53Z
type: fixed
data:
fixed-version: 5.6.0-r8
- id: CGA-gv6h-wp5j-7w5m
aliases:
- CVE-2023-45290
- GHSA-rr6r-cfgf-gc6h
events:
- timestamp: 2024-03-12T09:18:11Z
type: fixed
data:
fixed-version: 5.6.0-r7
- id: CGA-gx74-vqfq-j3jg
aliases:
- GHSA-7ww5-4wqc-m92c
events:
- timestamp: 2024-02-14T12:26:51Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 57fba9d0fca134c3
componentName: github.com/containerd/containerd
componentVersion: v1.7.3
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-02-20T10:08:40Z
type: fixed
data:
fixed-version: 5.6.0-r6
- id: CGA-h425-mx3f-g92v
aliases:
- CVE-2020-16250
- GHSA-fp52-qw33-mfmw
events:
- timestamp: 2024-02-17T17:00:51Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T17:19:38Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-hjf8-xfhg-29rm
aliases:
- CVE-2021-3121
- GHSA-c3h9-896r-86jm
events:
- timestamp: 2024-02-17T17:00:30Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 0f968bcdce4f5f59
componentName: github.com/gogo/protobuf
componentVersion: v1.2.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T16:48:12Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-hvmc-h55q-v8m5
aliases:
- CVE-2024-21626
- GHSA-xr7r-f8xq-vfvv
events:
- timestamp: 2024-02-14T12:26:53Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: acfca6bbbb7e8d7c
componentName: github.com/opencontainers/runc
componentVersion: v1.1.7
componentType: go-module
componentLocation: /usr/bin/k3d
scanner: grype
- timestamp: 2024-02-20T10:08:40Z
type: fixed
data:
fixed-version: 5.6.0-r6
- id: CGA-jf98-ggpr-pvp2
aliases:
- CVE-2024-24791
- GHSA-hw49-2p59-3mhj
events:
- timestamp: 2024-07-04T08:40:55Z
type: fixed
data:
fixed-version: 5.6.3-r5
- id: CGA-jrf9-74v5-4xc6
aliases:
- CVE-2023-3978
- GHSA-2wrh-6pvc-2jm9
events:
- timestamp: 2024-02-14T12:26:38Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-tools
componentID: aafb93d0f2ebf334
componentName: golang.org/x/net
componentVersion: v0.10.0
componentType: go-module
componentLocation: /usr/bin/k3d-tools
scanner: grype
- timestamp: 2024-02-20T10:08:41Z
type: fixed
data:
fixed-version: 5.6.0-r6
- id: CGA-m9fq-hq52-q783
aliases:
- CVE-2024-6104
- GHSA-v6v8-xj6m-xwqh
events:
- timestamp: 2024-06-25T07:16:02Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d
componentID: 7b2a8ddf40ff5fc0
componentName: github.com/hashicorp/go-retryablehttp
componentVersion: v0.7.5
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-06-25T13:40:13Z
type: fixed
data:
fixed-version: 5.6.3-r4
- id: CGA-mf8w-mfq9-frmf
aliases:
- CVE-2024-24790
- GHSA-49gw-vxvf-fc2g
events:
- timestamp: 2024-06-07T11:25:05Z
type: fixed
data:
fixed-version: 5.6.3-r3
- id: CGA-mg88-pgmg-j846
aliases:
- CVE-2023-24999
- GHSA-wmg5-g953-qqfw
events:
- timestamp: 2024-02-17T17:02:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: d749f4c5c3eda571
componentName: github.com/hashicorp/vault
componentVersion: v0.10.1
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-09T16:48:13Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-mj57-4q57-2637
aliases:
- CVE-2023-1297
- GHSA-c57c-7hrj-6q6v
events:
- timestamp: 2024-02-17T17:00:33Z
type: detection
data:
type: scan/v1
data:
subpackageName: k3d-proxy
componentID: 6867591b12e35e51
componentName: github.com/hashicorp/consul
componentVersion: v1.0.7
componentType: go-module
componentLocation: /usr/bin/confd
scanner: grype
- timestamp: 2024-04-01T10:14:29Z
type: pending-upstream-fix
data:
note: k3d-proxy is using an unmaintained repository since 2022 which requires multiple upstream code changes to fix this vulnerability.
- timestamp: 2024-04-09T17:19:30Z
type: fixed
data:
fixed-version: 5.6.0-r11
- id: CGA-mj65-p89c-62fc