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 pathhelm-push.advisories.yaml
More file actions
1212 lines (1147 loc) · 34.1 KB
/
helm-push.advisories.yaml
File metadata and controls
1212 lines (1147 loc) · 34.1 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
schema-version: 2.0.2
package:
name: helm-push
advisories:
- id: CGA-2495-68hc-vc34
aliases:
- CVE-2025-61729
- GHSA-7c64-f9jr-v9h2
events:
- timestamp: 2025-12-05T02:55:46Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: fd3f62b34e9f0b46
componentName: stdlib
componentVersion: go1.25.4
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-12-05T14:33:07Z
type: true-positive-determination
data:
note: 'Govulncheck found vulnerable symbols in Go binaries at the following locations: in helm-push-0.10.4-r37.apk, at usr/libexec/helm-plugins/helm-push/bin/helm-cm-push, usr/libexec/helm-plugins/helm-push/bin/helm-cm-push.'
- timestamp: 2025-12-07T15:10:19Z
type: fixed
data:
fixed-version: 0.10.4-r38
- id: CGA-2ghq-fj52-j7mc
aliases:
- CVE-2025-64329
- GHSA-m6hq-p25p-ffr2
events:
- timestamp: 2025-11-08T10:59:31Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 755bccffeec89989
componentName: github.com/containerd/containerd
componentVersion: v1.7.27
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-08T13:11:42Z
type: fixed
data:
fixed-version: 0.10.4-r36
- id: CGA-2w5q-jwcp-68cc
aliases:
- CVE-2023-45284
- GHSA-rq3x-83w4-p28c
events:
- timestamp: 2023-11-07T19:28:58Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: Only affects Windows
- id: CGA-3345-xrpv-mhhv
aliases:
- CVE-2025-61723
- GHSA-hjx7-fpxx-mj48
events:
- timestamp: 2025-11-02T13:36:16Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:14Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-337p-jfx9-hj55
aliases:
- CVE-2019-25210
- GHSA-jw44-4f3j-q396
events:
- timestamp: 2024-03-06T07:45:38Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 47aaaae380e07890
componentName: helm.sh/helm/v3
componentVersion: v3.14.2
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-03-26T16:35:18Z
type: false-positive-determination
data:
type: vulnerability-record-analysis-contested
note: 'This is not a vulnerability. Learn more about the response from Helm: https://helm.sh/blog/response-cve-2019-25210'
- id: CGA-3fg2-m23w-8m6g
aliases:
- CVE-2025-22870
- GHSA-qxp5-gwg8-xv66
events:
- timestamp: 2025-03-14T07:31:01Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: c7a2431548823505
componentName: golang.org/x/net
componentVersion: v0.33.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-03-16T02:12:46Z
type: fixed
data:
fixed-version: 0.10.4-r22
- id: CGA-3mg3-p7mv-xg2c
aliases:
- CVE-2024-24786
- GHSA-8r3f-844c-mc37
events:
- timestamp: 2024-03-14T11:16:20Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: b02cbc376478767f
componentName: google.golang.org/protobuf
componentVersion: v1.31.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-03-22T01:22:21Z
type: fixed
data:
fixed-version: 0.10.4-r24
- id: CGA-44jj-r347-w4xc
aliases:
- CVE-2025-61727
- GHSA-5mh9-3jwc-rp59
events:
- timestamp: 2025-12-06T13:16:50Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: fd3f62b34e9f0b46
componentName: stdlib
componentVersion: go1.25.4
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-12-07T12:17:39Z
type: true-positive-determination
data:
note: 'Govulncheck found vulnerable symbols in Go binaries at the following locations: in helm-push-0.10.4-r37.apk, at usr/libexec/helm-plugins/helm-push/bin/helm-cm-push, usr/libexec/helm-plugins/helm-push/bin/helm-cm-push.'
- timestamp: 2025-12-07T15:10:20Z
type: fixed
data:
fixed-version: 0.10.4-r38
- id: CGA-45cw-w4fm-xf7f
aliases:
- CVE-2024-34156
- GHSA-crqm-pwhx-j97f
events:
- timestamp: 2024-09-10T16:38:19Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 8e8f7fde2b8ac364
componentName: stdlib
componentVersion: go1.22.6
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-09-18T20:18:26Z
type: fixed
data:
fixed-version: 0.10.4-r15
- id: CGA-4f5c-g2fq-xp97
aliases:
- CVE-2024-32473
- GHSA-x84c-p2g9-rqv9
events:
- timestamp: 2024-04-19T10:19:33Z
type: fixed
data:
fixed-version: 0.10.4-r8
- id: CGA-62g3-x48x-4xxp
aliases:
- CVE-2025-61724
- GHSA-wcw9-47fp-rrfr
events:
- timestamp: 2025-11-02T13:36:16Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:15Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-65j2-phgv-mjxf
aliases:
- CVE-2024-45337
- GHSA-v778-237x-gjrc
events:
- timestamp: 2024-12-12T10:01:08Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 54b9a281fdeefc65
componentName: golang.org/x/crypto
componentVersion: v0.21.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-12-12T23:02:43Z
type: fixed
data:
fixed-version: 0.10.4-r16
- id: CGA-6c5g-6wqv-9wpg
aliases:
- CVE-2023-45285
- GHSA-5f94-vhjq-rpg8
events:
- timestamp: 2024-02-15T07:11:47Z
type: fixed
data:
fixed-version: 0.10.4-r1
- id: CGA-6ccw-f9r2-2c8h
aliases:
- CVE-2024-41110
- GHSA-v23v-6jw2-98fq
events:
- timestamp: 2024-07-31T07:09:36Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 50d8f37cf86ba4c6
componentName: github.com/docker/docker
componentVersion: v26.0.2+incompatible
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-07-31T09:43:32Z
type: fixed
data:
fixed-version: 0.10.4-r13
- id: CGA-6fgx-p3xv-c54f
aliases:
- GHSA-jq35-85cj-fj4p
events:
- timestamp: 2023-11-07T04:27:03Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: This vulnerability is in the container runtime itself, not clients of the container runtime.
- id: CGA-7frg-7q45-2r82
aliases:
- CVE-2025-58188
- GHSA-7wwx-xj66-r44x
events:
- timestamp: 2025-11-02T13:36:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:16Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-7g3w-j68j-rvvp
aliases:
- CVE-2025-58185
- GHSA-jwmf-chvc-rf92
events:
- timestamp: 2025-11-02T13:36:13Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:17Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-7gcp-5jvh-rxqq
aliases:
- CVE-2023-48795
- GHSA-45x7-px36-x8w8
events:
- timestamp: 2024-02-14T12:28:59Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: dc2efc59a44cd238
componentName: golang.org/x/crypto
componentVersion: v0.14.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-02-21T13:32:20Z
type: fixed
data:
fixed-version: 0.10.4-r2
- id: CGA-85q6-3f8w-xv92
aliases:
- CVE-2025-22869
events:
- timestamp: 2025-03-06T04:26:27Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 9007a361e65d2c05
componentName: golang.org/x/crypto
componentVersion: v0.31.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-03-12T02:09:13Z
type: fixed
data:
fixed-version: 0.10.4-r21
- id: CGA-87cp-vv6g-953p
aliases:
- CVE-2024-26147
- GHSA-r53h-jv2g-vpx6
events:
- timestamp: 2024-02-23T07:17:56Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 12bb606b4bc15413
componentName: helm.sh/helm/v3
componentVersion: v3.14.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-02-25T11:53:42Z
type: fixed
data:
fixed-version: 0.10.4-r3
- id: CGA-8vf9-xvhw-956w
aliases:
- CVE-2024-40635
- GHSA-265r-hfxg-fhmg
events:
- timestamp: 2025-03-18T08:43:19Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 948057a429d17d67
componentName: github.com/containerd/containerd
componentVersion: v1.6.26
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-03-22T01:22:22Z
type: fixed
data:
fixed-version: 0.10.4-r24
- timestamp: 2025-04-16T17:32:20Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 519981376e593cb9
componentName: github.com/containerd/containerd
componentVersion: v1.7.24
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-04-16T18:19:47Z
type: fixed
data:
fixed-version: 0.10.4-r27
- id: CGA-8w6g-hfrx-c4pj
aliases:
- CVE-2025-4673
- GHSA-62jj-gr2r-5c34
events:
- timestamp: 2025-06-14T15:11:41Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 10068d1a1e580afe
componentName: stdlib
componentVersion: go1.24.2
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-06-14T23:47:39Z
type: fixed
data:
fixed-version: 0.10.4-r29
- id: CGA-9j47-9vh8-g945
aliases:
- CVE-2024-24783
- GHSA-3q2c-pvp5-3cqp
events:
- timestamp: 2024-03-12T07:14:34Z
type: fixed
data:
fixed-version: 0.10.4-r4
- id: CGA-c24r-29xx-8xp3
aliases:
- CVE-2023-45290
- GHSA-rr6r-cfgf-gc6h
events:
- timestamp: 2024-03-12T07:14:32Z
type: fixed
data:
fixed-version: 0.10.4-r4
- id: CGA-cj29-mh3f-jxqc
aliases:
- CVE-2024-24790
- GHSA-49gw-vxvf-fc2g
events:
- timestamp: 2024-06-07T19:35:19Z
type: fixed
data:
fixed-version: 0.10.4-r11
- id: CGA-cjm8-r9fm-4gfh
aliases:
- CVE-2024-24785
- GHSA-j6m3-gc37-6r6q
events:
- timestamp: 2024-03-12T07:14:37Z
type: fixed
data:
fixed-version: 0.10.4-r4
- id: CGA-crxc-726h-76wm
aliases:
- CVE-2024-25620
- GHSA-v53g-5gjp-272r
events:
- timestamp: 2024-02-16T07:33:27Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 341d908462577653
componentName: helm.sh/helm/v3
componentVersion: v3.11.2
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-02-21T13:32:19Z
type: fixed
data:
fixed-version: 0.10.4-r2
- id: CGA-fj67-r8f8-9cpq
aliases:
- CVE-2025-47912
- GHSA-447v-2qg4-h8hc
events:
- timestamp: 2025-11-02T13:36:12Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:17Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-fjf9-2f4m-w445
aliases:
- CVE-2025-47914
- GHSA-f6x5-jh6r-wrfv
events:
- timestamp: 2025-11-21T20:18:55Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 1192bdfc361d7d42
componentName: golang.org/x/crypto
componentVersion: v0.40.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-22T06:54:53Z
type: fixed
data:
fixed-version: 0.10.4-r37
- id: CGA-g5qr-j8pr-7xjx
aliases:
- CVE-2025-47907
- GHSA-j5pm-7495-qmr3
events:
- timestamp: 2025-08-09T10:22:48Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 34e211159f59a35c
componentName: stdlib
componentVersion: go1.24.5
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-08-09T18:33:53Z
type: fixed
data:
fixed-version: 0.10.4-r32
- id: CGA-gp7g-rmxh-hwhq
aliases:
- CVE-2024-25621
- GHSA-pwhc-rpq9-4c8w
events:
- timestamp: 2025-11-08T10:59:32Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 755bccffeec89989
componentName: github.com/containerd/containerd
componentVersion: v1.7.27
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-08T13:11:43Z
type: fixed
data:
fixed-version: 0.10.4-r36
- id: CGA-hcpx-vh8j-2gmr
aliases:
- CVE-2024-24791
- GHSA-hw49-2p59-3mhj
events:
- timestamp: 2024-07-19T12:01:23Z
type: fixed
data:
fixed-version: 0.10.4-r12
- id: CGA-hwm7-6hcj-fhqc
aliases:
- CVE-2025-47910
- GHSA-8pjc-487g-w6p2
events:
- timestamp: 2025-09-24T09:51:45Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 00ba431460b20979
componentName: stdlib
componentVersion: go1.25.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-09-24T14:37:36Z
type: fixed
data:
fixed-version: 0.10.4-r34
- id: CGA-j595-2qf5-p6g9
aliases:
- CVE-2025-22866
- GHSA-3whm-j4xm-rv8x
events:
- timestamp: 2025-02-08T16:34:08Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 8150d25f965e4b2e
componentName: stdlib
componentVersion: go1.23.5
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-02-11T03:39:00Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: |
This vulnerability relates to p256NegCond within the crypto/internal/fips140/nistec package, specifically affecting the ppc64le architecture.
We are not affected by this vulnerability as we do not build or support ppc64le.
- id: CGA-j9h6-qp5w-c863
aliases:
- CVE-2024-24784
- GHSA-fgq5-q76c-gx78
events:
- timestamp: 2024-03-12T07:14:35Z
type: fixed
data:
fixed-version: 0.10.4-r4
- id: CGA-jg99-rjw2-9r47
aliases:
- CVE-2024-34155
- GHSA-8xfx-rj4p-23jm
events:
- timestamp: 2024-09-10T16:38:12Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 8e8f7fde2b8ac364
componentName: stdlib
componentVersion: go1.22.6
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-09-18T20:18:28Z
type: fixed
data:
fixed-version: 0.10.4-r15
- id: CGA-jm43-4p5f-qxrc
aliases:
- GHSA-7ww5-4wqc-m92c
events:
- timestamp: 2024-02-14T12:29:00Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: dfde00ac0aa6bb70
componentName: github.com/containerd/containerd
componentVersion: v1.6.18
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-02-21T13:32:19Z
type: fixed
data:
fixed-version: 0.10.4-r2
- id: CGA-jp3m-xg9r-8j4m
aliases:
- CVE-2024-24788
- GHSA-2jwv-jmq4-4j3r
events:
- timestamp: 2024-05-15T12:45:22Z
type: fixed
data:
fixed-version: 0.10.4-r10
- id: CGA-jwwr-7358-3f4w
aliases:
- CVE-2025-22871
- GHSA-g9pc-8g42-g6vq
events:
- timestamp: 2025-04-10T09:30:47Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: e72e02e6c431aef1
componentName: stdlib
componentVersion: go1.24.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-04-10T19:16:52Z
type: fixed
data:
fixed-version: 0.10.4-r25
- id: CGA-m6j2-82cr-3m57
aliases:
- CVE-2025-32386
- GHSA-4hfp-h4cw-hj8p
events:
- timestamp: 2025-04-12T07:24:14Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: e8673b8ec9e65f3a
componentName: helm.sh/helm/v3
componentVersion: v3.14.2
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-04-16T17:32:19Z
type: fixed
data:
fixed-version: 0.10.4-r26
- id: CGA-m749-p4jg-7w3f
aliases:
- CVE-2025-58187
- GHSA-frhw-mqj2-wxw2
events:
- timestamp: 2025-11-02T13:36:14Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:18Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-m837-7mw5-mcwh
aliases:
- CVE-2025-32387
- GHSA-5xqw-8hwv-wg92
events:
- timestamp: 2025-04-12T07:24:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: e8673b8ec9e65f3a
componentName: helm.sh/helm/v3
componentVersion: v3.14.2
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-04-16T17:32:20Z
type: fixed
data:
fixed-version: 0.10.4-r26
- id: CGA-m9j4-qfx3-vgwc
aliases:
- CVE-2024-34158
- GHSA-j7vj-rw65-4v26
events:
- timestamp: 2024-09-10T16:38:26Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 8e8f7fde2b8ac364
componentName: stdlib
componentVersion: go1.22.6
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-09-18T20:18:27Z
type: fixed
data:
fixed-version: 0.10.4-r15
- id: CGA-mc63-jjxj-x96v
aliases:
- CVE-2025-22872
- GHSA-vvgc-356p-c3xw
events:
- timestamp: 2025-04-18T03:46:43Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 57030e5a871a359b
componentName: golang.org/x/net
componentVersion: v0.37.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-04-19T08:31:10Z
type: fixed
data:
fixed-version: 0.10.4-r28
- id: CGA-mfm4-h8jc-x624
aliases:
- CVE-2024-45338
- GHSA-w32m-9786-jp63
events:
- timestamp: 2024-12-19T10:26:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: c217bd7aa8683aaf
componentName: golang.org/x/net
componentVersion: v0.23.0
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2024-12-19T18:06:47Z
type: fixed
data:
fixed-version: 0.10.4-r17
- id: CGA-mmhp-7p9v-fgpr
aliases:
- CVE-2025-58183
- GHSA-9gcr-gp5f-jw27
events:
- timestamp: 2025-11-02T13:36:13Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:18Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-mwhx-wp3x-99hr
aliases:
- CVE-2025-55199
- GHSA-9h84-qmv7-982p
events:
- timestamp: 2025-08-14T07:34:07Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 0ef4f590882aa56f
componentName: helm.sh/helm/v3
componentVersion: v3.18.4
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-08-16T15:43:58Z
type: fixed
data:
fixed-version: 0.10.4-r33
- id: CGA-pv6c-gx2r-v8jj
aliases:
- CVE-2025-55198
- GHSA-f9f8-9pmf-xv68
events:
- timestamp: 2025-08-14T07:34:08Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 0ef4f590882aa56f
componentName: helm.sh/helm/v3
componentVersion: v3.18.4
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-08-16T15:43:59Z
type: fixed
data:
fixed-version: 0.10.4-r33
- id: CGA-q7f4-f5xw-qxcw
aliases:
- CVE-2025-58189
- GHSA-cxq7-xw9v-rcv3
events:
- timestamp: 2025-11-02T13:36:15Z
type: detection
data:
type: scan/v1
data:
subpackageName: helm-push
componentID: 09fe1947c1377ec3
componentName: stdlib
componentVersion: go1.25.1
componentType: go-module
componentLocation: /usr/libexec/helm-plugins/helm-push/bin/helm-cm-push
scanner: grype
- timestamp: 2025-11-02T22:43:19Z
type: fixed
data:
fixed-version: 0.10.4-r35
- id: CGA-qm9h-6g4x-37g3
aliases:
- GHSA-6xv5-86q9-7xr8
events:
- timestamp: 2023-11-07T04:26:32Z
type: false-positive-determination
data:
type: vulnerable-code-not-included-in-package
note: This vulnerability is only present on Windows.
- id: CGA-qqcp-xr24-6857
aliases:
- CVE-2023-39326
- GHSA-9f76-wg39-x86h
events:
- timestamp: 2024-02-15T07:11:46Z
type: fixed
data:
fixed-version: 0.10.4-r1
- id: CGA-qv94-5wxp-7549