-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaws_ecr_scan_result.json
11177 lines (11177 loc) · 410 KB
/
aws_ecr_scan_result.json
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
{
"imageScanFindings": {
"findings": [
{
"name": "CVE-2019-19814",
"description": "In the Linux kernel 5.0.21, mounting a crafted f2fs filesystem image can cause __remove_dirty_segment slab-out-of-bounds write access because an array is bounded by the number of dirty types (8) but the array index can exceed this.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-19814",
"severity": "CRITICAL",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "9.3"
}
]
},
{
"name": "CVE-2019-19816",
"description": "In the Linux kernel 5.0.21, mounting a crafted btrfs filesystem image and performing some operations can cause slab-out-of-bounds write access in __btrfs_map_block in fs/btrfs/volumes.c, because a value of 1 for the number of data stripes is mishandled.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-19816",
"severity": "CRITICAL",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "9.3"
}
]
},
{
"name": "CVE-2020-27153",
"description": "In BlueZ before 5.55, a double free was found in the gatttool disconnect_cb() routine from shared/att.c. A remote attacker could potentially cause a denial of service or code execution, during service discovery, due to a redundant disconnect MGMT event.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27153",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "5.50-1.2~deb10u1"
},
{
"key": "package_name",
"value": "bluez"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "7.5"
}
]
},
{
"name": "CVE-2019-25013",
"description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-25013",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "2.28-10"
},
{
"key": "package_name",
"value": "glibc"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.1"
}
]
},
{
"name": "CVE-2020-0452",
"description": "In exif_entry_get_value of exif-entry.c, there is a possible out of bounds write due to an integer overflow. This could lead to remote code execution if a third party app used this library to process remote image data with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-8.1 Android-9 Android-10 Android-11 Android-8.0Android ID: A-159625731",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-0452",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "0.6.21-5.1+deb10u4"
},
{
"key": "package_name",
"value": "libexif"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "7.5"
}
]
},
{
"name": "CVE-2020-0466",
"description": "In do_epoll_ctl and ep_loop_check_proc of eventpoll.c, there is a possible use after free due to a logic error. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-147802478References: Upstream kernel",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-0466",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-27777",
"description": "A flaw was found in the way RTAS handled memory accesses in userspace to kernel communication. On a locked down (usually due to Secure Boot) guest system running on top of PowerVM or KVM hypervisors (pseries platform) a root like local user could use this flaw to further increase their privileges to that of a running kernel.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27777",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-36158",
"description": "mwifiex_cmd_802_11_ad_hoc_start in drivers/net/wireless/marvell/mwifiex/join.c in the Linux kernel through 5.10.4 might allow remote attackers to execute arbitrary code via a long SSID value, aka CID-5c455c5ab332.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-36158",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2013-7445",
"description": "The Direct Rendering Manager (DRM) subsystem in the Linux kernel through 4.x mishandles requests for Graphics Execution Manager (GEM) objects, which allows context-dependent attackers to cause a denial of service (memory consumption) via an application that processes graphics data, as demonstrated by JavaScript code that creates many CANVAS elements for rendering by Chrome or Firefox.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2013-7445",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:N/I:N/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.8"
}
]
},
{
"name": "CVE-2019-19074",
"description": "A memory leak in the ath9k_wmi_cmd() function in drivers/net/wireless/ath/ath9k/wmi.c in the Linux kernel through 5.3.11 allows attackers to cause a denial of service (memory consumption), aka CID-728c1e2a05e4.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-19074",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:N/I:N/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.8"
}
]
},
{
"name": "CVE-2019-0145",
"description": "Buffer overflow in i40e driver for Intel(R) Ethernet 700 Series Controllers versions before 7.0 may allow an authenticated user to potentially enable an escalation of privilege via local access.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-0145",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-29374",
"description": "An issue was discovered in the Linux kernel before 5.7.3, related to mm/gup.c and mm/huge_memory.c. The get_user_pages (aka gup) implementation, when used for a copy-on-write page, does not properly consider the semantics of read operations and therefore can grant unintended write access, aka CID-17839856fd58.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-29374",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:M/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "6.9"
}
]
},
{
"name": "CVE-2020-0465",
"description": "In various methods of hid-multitouch.c, there is a possible out of bounds write due to a missing bounds check. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android kernelAndroid ID: A-162844689References: Upstream kernel",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-0465",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-29661",
"description": "A locking issue was discovered in the tty subsystem of the Linux kernel through 5.9.13. drivers/tty/tty_jobctrl.c allows a use-after-free attack against TIOCSPGRP, aka CID-54ffccbf053b.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-29661",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-14386",
"description": "A flaw was found in the Linux kernel before 5.9-rc4. Memory corruption can be exploited to gain root privileges from unprivileged processes. The highest threat from this vulnerability is to data confidentiality and integrity.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-14386",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-14356",
"description": "A flaw null pointer dereference in the Linux kernel cgroupv2 subsystem in versions before 5.7.10 was found in the way when reboot the system. A local user could use this flaw to crash the system or escalate their privileges on the system.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-14356",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-15780",
"description": "An issue was discovered in drivers/acpi/acpi_configfs.c in the Linux kernel before 5.7.7. Injection of malicious ACPI tables via configfs could be used by attackers to bypass lockdown and secure boot restrictions, aka CID-75b0cea7bf30.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-15780",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-29569",
"description": "An issue was discovered in the Linux kernel through 5.10.1, as used with Xen through 4.14.x. The Linux kernel PV block backend expects the kernel thread handler to reset ring->xenblkd to NULL when stopped. However, the handler may not have time to run if the frontend quickly toggles between the states connect and disconnect. As a consequence, the block backend may re-use a pointer after it was freed. A misbehaving guest can trigger a dom0 crash by continuously connecting / disconnecting a block frontend. Privilege escalation and information leaks cannot be ruled out. This only affects systems with a Linux blkback.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-29569",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.2"
}
]
},
{
"name": "CVE-2020-25643",
"description": "A flaw was found in the HDLC_PPP module of the Linux kernel in versions before 5.9-rc7. Memory corruption and a read overflow is caused by improper input validation in the ppp_cp_parse_cr function which can cause the system to crash or cause a denial of service. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-25643",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:S/C:P/I:P/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.5"
}
]
},
{
"name": "CVE-2019-19813",
"description": "In the Linux kernel 5.0.21, mounting a crafted btrfs filesystem image, performing some operations, and then making a syncfs system call can lead to a use-after-free in __mutex_lock in kernel/locking/mutex.c. This is related to mutex_can_spin_on_owner in kernel/locking/mutex.c, __btrfs_qgroup_free_meta in fs/btrfs/qgroup.c, and btrfs_insert_delayed_items in fs/btrfs/delayed-inode.c.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-19813",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "4.19.132-1"
},
{
"key": "package_name",
"value": "linux"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.1"
}
]
},
{
"name": "CVE-2020-27844",
"description": "A flaw was found in openjpeg's src/lib/openjp2/t2.c in versions prior to 2.4.0. This flaw allows an attacker to provide crafted input to openjpeg during conversion and encoding, causing an out-of-bounds write. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27844",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "2.3.0-2+deb10u1"
},
{
"key": "package_name",
"value": "openjpeg2"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:P/I:P/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "8.3"
}
]
},
{
"name": "CVE-2020-27843",
"description": "A flaw was found in OpenJPEG in versions prior to 2.4.0. This flaw allows an attacker to provide specially crafted input to the conversion or encoding functionality, causing an out-of-bounds read. The highest threat from this vulnerability is system availability.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27843",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "2.3.0-2+deb10u1"
},
{
"key": "package_name",
"value": "openjpeg2"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.1"
}
]
},
{
"name": "CVE-2020-25696",
"description": "A flaw was found in the psql interactive terminal of PostgreSQL in versions before 13.1, before 12.5, before 11.10, before 10.15, before 9.6.20 and before 9.5.24. If an interactive psql session uses \\gset when querying a compromised server, the attacker can execute arbitrary code as the operating system account running psql. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-25696",
"severity": "HIGH",
"attributes": [
{
"key": "package_version",
"value": "11.7-0+deb10u1"
},
{
"key": "package_name",
"value": "postgresql-11"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:H/Au:N/C:C/I:C/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "7.6"
}
]
},
{
"name": "CVE-2020-27350",
"description": "APT had several integer overflows and underflows while parsing .deb packages, aka GHSL-2020-168 GHSL-2020-169, in files apt-pkg/contrib/extracttar.cc, apt-pkg/deb/debfile.cc, and apt-pkg/contrib/arfile.cc. This issue affects: apt 1.2.32ubuntu0 versions prior to 1.2.32ubuntu0.2; 1.6.12ubuntu0 versions prior to 1.6.12ubuntu0.2; 2.0.2ubuntu0 versions prior to 2.0.2ubuntu0.2; 2.1.10ubuntu0 versions prior to 2.1.10ubuntu0.1;",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27350",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "1.8.2.1"
},
{
"key": "package_name",
"value": "apt"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.6"
}
]
},
{
"name": "CVE-2020-8284",
"description": "A malicious server can use the FTP PASV response to trick curl 7.73.0 and earlier into connecting back to a given IP address and port, and this way potentially make curl extract information about services that are otherwise private and not disclosed, for example doing port scanning and service banner extractions.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-8284",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "7.64.0-4+deb10u1"
},
{
"key": "package_name",
"value": "curl"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:P/I:N/A:N"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-8285",
"description": "curl 7.21.0 to and including 7.73.0 is vulnerable to uncontrolled recursion due to a stack overflow issue in FTP wildcard match parsing.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-8285",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "7.64.0-4+deb10u1"
},
{
"key": "package_name",
"value": "curl"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "5"
}
]
},
{
"name": "CVE-2020-8231",
"description": "Due to use of a dangling pointer, libcurl 7.29.0 through 7.71.1 can use the wrong connection when sending data.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-8231",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "7.64.0-4+deb10u1"
},
{
"key": "package_name",
"value": "curl"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:P/I:N/A:N"
},
{
"key": "CVSS2_SCORE",
"value": "5"
}
]
},
{
"name": "CVE-2020-8177",
"description": "curl 7.20.0 through 7.70.0 is vulnerable to improper restriction of names for files and other resources that can lead too overwriting a local file when the -J flag is used.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-8177",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "7.64.0-4+deb10u1"
},
{
"key": "package_name",
"value": "curl"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:L/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.6"
}
]
},
{
"name": "CVE-2020-8286",
"description": "curl 7.41.0 through 7.73.0 is vulnerable to an improper check for certificate revocation due to insufficient verification of the OCSP response.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-8286",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "7.64.0-4+deb10u1"
},
{
"key": "package_name",
"value": "curl"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:N/I:P/A:N"
},
{
"key": "CVSS2_SCORE",
"value": "5"
}
]
},
{
"name": "CVE-2019-18804",
"description": "DjVuLibre 3.5.27 has a NULL pointer dereference in the function DJVU::filter_fv at IW44EncodeCodec.cpp.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2019-18804",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "3.5.27.1-10"
},
{
"key": "package_name",
"value": "djvulibre"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "5"
}
]
},
{
"name": "CVE-2020-15999",
"description": "Heap buffer overflow in Freetype in Google Chrome prior to 86.0.4240.111 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-15999",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "2.9.1-3+deb10u1"
},
{
"key": "package_name",
"value": "freetype"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2018-12886",
"description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2018-12886",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8.3.0-6"
},
{
"key": "package_name",
"value": "gcc-8"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "6.8"
}
]
},
{
"name": "CVE-2020-1751",
"description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-1751",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "2.28-10"
},
{
"key": "package_name",
"value": "glibc"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:L/AC:M/Au:N/C:P/I:P/A:C"
},
{
"key": "CVSS2_SCORE",
"value": "5.9"
}
]
},
{
"name": "CVE-2020-27767",
"description": "A flaw was found in ImageMagick in MagickCore/quantum.h. An attacker who submits a crafted file that is processed by ImageMagick could trigger undefined behavior in the form of values outside the range of types `float` and `unsigned char`. This would most likely lead to an impact to application availability, but could potentially cause other problems related to undefined behavior. This flaw affects ImageMagick versions prior to 7.0.9-0.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27767",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-27773",
"description": "A flaw was found in ImageMagick in MagickCore/gem-private.h. An attacker who submits a crafted file that is processed by ImageMagick could trigger undefined behavior in the form of values outside the range of type `unsigned char` or division by zero. This would most likely lead to an impact to application availability, but could potentially cause other problems related to undefined behavior. This flaw affects ImageMagick versions prior to 7.0.9-0.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27773",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-19667",
"description": "Stack-based buffer overflow and unconditional jump in ReadXPMImage in coders/xpm.c in ImageMagick 7.0.10-7.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-19667",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "6.8"
}
]
},
{
"name": "CVE-2020-27760",
"description": "In `GammaImage()` of /MagickCore/enhance.c, depending on the `gamma` value, it's possible to trigger a divide-by-zero condition when a crafted input file is processed by ImageMagick. This could lead to an impact to application availability. The patch uses the `PerceptibleReciprocal()` to prevent the divide-by-zero from occurring. This flaw affects ImageMagick versions prior to ImageMagick 7.0.8-68.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27760",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-25674",
"description": "WriteOnePNGImage() from coders/png.c (the PNG coder) has a for loop with an improper exit condition that can allow an out-of-bounds READ via heap-buffer-overflow. This occurs because it is possible for the colormap to have less than 256 valid values but the loop condition will loop 256 times, attempting to pass invalid colormap data to the event logger. The patch replaces the hardcoded 256 value with a call to MagickMin() to ensure the proper value is used. This could impact application availability when a specially crafted input file is processed by ImageMagick. This flaw affects ImageMagick versions prior to 7.0.8-68.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-25674",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-25676",
"description": "In CatromWeights(), MeshInterpolate(), InterpolatePixelChannel(), InterpolatePixelChannels(), and InterpolatePixelInfo(), which are all functions in /MagickCore/pixel.c, there were multiple unconstrained pixel offset calculations which were being used with the floor() function. These calculations produced undefined behavior in the form of out-of-range and integer overflows, as identified by UndefinedBehaviorSanitizer. These instances of undefined behavior could be triggered by an attacker who is able to supply a crafted input file to be processed by ImageMagick. These issues could impact application availability or potentially cause other problems related to undefined behavior. This flaw affects ImageMagick versions prior to 7.0.9-0.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-25676",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-29599",
"description": "ImageMagick before 6.9.11-40 and 7.x before 7.0.10-40 mishandles the -authenticate option, which allows setting a password for password-protected PDF files. The user-controlled password was not properly escaped/sanitized and it was therefore possible to inject additional shell commands via coders/pdf.c.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-29599",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:P/I:P/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "6.8"
}
]
},
{
"name": "CVE-2020-25665",
"description": "The PALM image coder at coders/palm.c makes an improper call to AcquireQuantumMemory() in routine WritePALMImage() because it needs to be offset by 256. This can cause a out-of-bounds read later on in the routine. The patch adds 256 to bytes_per_row in the call to AcquireQuantumMemory(). This could cause impact to reliability. This flaw affects ImageMagick versions prior to 7.0.8-68.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-25665",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"
},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:M/Au:N/C:N/I:N/A:P"
},
{
"key": "CVSS2_SCORE",
"value": "4.3"
}
]
},
{
"name": "CVE-2020-27752",
"description": "A flaw was found in ImageMagick in MagickCore/quantum-private.h. An attacker who submits a crafted file that is processed by ImageMagick could trigger a heap buffer overflow. This would most likely lead to an impact to application availability, but could potentially lead to an impact to data integrity as well. This flaw affects ImageMagick versions prior to 7.0.9-0.",
"uri": "https://security-tracker.debian.org/tracker/CVE-2020-27752",
"severity": "MEDIUM",
"attributes": [
{
"key": "package_version",
"value": "8:6.9.10.23+dfsg-2.1+deb10u1"
},
{
"key": "package_name",
"value": "imagemagick"