-
Notifications
You must be signed in to change notification settings - Fork 60
/
apache-nifi.advisories.yaml
1809 lines (1757 loc) · 68.1 KB
/
apache-nifi.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: apache-nifi
advisories:
- id: CGA-24m5-8f5h-34wq
aliases:
- CVE-2022-3510
- GHSA-4gg5-vx3j-xwc7
events:
- timestamp: 2024-05-17T01:00:41Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 97958e540399f5bc
componentName: protobuf-java
componentVersion: 2.5.0
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hbase_2-client-service-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:08Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:12:53Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: bee580f749c1fcf8
componentName: protobuf-java
componentVersion: 2.5.0
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hbase_2-client-service-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-2m2m-2659-48mq
aliases:
- CVE-2024-36124
- GHSA-8wh2-6qhj-h7j9
events:
- timestamp: 2024-06-05T07:08:02Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: a71ee90dac251d6b
componentName: snappy
componentVersion: "0.4"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-25T13:31:51Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-11-07T13:10:50Z
type: fixed
data:
fixed-version: 2.0.0-r0
- id: CGA-2r92-crq9-6h8p
aliases:
- CVE-2024-47554
- GHSA-78wr-2p64-hpwj
events:
- timestamp: 2024-10-04T08:05:57Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 2ac2475d6dc2d6fa
componentName: commons-io
componentVersion: 2.8.0
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hadoop-libraries-nar-1.27.0.nar
scanner: grype
- timestamp: 2024-10-16T01:59:35Z
type: pending-upstream-fix
data:
note: The transitive dependency commons-io v2.8.0 is found in [nifi-hadoop-libraries-nar](https://github.com/apache/nifi/blob/244400f54925a52e89ccf4f821b58a72ff9777a5/nifi-extension-bundles/nifi-hadoop-libraries-bundle/nifi-hadoop-libraries-nar/pom.xml) where commons-io is being brought in by [hadoop-client.](https://github.com/apache/nifi/blob/244400f54925a52e89ccf4f821b58a72ff9777a5/nifi-extension-bundles/nifi-hadoop-libraries-bundle/nifi-hadoop-libraries-nar/pom.xml#L29) The version is compiled based off of the parent [pom.xml’s definition](https://github.com/apache/nifi/blob/244400f54925a52e89ccf4f821b58a72ff9777a5/pom.xml#L145) of hadoop.version which requires upstream maintainers to update.
- timestamp: 2024-11-07T13:10:48Z
type: fixed
data:
fixed-version: 2.0.0-r0
- id: CGA-2x43-4rcw-8pc3
aliases:
- CVE-2024-38809
- GHSA-2rmj-mq67-h97g
events:
- timestamp: 2024-09-27T08:03:45Z
type: fixed
data:
fixed-version: 1.27.0-r1
- id: CGA-439m-2c4m-j5r4
aliases:
- CVE-2024-38808
- GHSA-9cmq-m9j5-mvww
events:
- timestamp: 2024-08-21T07:08:11Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 90f3e8b59c206e7e
componentName: spring-expression
componentVersion: 5.3.37
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-email-nar-1.27.0.nar
scanner: grype
- timestamp: 2024-08-30T16:24:47Z
type: fixed
data:
fixed-version: 1.27.0-r1
- id: CGA-448q-2j96-v6wq
aliases:
- CVE-2024-7254
- GHSA-735f-pc8j-v9w8
events:
- timestamp: 2024-09-21T07:08:39Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 0be9c7dbb9336512
componentName: protobuf-java
componentVersion: 2.5.0
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hadoop-libraries-nar-1.27.0.nar
scanner: grype
- timestamp: 2024-10-02T14:46:18Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-11-07T13:10:50Z
type: fixed
data:
fixed-version: 2.0.0-r0
- id: CGA-4f97-xch2-fqp3
aliases:
- CVE-2024-29025
- GHSA-5jpm-x58v-624v
events:
- timestamp: 2024-05-17T01:00:47Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 470809a5bd5857e4
componentName: netty-codec-http
componentVersion: 4.1.84.Final
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:12Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:13:35Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: d7f800220b1bc332
componentName: netty-codec-http
componentVersion: 4.1.84.Final
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-4p9j-8g99-x3wm
aliases:
- CVE-2023-34462
- GHSA-6mjq-h674-j845
events:
- timestamp: 2024-05-17T01:00:51Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 574e8fc180b6a82e
componentName: netty-handler
componentVersion: 4.1.84.Final
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:07Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:13:56Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 8ed77b863efd3c00
componentName: netty-handler
componentVersion: 4.1.84.Final
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-4phw-5934-cp4w
aliases:
- CVE-2024-29133
- GHSA-9w38-p64v-xpmv
events:
- timestamp: 2024-05-17T01:01:03Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: a8206f409f686724
componentName: commons-configuration2
componentVersion: 2.1.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hbase_2-client-service-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:14Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:14:50Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 1a4373e7adbd3c4e
componentName: commons-configuration2
componentVersion: 2.1.1
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hbase_2-client-service-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-5mrq-75x2-g8hj
aliases:
- CVE-2024-30171
- GHSA-v435-xc8x-wvr9
events:
- timestamp: 2024-05-17T01:01:45Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 5c53423d42f1274f
componentName: bcpkix-jdk18on
componentVersion: "1.71"
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:09Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:17:06Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 2e97ef63bb30e17c
componentName: bcpkix-jdk18on
componentVersion: "1.71"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-5qc7-mgj3-whcp
aliases:
- CVE-2022-41881
- GHSA-fx2c-96vj-985v
events:
- timestamp: 2024-05-17T01:01:06Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: bead1ce19c1ad2ac
componentName: netty-codec-haproxy
componentVersion: 4.1.84.Final
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:14Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:15:02Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: a7a7af874a8de700
componentName: netty-codec-haproxy
componentVersion: 4.1.84.Final
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-couchbase-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-6h6p-w435-25j2
aliases:
- CVE-2023-46120
- GHSA-mm8h-8587-p46h
events:
- timestamp: 2024-05-17T01:01:33Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: b411083892e89e35
componentName: amqp-client
componentVersion: 5.17.0
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-metrics-reporting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:06Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:16:32Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 514fc962f417faec
componentName: amqp-client
componentVersion: 5.17.0
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-metrics-reporting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-6jvc-fmj8-g22f
aliases:
- CVE-2024-29131
- GHSA-xjp4-hw94-mvp5
events:
- timestamp: 2024-05-17T01:01:58Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: a8206f409f686724
componentName: commons-configuration2
componentVersion: 2.1.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hbase_2-client-service-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:04Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:17:41Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 1a4373e7adbd3c4e
componentName: commons-configuration2
componentVersion: 2.1.1
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hbase_2-client-service-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-6rmf-ffqm-f8vv
aliases:
- CVE-2024-25710
- GHSA-4g9r-vxhx-9pgx
events:
- timestamp: 2024-05-17T01:00:40Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: eac3d3f5c1446699
componentName: commons-compress
componentVersion: "1.21"
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:13Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:12:43Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 6bfd1ff1bc97b9ff
componentName: commons-compress
componentVersion: "1.21"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-6xhq-ggm7-4q2r
aliases:
- CVE-2021-38153
- GHSA-3j6g-hxx5-3q26
events:
- timestamp: 2024-05-17T01:00:37Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 5f0d2c78c1d4b43d
componentName: kafka-clients
componentVersion: 2.0.0
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-kafka-2-0-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:17Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:12:11Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 262f9922f1f6fd16
componentName: kafka-clients
componentVersion: 2.0.0
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-kafka-2-0-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-7m9h-6gc8-vcqq
aliases:
- CVE-2024-38821
- GHSA-c4q5-6c82-3qpw
events:
- timestamp: 2024-10-29T09:16:02Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi-compat
componentID: cbcac0d97bb75cf2
componentName: spring-security-web
componentVersion: 5.8.14
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-toolkit-current/lib/spring-security-web-5.8.14.jar
scanner: grype
- timestamp: 2024-11-07T13:10:46Z
type: fixed
data:
fixed-version: 2.0.0-r0
- id: CGA-7rjh-334q-pq8g
aliases:
- CVE-2020-8908
- GHSA-5mg8-w23w-74h3
events:
- timestamp: 2024-05-17T01:00:49Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 6c75ff4ffd67eac3
componentName: guava
componentVersion: 14.0.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-social-media-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:03Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:13:46Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 37e170556587a4bf
componentName: guava
componentVersion: 14.0.1
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-social-media-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-8223-gxg7-8cjf
aliases:
- CVE-2018-10237
- GHSA-mvr2-9pj6-7w5j
events:
- timestamp: 2024-05-17T01:01:37Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 6c75ff4ffd67eac3
componentName: guava
componentVersion: 14.0.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-social-media-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:02Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:16:43Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 37e170556587a4bf
componentName: guava
componentVersion: 14.0.1
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-social-media-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-88fx-6j2p-hrcp
aliases:
- CVE-2024-34447
- GHSA-4h8f-2wvx-gg5w
events:
- timestamp: 2024-05-17T01:00:42Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 84cc2e3aa69dd2b2
componentName: bcprov-jdk18on
componentVersion: "1.71"
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:18Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:13:04Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: de7aa4cf3030983a
componentName: bcprov-jdk18on
componentVersion: "1.71"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-8rr9-ww3c-5c97
aliases:
- CVE-2024-37389
- GHSA-h658-qqv9-qwv8
events:
- timestamp: 2024-07-20T13:02:47Z
type: fixed
data:
fixed-version: 1.27.0-r0
- id: CGA-8vvp-pq4p-2hc6
aliases:
- CVE-2024-8184
- GHSA-g8m5-722r-8whq
events:
- timestamp: 2024-10-15T09:10:33Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi-compat
componentID: 6de63a7d575ec0f3
componentName: jetty-server
componentVersion: 9.4.54.v20240208
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-toolkit-current/lib/jetty-server-9.4.54.v20240208.jar
scanner: grype
- id: CGA-8wwh-mmvc-38jq
aliases:
- GHSA-crjg-w57m-rqqf
events:
- timestamp: 2024-07-24T07:07:31Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: ec2d95b8a62b475b
componentName: dnsjava
componentVersion: 2.1.7
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hbase_2-client-service-nar-1.27.0.nar
scanner: grype
- timestamp: 2024-07-30T15:52:20Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency (nifi-hbase_2-client-service-nar) which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-99xf-gfgx-9h82
aliases:
- CVE-2023-51775
- GHSA-6qvw-249j-h44c
events:
- timestamp: 2024-05-17T01:00:54Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: d4be8c692b6a1124
componentName: jose4j
componentVersion: 0.9.3
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-box-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:05Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:14:07Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 754b07c2ecb0649c
componentName: jose4j
componentVersion: 0.9.3
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-box-services-api-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-9f5h-57xr-g74j
aliases:
- CVE-2024-26308
- GHSA-4265-ccf5-phj5
events:
- timestamp: 2024-05-17T01:00:39Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: f6f208bf4083f0ba
componentName: commons-compress
componentVersion: "1.21"
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:09Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:12:32Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 6bfd1ff1bc97b9ff
componentName: commons-compress
componentVersion: "1.21"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-9v29-fwrv-3vmr
aliases:
- CVE-2023-33201
- GHSA-hr8g-6v94-x4m9
events:
- timestamp: 2024-05-17T01:01:22Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 84cc2e3aa69dd2b2
componentName: bcprov-jdk18on
componentVersion: "1.71"
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:01Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:15:57Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: de7aa4cf3030983a
componentName: bcprov-jdk18on
componentVersion: "1.71"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-scripting-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-9vjr-qmvr-wg48
aliases:
- CVE-2022-42004
- GHSA-rgv9-q543-rqg4
events:
- timestamp: 2024-05-17T01:01:40Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 21fc915d6c30f277
componentName: jackson-databind
componentVersion: 2.10.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:18Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:16:54Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 493c4c2168709bf4
componentName: jackson-databind
componentVersion: 2.10.1
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-c6r7-g99h-mjx4
aliases:
- CVE-2024-36114
- GHSA-973x-65j7-xcf4
events:
- timestamp: 2024-06-03T07:06:44Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: a98d96baa869de72
componentName: aircompressor
componentVersion: "0.21"
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-parquet-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-25T13:31:51Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-11-07T13:10:45Z
type: fixed
data:
fixed-version: 2.0.0-r0
- id: CGA-cr64-vww2-xpq8
aliases:
- CVE-2022-42003
- GHSA-jjjh-jjxp-wpff
events:
- timestamp: 2024-05-17T01:01:25Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 21fc915d6c30f277
componentName: jackson-databind
componentVersion: 2.10.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:08Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:16:09Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 493c4c2168709bf4
componentName: jackson-databind
componentVersion: 2.10.1
componentType: java-archive
componentLocation: /usr/share/nifi/nifi-current/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-06-09T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- id: CGA-fgh7-phh7-cj6x
aliases:
- CVE-2021-46877
- GHSA-3x8x-79m2-3w2w
events:
- timestamp: 2024-05-17T01:00:38Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi
componentID: 21fc915d6c30f277
componentName: jackson-databind
componentVersion: 2.10.1
componentType: java-archive
componentLocation: /usr/share/nifi/lib/nifi-hwx-schema-registry-nar-1.26.0.nar
scanner: grype
- timestamp: 2024-05-17T08:31:36Z
type: pending-upstream-fix
data:
note: This vulnerability exists within a pre-compiled dependency which nifi depends on, and we lack the ability to patch. The upstream maintainers must mitigate this CVE.
- timestamp: 2024-05-17T16:32:11Z
type: fixed
data:
fixed-version: 1.26.0-r2
- timestamp: 2024-05-29T07:12:22Z
type: detection
data:
type: scan/v1
data:
subpackageName: apache-nifi