-
Notifications
You must be signed in to change notification settings - Fork 0
/
snyk-sarif.json
8288 lines (8288 loc) · 505 KB
/
snyk-sarif.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
{
"$schema": "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "Snyk Container",
"semanticVersion": "1.1294.0",
"version": "1.1294.0",
"informationUri": "https://docs.snyk.io/",
"properties": {
"artifactsScanned": 413
},
"rules": [
{
"id": "SNYK-DEBIAN12-AOM-5878995",
"shortDescription": {
"text": "Low severity - Out-of-Bounds vulnerability in aom"
},
"fullDescription": {
"text": "(CVE-2023-39616) aom/libaom3@3.6.0-1+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `aom` package and not the `aom` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAOMedia v3.0.0 to v3.5.0 was discovered to contain an invalid read memory access via the component assign_frame_buffer_p in av1/common/av1_common_int.h.\n## Remediation\nThere is no fixed version for `Debian:12` `aom`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-39616](https://security-tracker.debian.org/tracker/CVE-2023-39616)\n- [https://bugs.chromium.org/p/aomedia/issues/detail?id=3372#c3](https://bugs.chromium.org/p/aomedia/issues/detail?id=3372#c3)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-119",
"deb"
],
"cvssv3_baseScore": 7.5,
"security-severity": "7.5"
}
},
{
"id": "SNYK-DEBIAN12-AOM-6140324",
"shortDescription": {
"text": "Low severity - Out-of-bounds Write vulnerability in aom"
},
"fullDescription": {
"text": "(CVE-2023-6879) aom/libaom3@3.6.0-1+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `aom` package and not the `aom` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nIncreasing the resolution of video frames, while performing a multi-threaded encode, can result in a heap overflow in av1_loop_restoration_dealloc().\n\n\n## Remediation\nThere is no fixed version for `Debian:12` `aom`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-6879](https://security-tracker.debian.org/tracker/CVE-2023-6879)\n- [https://aomedia.googlesource.com/aom/+/refs/tags/v3.7.1](https://aomedia.googlesource.com/aom/+/refs/tags/v3.7.1)\n- [https://crbug.com/aomedia/3491](https://crbug.com/aomedia/3491)\n- [https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AYONA2XSNFMXLAW4IHLFI5UVV3QRNG5K/](https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AYONA2XSNFMXLAW4IHLFI5UVV3QRNG5K/)\n- [https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D6C2HN4T2S6GYNTAUXLH45LQZHK7QPHP/](https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D6C2HN4T2S6GYNTAUXLH45LQZHK7QPHP/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-787",
"deb"
],
"cvssv3_baseScore": 9.8,
"security-severity": "9.8"
}
},
{
"id": "SNYK-DEBIAN12-APR-7833616",
"shortDescription": {
"text": "Low severity - Incorrect Permission Assignment for Critical Resource vulnerability in apr"
},
"fullDescription": {
"text": "(CVE-2023-49582) apr/libapr1@1.7.2-3"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `apr` package and not the `apr` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nLax permissions set by the Apache Portable Runtime library on Unix platforms would allow local users read access to named shared memory segments, potentially revealing sensitive application data. \n\nThis issue does not affect non-Unix platforms, or builds with APR_USE_SHMEM_SHMGET=1 (apr.h)\n\nUsers are recommended to upgrade to APR version 1.7.5, which fixes this issue.\n## Remediation\nThere is no fixed version for `Debian:12` `apr`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-49582](https://security-tracker.debian.org/tracker/CVE-2023-49582)\n- [https://lists.apache.org/thread/sntjc04t1rvjhdzz2tzmtz2zdnmv7dc4](https://lists.apache.org/thread/sntjc04t1rvjhdzz2tzmtz2zdnmv7dc4)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-732",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-APT-1541449",
"shortDescription": {
"text": "Low severity - Improper Verification of Cryptographic Signature vulnerability in apt"
},
"fullDescription": {
"text": "(CVE-2011-3374) apt/libapt-pkg6.0@2.6.1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `apt` package and not the `apt` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nIt was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.\n## Remediation\nThere is no fixed version for `Debian:12` `apt`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2011-3374](https://security-tracker.debian.org/tracker/CVE-2011-3374)\n- [https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480)\n- [https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html](https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html)\n- [https://seclists.org/fulldisclosure/2011/Sep/221](https://seclists.org/fulldisclosure/2011/Sep/221)\n- [https://snyk.io/vuln/SNYK-LINUX-APT-116518](https://snyk.io/vuln/SNYK-LINUX-APT-116518)\n- [https://ubuntu.com/security/CVE-2011-3374](https://ubuntu.com/security/CVE-2011-3374)\n- [https://access.redhat.com/security/cve/cve-2011-3374](https://access.redhat.com/security/cve/cve-2011-3374)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-347",
"deb"
],
"cvssv3_baseScore": 3.7,
"security-severity": "3.7"
}
},
{
"id": "SNYK-DEBIAN12-BINUTILS-1542119",
"shortDescription": {
"text": "Low severity - Out-of-bounds Write vulnerability in binutils"
},
"fullDescription": {
"text": "(CVE-2018-20673) binutils/binutils-common@2.40-2"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `binutils` package and not the `binutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nThe demangle_template function in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.31.1, contains an integer overflow vulnerability (for "Create an array for saving the template argument values") that can trigger a heap-based buffer overflow, as demonstrated by nm.\n## Remediation\nThere is no fixed version for `Debian:12` `binutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2018-20673](https://security-tracker.debian.org/tracker/CVE-2018-20673)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=24039](https://sourceware.org/bugzilla/show_bug.cgi?id=24039)\n- [http://www.securityfocus.com/bid/106454](http://www.securityfocus.com/bid/106454)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20673](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20673)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-787",
"CWE-190",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-BINUTILS-1542166",
"shortDescription": {
"text": "Low severity - Out-of-bounds Read vulnerability in binutils"
},
"fullDescription": {
"text": "(CVE-2018-20712) binutils/binutils-common@2.40-2"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `binutils` package and not the `binutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nA heap-based buffer over-read exists in the function d_expression_1 in cp-demangle.c in GNU libiberty, as distributed in GNU Binutils 2.31.1. A crafted input can cause segmentation faults, leading to denial-of-service, as demonstrated by c++filt.\n## Remediation\nThere is no fixed version for `Debian:12` `binutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2018-20712](https://security-tracker.debian.org/tracker/CVE-2018-20712)\n- [https://support.f5.com/csp/article/K38336243](https://support.f5.com/csp/article/K38336243)\n- [https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20712](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-20712)\n- [https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88629](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88629)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=24043](https://sourceware.org/bugzilla/show_bug.cgi?id=24043)\n- [http://www.securityfocus.com/bid/106563](http://www.securityfocus.com/bid/106563)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20712](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20712)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-125",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-BINUTILS-1542259",
"shortDescription": {
"text": "Low severity - Uncontrolled Recursion vulnerability in binutils"
},
"fullDescription": {
"text": "(CVE-2018-9996) binutils/binutils-common@2.40-2"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `binutils` package and not the `binutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered in cplus-dem.c in GNU libiberty, as distributed in GNU Binutils 2.30. Stack Exhaustion occurs in the C++ demangling functions provided by libiberty, and there are recursive stack frames: demangle_template_value_parm, demangle_integral_value, and demangle_expression.\n## Remediation\nThere is no fixed version for `Debian:12` `binutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2018-9996](https://security-tracker.debian.org/tracker/CVE-2018-9996)\n- [https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85304](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85304)\n- [http://www.securityfocus.com/bid/103733](http://www.securityfocus.com/bid/103733)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-9996](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-9996)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-674",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-BINUTILS-1542441",
"shortDescription": {
"text": "Low severity - Allocation of Resources Without Limits or Throttling vulnerability in binutils"
},
"fullDescription": {
"text": "(CVE-2017-13716) binutils/binutils-common@2.40-2"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `binutils` package and not the `binutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nThe C++ symbol demangler routine in cplus-dem.c in libiberty, as distributed in GNU Binutils 2.29, allows remote attackers to cause a denial of service (excessive memory allocation and application crash) via a crafted file, as demonstrated by a call from the Binary File Descriptor (BFD) library (aka libbfd).\n## Remediation\nThere is no fixed version for `Debian:12` `binutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2017-13716](https://security-tracker.debian.org/tracker/CVE-2017-13716)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=22009](https://sourceware.org/bugzilla/show_bug.cgi?id=22009)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-13716](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-13716)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-770",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-BINUTILS-5422222",
"shortDescription": {
"text": "Low severity - Out-of-bounds Write vulnerability in binutils"
},
"fullDescription": {
"text": "(CVE-2023-1972) binutils/binutils-common@2.40-2"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `binutils` package and not the `binutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nA potential heap based buffer overflow was found in _bfd_elf_slurp_version_tables() in bfd/elf.c. This may lead to loss of availability.\n## Remediation\nThere is no fixed version for `Debian:12` `binutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-1972](https://security-tracker.debian.org/tracker/CVE-2023-1972)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=2185646](https://bugzilla.redhat.com/show_bug.cgi?id=2185646)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=30285](https://sourceware.org/bugzilla/show_bug.cgi?id=30285)\n- [https://security.gentoo.org/glsa/202309-15](https://security.gentoo.org/glsa/202309-15)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-787",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-BINUTILS-5803143",
"shortDescription": {
"text": "Low severity - Out-of-bounds Write vulnerability in binutils"
},
"fullDescription": {
"text": "(CVE-2021-32256) binutils/binutils-common@2.40-2"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `binutils` package and not the `binutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered in GNU libiberty, as distributed in GNU Binutils 2.36. It is a stack-overflow issue in demangle_type in rust-demangle.c.\n## Remediation\nThere is no fixed version for `Debian:12` `binutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2021-32256](https://security-tracker.debian.org/tracker/CVE-2021-32256)\n- [https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1927070](https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1927070)\n- [https://security.netapp.com/advisory/ntap-20230824-0013/](https://security.netapp.com/advisory/ntap-20230824-0013/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-787",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-CAIRO-1542506",
"shortDescription": {
"text": "Low severity - Out-of-bounds Write vulnerability in cairo"
},
"fullDescription": {
"text": "(CVE-2018-18064) cairo/libcairo2@1.16.0-7"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `cairo` package and not the `cairo` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\ncairo through 1.15.14 has an out-of-bounds stack-memory write during processing of a crafted document by WebKitGTK+ because of the interaction between cairo-rectangular-scan-converter.c (the generate and render_rows functions) and cairo-image-compositor.c (the _cairo_image_spans_and_zero function).\n## Remediation\nThere is no fixed version for `Debian:12` `cairo`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2018-18064](https://security-tracker.debian.org/tracker/CVE-2018-18064)\n- [https://gitlab.freedesktop.org/cairo/cairo/issues/341](https://gitlab.freedesktop.org/cairo/cairo/issues/341)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-18064](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-18064)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-787",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-CAIRO-1542635",
"shortDescription": {
"text": "Low severity - Reachable Assertion vulnerability in cairo"
},
"fullDescription": {
"text": "(CVE-2019-6461) cairo/libcairo2@1.16.0-7"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `cairo` package and not the `cairo` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered in cairo 1.16.0. There is an assertion problem in the function _cairo_arc_in_direction in the file cairo-arc.c.\n## Remediation\nThere is no fixed version for `Debian:12` `cairo`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-6461](https://security-tracker.debian.org/tracker/CVE-2019-6461)\n- [https://github.com/TeamSeri0us/pocs/tree/master/gerbv](https://github.com/TeamSeri0us/pocs/tree/master/gerbv)\n- [https://gitlab.freedesktop.org/cairo/cairo/issues/352](https://gitlab.freedesktop.org/cairo/cairo/issues/352)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-6461](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-6461)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-617",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-CAIRO-1542674",
"shortDescription": {
"text": "Low severity - NULL Pointer Dereference vulnerability in cairo"
},
"fullDescription": {
"text": "(CVE-2017-7475) cairo/libcairo2@1.16.0-7"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `cairo` package and not the `cairo` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nCairo version 1.15.4 is vulnerable to a NULL pointer dereference related to the FT_Load_Glyph and FT_Render_Glyph resulting in an application crash.\n## Remediation\nThere is no fixed version for `Debian:12` `cairo`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2017-7475](https://security-tracker.debian.org/tracker/CVE-2017-7475)\n- [https://bugs.freedesktop.org/show_bug.cgi?id=100763](https://bugs.freedesktop.org/show_bug.cgi?id=100763)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E)\n- [http://seclists.org/oss-sec/2017/q2/151](http://seclists.org/oss-sec/2017/q2/151)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2017-7475](https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2017-7475)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-7475](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2017-7475)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-476",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-CAIRO-1542729",
"shortDescription": {
"text": "Low severity - Loop with Unreachable Exit Condition ('Infinite Loop') vulnerability in cairo"
},
"fullDescription": {
"text": "(CVE-2019-6462) cairo/libcairo2@1.16.0-7"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `cairo` package and not the `cairo` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered in cairo 1.16.0. There is an infinite loop in the function _arc_error_normalized in the file cairo-arc.c, related to _arc_max_angle_for_tolerance_normalized.\n## Remediation\nThere is no fixed version for `Debian:12` `cairo`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-6462](https://security-tracker.debian.org/tracker/CVE-2019-6462)\n- [https://github.com/TeamSeri0us/pocs/tree/master/gerbv](https://github.com/TeamSeri0us/pocs/tree/master/gerbv)\n- [https://gitlab.freedesktop.org/cairo/cairo/issues/353](https://gitlab.freedesktop.org/cairo/cairo/issues/353)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-6462](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-6462)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-835",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-COREUTILS-1543939",
"shortDescription": {
"text": "Low severity - Improper Input Validation vulnerability in coreutils"
},
"fullDescription": {
"text": "(CVE-2016-2781) coreutils@9.1-1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `coreutils` package and not the `coreutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nchroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.\n## Remediation\nThere is no fixed version for `Debian:12` `coreutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2016-2781](https://security-tracker.debian.org/tracker/CVE-2016-2781)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E)\n- [http://www.openwall.com/lists/oss-security/2016/02/28/2](http://www.openwall.com/lists/oss-security/2016/02/28/2)\n- [http://www.openwall.com/lists/oss-security/2016/02/28/3](http://www.openwall.com/lists/oss-security/2016/02/28/3)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2016-2781](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2016-2781)\n- [https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E](https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-20",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-COREUTILS-1543947",
"shortDescription": {
"text": "Low severity - Race Condition vulnerability in coreutils"
},
"fullDescription": {
"text": "(CVE-2017-18018) coreutils@9.1-1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `coreutils` package and not the `coreutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nIn GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.\n## Remediation\nThere is no fixed version for `Debian:12` `coreutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2017-18018](https://security-tracker.debian.org/tracker/CVE-2017-18018)\n- [https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18018](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-18018)\n- [http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html](http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-362",
"deb"
],
"cvssv3_baseScore": 4.7,
"security-severity": "4.7"
}
},
{
"id": "SNYK-DEBIAN12-CURL-6501697",
"shortDescription": {
"text": "Low severity - CVE-2024-2379 vulnerability in curl"
},
"fullDescription": {
"text": "(CVE-2024-2379) curl/libcurl4@7.88.1-10+deb12u7"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `curl` package and not the `curl` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nlibcurl skips the certificate verification for a QUIC connection under certain conditions, when built to use wolfSSL. If told to use an unknown/bad cipher or curve, the error path accidentally skips the verification and returns OK, thus ignoring any certificate problems.\n## Remediation\nThere is no fixed version for `Debian:12` `curl`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2024-2379](https://security-tracker.debian.org/tracker/CVE-2024-2379)\n- [https://curl.se/docs/CVE-2024-2379.html](https://curl.se/docs/CVE-2024-2379.html)\n- [https://curl.se/docs/CVE-2024-2379.json](https://curl.se/docs/CVE-2024-2379.json)\n- [https://hackerone.com/reports/2410774](https://hackerone.com/reports/2410774)\n- [http://www.openwall.com/lists/oss-security/2024/03/27/2](http://www.openwall.com/lists/oss-security/2024/03/27/2)\n- [https://security.netapp.com/advisory/ntap-20240531-0001/](https://security.netapp.com/advisory/ntap-20240531-0001/)\n- [https://support.apple.com/kb/HT214118](https://support.apple.com/kb/HT214118)\n- [https://support.apple.com/kb/HT214119](https://support.apple.com/kb/HT214119)\n- [https://support.apple.com/kb/HT214120](https://support.apple.com/kb/HT214120)\n- [http://seclists.org/fulldisclosure/2024/Jul/20](http://seclists.org/fulldisclosure/2024/Jul/20)\n- [http://seclists.org/fulldisclosure/2024/Jul/18](http://seclists.org/fulldisclosure/2024/Jul/18)\n- [http://seclists.org/fulldisclosure/2024/Jul/19](http://seclists.org/fulldisclosure/2024/Jul/19)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": null,
"security-severity": "null"
}
},
{
"id": "SNYK-DEBIAN12-CURL-7930897",
"shortDescription": {
"text": "Low severity - CVE-2024-8096 vulnerability in curl"
},
"fullDescription": {
"text": "(CVE-2024-8096) curl/libcurl4@7.88.1-10+deb12u7"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `curl` package and not the `curl` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nWhen curl is told to use the Certificate Status Request TLS extension, often referred to as OCSP stapling, to verify that the server certificate is valid, it might fail to detect some OCSP problems and instead wrongly consider the response as fine. If the returned status reports another error than 'revoked' (like for example 'unauthorized') it is not treated as a bad certficate.\n## Remediation\nThere is no fixed version for `Debian:12` `curl`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2024-8096](https://security-tracker.debian.org/tracker/CVE-2024-8096)\n- [https://curl.se/docs/CVE-2024-8096.html](https://curl.se/docs/CVE-2024-8096.html)\n- [https://curl.se/docs/CVE-2024-8096.json](https://curl.se/docs/CVE-2024-8096.json)\n- [https://hackerone.com/reports/2669852](https://hackerone.com/reports/2669852)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": null,
"security-severity": "null"
}
},
{
"id": "SNYK-DEBIAN12-DAV1D-5518047",
"shortDescription": {
"text": "Low severity - Race Condition vulnerability in dav1d"
},
"fullDescription": {
"text": "(CVE-2023-32570) dav1d/libdav1d6@1.0.0-2+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `dav1d` package and not the `dav1d` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nVideoLAN dav1d before 1.2.0 has a thread_task.c race condition that can lead to an application crash, related to dav1d_decode_frame_exit.\n## Remediation\nThere is no fixed version for `Debian:12` `dav1d`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-32570](https://security-tracker.debian.org/tracker/CVE-2023-32570)\n- [https://code.videolan.org/videolan/dav1d/-/commit/cf617fdae0b9bfabd27282854c8e81450d955efa](https://code.videolan.org/videolan/dav1d/-/commit/cf617fdae0b9bfabd27282854c8e81450d955efa)\n- [https://code.videolan.org/videolan/dav1d/-/tags/1.2.0](https://code.videolan.org/videolan/dav1d/-/tags/1.2.0)\n- [https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3WGSO7UMOF4MVLQ5H6KIV7OG6ONS377B/](https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3WGSO7UMOF4MVLQ5H6KIV7OG6ONS377B/)\n- [https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LXZ6CUNJFDJLCFOZHY2TIGMCAEITLCRP/](https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LXZ6CUNJFDJLCFOZHY2TIGMCAEITLCRP/)\n- [https://security.gentoo.org/glsa/202310-05](https://security.gentoo.org/glsa/202310-05)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/3WGSO7UMOF4MVLQ5H6KIV7OG6ONS377B/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/3WGSO7UMOF4MVLQ5H6KIV7OG6ONS377B/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LXZ6CUNJFDJLCFOZHY2TIGMCAEITLCRP/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LXZ6CUNJFDJLCFOZHY2TIGMCAEITLCRP/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-362",
"deb"
],
"cvssv3_baseScore": 5.9,
"security-severity": "5.9"
}
},
{
"id": "SNYK-DEBIAN12-DJVULIBRE-5858453",
"shortDescription": {
"text": "Low severity - Divide By Zero vulnerability in djvulibre"
},
"fullDescription": {
"text": "(CVE-2021-46312) djvulibre/libdjvulibre21@3.5.28-2+b1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `djvulibre` package and not the `djvulibre` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered IW44EncodeCodec.cpp in djvulibre 3.5.28 in allows attackers to cause a denial of service via divide by zero.\n## Remediation\nThere is no fixed version for `Debian:12` `djvulibre`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2021-46312](https://security-tracker.debian.org/tracker/CVE-2021-46312)\n- [https://sourceforge.net/p/djvu/bugs/344/](https://sourceforge.net/p/djvu/bugs/344/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/4APFAWR7QE27GXQMRKR6XKNZWWUJ5YMH/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/4APFAWR7QE27GXQMRKR6XKNZWWUJ5YMH/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HN4JOIBNMJMW2NQSGT6DCDCQZJ2ROFM7/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HN4JOIBNMJMW2NQSGT6DCDCQZJ2ROFM7/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/XEEGAR4WUF6LTOJEHSON7I2MBTPFTVR5/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/XEEGAR4WUF6LTOJEHSON7I2MBTPFTVR5/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-369",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-DJVULIBRE-5858454",
"shortDescription": {
"text": "Low severity - Divide By Zero vulnerability in djvulibre"
},
"fullDescription": {
"text": "(CVE-2021-46310) djvulibre/libdjvulibre21@3.5.28-2+b1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `djvulibre` package and not the `djvulibre` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered IW44Image.cpp in djvulibre 3.5.28 in allows attackers to cause a denial of service via divide by zero.\n## Remediation\nThere is no fixed version for `Debian:12` `djvulibre`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2021-46310](https://security-tracker.debian.org/tracker/CVE-2021-46310)\n- [https://sourceforge.net/p/djvu/bugs/345/](https://sourceforge.net/p/djvu/bugs/345/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/4APFAWR7QE27GXQMRKR6XKNZWWUJ5YMH/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/4APFAWR7QE27GXQMRKR6XKNZWWUJ5YMH/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HN4JOIBNMJMW2NQSGT6DCDCQZJ2ROFM7/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HN4JOIBNMJMW2NQSGT6DCDCQZJ2ROFM7/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/XEEGAR4WUF6LTOJEHSON7I2MBTPFTVR5/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/XEEGAR4WUF6LTOJEHSON7I2MBTPFTVR5/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-369",
"deb"
],
"cvssv3_baseScore": 6.5,
"security-severity": "6.5"
}
},
{
"id": "SNYK-DEBIAN12-ELFUTILS-6254969",
"shortDescription": {
"text": "Low severity - CVE-2024-25260 vulnerability in elfutils"
},
"fullDescription": {
"text": "(CVE-2024-25260) elfutils/libelf1@0.188-2.1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `elfutils` package and not the `elfutils` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nelfutils v0.189 was discovered to contain a NULL pointer dereference via the handle_verdef() function at readelf.c.\n## Remediation\nThere is no fixed version for `Debian:12` `elfutils`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2024-25260](https://security-tracker.debian.org/tracker/CVE-2024-25260)\n- [https://github.com/schsiung/fuzzer_issues/issues/1](https://github.com/schsiung/fuzzer_issues/issues/1)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=31058](https://sourceware.org/bugzilla/show_bug.cgi?id=31058)\n- [https://sourceware.org/elfutils/](https://sourceware.org/elfutils/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": null,
"security-severity": "null"
}
},
{
"id": "SNYK-DEBIAN12-EXPAT-6227597",
"shortDescription": {
"text": "Low severity - Resource Exhaustion vulnerability in expat"
},
"fullDescription": {
"text": "(CVE-2023-52425) expat/libexpat1@2.5.0-1+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `expat` package and not the `expat` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nlibexpat through 2.5.0 allows a denial of service (resource consumption) because many full reparsings are required in the case of a large token for which multiple buffer fills are needed.\n## Remediation\nThere is no fixed version for `Debian:12` `expat`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-52425](https://security-tracker.debian.org/tracker/CVE-2023-52425)\n- [https://github.com/libexpat/libexpat/pull/789](https://github.com/libexpat/libexpat/pull/789)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PNRIHC7DVVRAIWFRGV23Y6UZXFBXSQDB/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PNRIHC7DVVRAIWFRGV23Y6UZXFBXSQDB/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WNUBSGZFEZOBHJFTAD42SAN4ATW2VEMV/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WNUBSGZFEZOBHJFTAD42SAN4ATW2VEMV/)\n- [https://lists.debian.org/debian-lts-announce/2024/04/msg00006.html](https://lists.debian.org/debian-lts-announce/2024/04/msg00006.html)\n- [http://www.openwall.com/lists/oss-security/2024/03/20/5](http://www.openwall.com/lists/oss-security/2024/03/20/5)\n- [https://security.netapp.com/advisory/ntap-20240614-0003/](https://security.netapp.com/advisory/ntap-20240614-0003/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-400",
"deb"
],
"cvssv3_baseScore": 7.5,
"security-severity": "7.5"
}
},
{
"id": "SNYK-DEBIAN12-EXPAT-6227603",
"shortDescription": {
"text": "Low severity - Improper Restriction of Recursive Entity References in DTDs ('XML Entity Expansion') vulnerability in expat"
},
"fullDescription": {
"text": "(CVE-2023-52426) expat/libexpat1@2.5.0-1+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `expat` package and not the `expat` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nlibexpat through 2.5.0 allows recursive XML Entity Expansion if XML_DTD is undefined at compile time.\n## Remediation\nThere is no fixed version for `Debian:12` `expat`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-52426](https://security-tracker.debian.org/tracker/CVE-2023-52426)\n- [https://cwe.mitre.org/data/definitions/776.html](https://cwe.mitre.org/data/definitions/776.html)\n- [https://github.com/libexpat/libexpat/commit/0f075ec8ecb5e43f8fdca5182f8cca4703da0404](https://github.com/libexpat/libexpat/commit/0f075ec8ecb5e43f8fdca5182f8cca4703da0404)\n- [https://github.com/libexpat/libexpat/pull/777](https://github.com/libexpat/libexpat/pull/777)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PNRIHC7DVVRAIWFRGV23Y6UZXFBXSQDB/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PNRIHC7DVVRAIWFRGV23Y6UZXFBXSQDB/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WNUBSGZFEZOBHJFTAD42SAN4ATW2VEMV/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WNUBSGZFEZOBHJFTAD42SAN4ATW2VEMV/)\n- [https://security.netapp.com/advisory/ntap-20240307-0005/](https://security.netapp.com/advisory/ntap-20240307-0005/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-776",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-EXPAT-6420595",
"shortDescription": {
"text": "Low severity - CVE-2024-28757 vulnerability in expat"
},
"fullDescription": {
"text": "(CVE-2024-28757) expat/libexpat1@2.5.0-1+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `expat` package and not the `expat` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nlibexpat through 2.6.1 allows an XML Entity Expansion attack when there is isolated use of external parsers (created via XML_ExternalEntityParserCreate).\n## Remediation\nThere is no fixed version for `Debian:12` `expat`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2024-28757](https://security-tracker.debian.org/tracker/CVE-2024-28757)\n- [https://github.com/libexpat/libexpat/issues/839](https://github.com/libexpat/libexpat/issues/839)\n- [https://github.com/libexpat/libexpat/pull/842](https://github.com/libexpat/libexpat/pull/842)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/FPLC6WDSRDUYS7F7JWAOVOHFNOUQ43DD/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/FPLC6WDSRDUYS7F7JWAOVOHFNOUQ43DD/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LKJ7V5F6LJCEQJXDBWGT27J7NAP3E3N7/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LKJ7V5F6LJCEQJXDBWGT27J7NAP3E3N7/)\n- [https://security.netapp.com/advisory/ntap-20240322-0001/](https://security.netapp.com/advisory/ntap-20240322-0001/)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VK2O34GH43NTHBZBN7G5Y6YKJKPUCTBE/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VK2O34GH43NTHBZBN7G5Y6YKJKPUCTBE/)\n- [http://www.openwall.com/lists/oss-security/2024/03/15/1](http://www.openwall.com/lists/oss-security/2024/03/15/1)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": null,
"security-severity": "null"
}
},
{
"id": "SNYK-DEBIAN12-EXPAT-8309094",
"shortDescription": {
"text": "Low severity - CVE-2024-50602 vulnerability in expat"
},
"fullDescription": {
"text": "(CVE-2024-50602) expat/libexpat1@2.5.0-1+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `expat` package and not the `expat` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nAn issue was discovered in libexpat before 2.6.4. There is a crash within the XML_ResumeParser function because XML_StopParser can stop/suspend an unstarted parser.\n## Remediation\nThere is no fixed version for `Debian:12` `expat`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2024-50602](https://security-tracker.debian.org/tracker/CVE-2024-50602)\n- [https://github.com/libexpat/libexpat/pull/915](https://github.com/libexpat/libexpat/pull/915)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": null,
"security-severity": "null"
}
},
{
"id": "SNYK-DEBIAN12-GCC12-2606941",
"shortDescription": {
"text": "Low severity - Uncontrolled Recursion vulnerability in gcc-12"
},
"fullDescription": {
"text": "(CVE-2022-27943) gcc-12/gcc-12-base@12.2.0-14"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `gcc-12` package and not the `gcc-12` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nlibiberty/rust-demangle.c in GNU GCC 11.2 allows stack consumption in demangle_const, as demonstrated by nm-new.\n## Remediation\nThere is no fixed version for `Debian:12` `gcc-12`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2022-27943](https://security-tracker.debian.org/tracker/CVE-2022-27943)\n- [https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105039](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105039)\n- [https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/H424YXGW7OKXS2NCAP35OP6Y4P4AW6VG/](https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/H424YXGW7OKXS2NCAP35OP6Y4P4AW6VG/)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=28995](https://sourceware.org/bugzilla/show_bug.cgi?id=28995)\n- [https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/H424YXGW7OKXS2NCAP35OP6Y4P4AW6VG/](https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/H424YXGW7OKXS2NCAP35OP6Y4P4AW6VG/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-674",
"deb"
],
"cvssv3_baseScore": 5.5,
"security-severity": "5.5"
}
},
{
"id": "SNYK-DEBIAN12-GCC12-5901316",
"shortDescription": {
"text": "Low severity - CVE-2023-4039 vulnerability in gcc-12"
},
"fullDescription": {
"text": "(CVE-2023-4039) gcc-12/gcc-12-base@12.2.0-14"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `gcc-12` package and not the `gcc-12` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\n\n\n**DISPUTED**A failure in the -fstack-protector feature in GCC-based toolchains \nthat target AArch64 allows an attacker to exploit an existing buffer \noverflow in dynamically-sized local variables in your application \nwithout this being detected. This stack-protector failure only applies \nto C99-style dynamically-sized local variables or those created using \nalloca(). The stack-protector operates as intended for statically-sized \nlocal variables.\n\nThe default behavior when the stack-protector \ndetects an overflow is to terminate your application, resulting in \ncontrolled loss of availability. An attacker who can exploit a buffer \noverflow without triggering the stack-protector might be able to change \nprogram flow control to cause an uncontrolled loss of availability or to\n go further and affect confidentiality or integrity. NOTE: The GCC project argues that this is a missed hardening bug and not a vulnerability by itself.\n\n\n\n\n\n\n## Remediation\nThere is no fixed version for `Debian:12` `gcc-12`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2023-4039](https://security-tracker.debian.org/tracker/CVE-2023-4039)\n- [https://developer.arm.com/Arm%20Security%20Center/GCC%20Stack%20Protector%20Vulnerability%20AArch64](https://developer.arm.com/Arm%20Security%20Center/GCC%20Stack%20Protector%20Vulnerability%20AArch64)\n- [https://github.com/metaredteam/external-disclosures/security/advisories/GHSA-x7ch-h5rf-w2mf](https://github.com/metaredteam/external-disclosures/security/advisories/GHSA-x7ch-h5rf-w2mf)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": 4.8,
"security-severity": "4.8"
}
},
{
"id": "SNYK-DEBIAN12-GIT-1547086",
"shortDescription": {
"text": "Low severity - Improper Input Validation vulnerability in git"
},
"fullDescription": {
"text": "(CVE-2018-1000021) git/git-man@1:2.39.5-0+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `git` package and not the `git` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGIT version 2.15.1 and earlier contains a Input Validation Error vulnerability in Client that can result in problems including messing up terminal configuration to RCE. This attack appear to be exploitable via The user must interact with a malicious git server, (or have their traffic modified in a MITM attack).\n## Remediation\nThere is no fixed version for `Debian:12` `git`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2018-1000021](https://security-tracker.debian.org/tracker/CVE-2018-1000021)\n- [http://www.batterystapl.es/2018/01/security-implications-of-ansi-escape.html](http://www.batterystapl.es/2018/01/security-implications-of-ansi-escape.html)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-1000021](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-1000021)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-20",
"deb"
],
"cvssv3_baseScore": 5,
"security-severity": "5"
}
},
{
"id": "SNYK-DEBIAN12-GIT-2399902",
"shortDescription": {
"text": "Low severity - Exposure of Resource to Wrong Sphere vulnerability in git"
},
"fullDescription": {
"text": "(CVE-2022-24975) git/git-man@1:2.39.5-0+deb12u1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `git` package and not the `git` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nThe --mirror documentation for Git through 2.35.1 does not mention the availability of deleted content, aka the "GitBleed" issue. This could present a security risk if information-disclosure auditing processes rely on a clone operation without the --mirror option. Note: This has been disputed by multiple 3rd parties who believe this is an intended feature of the git binary and does not pose a security risk.\n## Remediation\nThere is no fixed version for `Debian:12` `git`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2022-24975](https://security-tracker.debian.org/tracker/CVE-2022-24975)\n- [https://github.com/git/git/blob/2dc94da3744bfbbf145eca587a0f5ff480cc5867/Documentation/git-clone.txt#L185-L191](https://github.com/git/git/blob/2dc94da3744bfbbf145eca587a0f5ff480cc5867/Documentation/git-clone.txt#L185-L191)\n- [https://wwws.nightwatchcybersecurity.com/2022/02/11/gitbleed/](https://wwws.nightwatchcybersecurity.com/2022/02/11/gitbleed/)\n- [https://www.aquasec.com/blog/undetected-hard-code-secrets-expose-corporations/](https://www.aquasec.com/blog/undetected-hard-code-secrets-expose-corporations/)\n- [https://lore.kernel.org/git/xmqq4k14qe9g.fsf%40gitster.g/](https://lore.kernel.org/git/xmqq4k14qe9g.fsf%40gitster.g/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-668",
"deb"
],
"cvssv3_baseScore": 7.5,
"security-severity": "7.5"
}
},
{
"id": "SNYK-DEBIAN12-GLIB20-1547042",
"shortDescription": {
"text": "Low severity - Cryptographic Issues vulnerability in glib2.0"
},
"fullDescription": {
"text": "(CVE-2012-0039) glib2.0/libglib2.0-0@2.74.6-2+deb12u3"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glib2.0` package and not the `glib2.0` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGLib 2.31.8 and earlier, when the g_str_hash function is used, computes hash values without restricting the ability to trigger hash collisions predictably, which allows context-dependent attackers to cause a denial of service (CPU consumption) via crafted input to an application that maintains a hash table. NOTE: this issue may be disputed by the vendor; the existence of the g_str_hash function is not a vulnerability in the library, because callers of g_hash_table_new and g_hash_table_new_full can specify an arbitrary hash function that is appropriate for the application.\n## Remediation\nThere is no fixed version for `Debian:12` `glib2.0`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2012-0039](https://security-tracker.debian.org/tracker/CVE-2012-0039)\n- [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655044](http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655044)\n- [http://mail.gnome.org/archives/gtk-devel-list/2003-May/msg00111.html](http://mail.gnome.org/archives/gtk-devel-list/2003-May/msg00111.html)\n- [http://openwall.com/lists/oss-security/2012/01/10/12](http://openwall.com/lists/oss-security/2012/01/10/12)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=772720](https://bugzilla.redhat.com/show_bug.cgi?id=772720)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-310",
"deb"
],
"cvssv3_baseScore": 5.3,
"security-severity": "5.3"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1546991",
"shortDescription": {
"text": "Low severity - Information Exposure vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2019-1010024) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat.\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-1010024](https://security-tracker.debian.org/tracker/CVE-2019-1010024)\n- [https://support.f5.com/csp/article/K06046097](https://support.f5.com/csp/article/K06046097)\n- [https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS](https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=22852](https://sourceware.org/bugzilla/show_bug.cgi?id=22852)\n- [http://www.securityfocus.com/bid/109162](http://www.securityfocus.com/bid/109162)\n- [https://ubuntu.com/security/CVE-2019-1010024](https://ubuntu.com/security/CVE-2019-1010024)\n- [https://support.f5.com/csp/article/K06046097?utm_source=f5support&%3Butm_medium=RSS](https://support.f5.com/csp/article/K06046097?utm_source=f5support&%3Butm_medium=RSS)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-200",
"deb"
],
"cvssv3_baseScore": 5.3,
"security-severity": "5.3"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1547039",
"shortDescription": {
"text": "Low severity - Uncontrolled Recursion vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2018-20796) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nIn the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2018-20796](https://security-tracker.debian.org/tracker/CVE-2018-20796)\n- [https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS](https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS)\n- [https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141](https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141)\n- [https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html](https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html)\n- [https://security.netapp.com/advisory/ntap-20190315-0002/](https://security.netapp.com/advisory/ntap-20190315-0002/)\n- [http://www.securityfocus.com/bid/107160](http://www.securityfocus.com/bid/107160)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20796](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2018-20796)\n- [https://support.f5.com/csp/article/K26346590?utm_source=f5support&%3Butm_medium=RSS](https://support.f5.com/csp/article/K26346590?utm_source=f5support&%3Butm_medium=RSS)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-674",
"deb"
],
"cvssv3_baseScore": 7.5,
"security-severity": "7.5"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1547069",
"shortDescription": {
"text": "Low severity - Uncontrolled Recursion vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2019-9192) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nIn the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-9192](https://security-tracker.debian.org/tracker/CVE-2019-9192)\n- [https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS](https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=24269](https://sourceware.org/bugzilla/show_bug.cgi?id=24269)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-9192](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2019-9192)\n- [https://support.f5.com/csp/article/K26346590?utm_source=f5support&%3Butm_medium=RSS](https://support.f5.com/csp/article/K26346590?utm_source=f5support&%3Butm_medium=RSS)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-674",
"deb"
],
"cvssv3_baseScore": 7.5,
"security-severity": "7.5"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1547135",
"shortDescription": {
"text": "Low severity - Use of Insufficiently Random Values vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2019-1010025) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability.\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-1010025](https://security-tracker.debian.org/tracker/CVE-2019-1010025)\n- [https://support.f5.com/csp/article/K06046097](https://support.f5.com/csp/article/K06046097)\n- [https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS](https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=22853](https://sourceware.org/bugzilla/show_bug.cgi?id=22853)\n- [https://ubuntu.com/security/CVE-2019-1010025](https://ubuntu.com/security/CVE-2019-1010025)\n- [https://support.f5.com/csp/article/K06046097?utm_source=f5support&%3Butm_medium=RSS](https://support.f5.com/csp/article/K06046097?utm_source=f5support&%3Butm_medium=RSS)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-330",
"deb"
],
"cvssv3_baseScore": 5.3,
"security-severity": "5.3"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1547196",
"shortDescription": {
"text": "Low severity - Out-of-Bounds vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2019-1010022) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat.\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-1010022](https://security-tracker.debian.org/tracker/CVE-2019-1010022)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=22850](https://sourceware.org/bugzilla/show_bug.cgi?id=22850)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3](https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3)\n- [https://ubuntu.com/security/CVE-2019-1010022](https://ubuntu.com/security/CVE-2019-1010022)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-119",
"deb"
],
"cvssv3_baseScore": 9.8,
"security-severity": "9.8"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1547293",
"shortDescription": {
"text": "Low severity - Resource Management Errors vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2010-4756) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nThe glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2010-4756](https://security-tracker.debian.org/tracker/CVE-2010-4756)\n- [http://cxib.net/stuff/glob-0day.c](http://cxib.net/stuff/glob-0day.c)\n- [http://securityreason.com/achievement_securityalert/89](http://securityreason.com/achievement_securityalert/89)\n- [http://securityreason.com/exploitalert/9223](http://securityreason.com/exploitalert/9223)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=681681](https://bugzilla.redhat.com/show_bug.cgi?id=681681)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756](https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-399",
"deb"
],
"cvssv3_baseScore": 4.3,
"security-severity": "4.3"
}
},
{
"id": "SNYK-DEBIAN12-GLIBC-1547373",
"shortDescription": {
"text": "Low severity - CVE-2019-1010023 vulnerability in glibc"
},
"fullDescription": {
"text": "(CVE-2019-1010023) glibc/libc-bin@2.36-9+deb12u8"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `glibc` package and not the `glibc` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat.\n## Remediation\nThere is no fixed version for `Debian:12` `glibc`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2019-1010023](https://security-tracker.debian.org/tracker/CVE-2019-1010023)\n- [https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS](https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS)\n- [https://sourceware.org/bugzilla/show_bug.cgi?id=22851](https://sourceware.org/bugzilla/show_bug.cgi?id=22851)\n- [http://www.securityfocus.com/bid/109167](http://www.securityfocus.com/bid/109167)\n- [https://ubuntu.com/security/CVE-2019-1010023](https://ubuntu.com/security/CVE-2019-1010023)\n- [https://support.f5.com/csp/article/K11932200?utm_source=f5support&%3Butm_medium=RSS](https://support.f5.com/csp/article/K11932200?utm_source=f5support&%3Butm_medium=RSS)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"deb"
],
"cvssv3_baseScore": 8.8,
"security-severity": "8.8"
}
},
{
"id": "SNYK-DEBIAN12-GNUPG2-3330747",
"shortDescription": {
"text": "Low severity - Out-of-bounds Write vulnerability in gnupg2"
},
"fullDescription": {
"text": "(CVE-2022-3219) gnupg2/gpgv@2.2.40-1.1"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `gnupg2` package and not the `gnupg2` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nGnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.\n## Remediation\nThere is no fixed version for `Debian:12` `gnupg2`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2022-3219](https://security-tracker.debian.org/tracker/CVE-2022-3219)\n- [https://access.redhat.com/security/cve/CVE-2022-3219](https://access.redhat.com/security/cve/CVE-2022-3219)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=2127010](https://bugzilla.redhat.com/show_bug.cgi?id=2127010)\n- [https://dev.gnupg.org/D556](https://dev.gnupg.org/D556)\n- [https://dev.gnupg.org/T5993](https://dev.gnupg.org/T5993)\n- [https://marc.info/?l=oss-security&m=165696590211434&w=4](https://marc.info/?l=oss-security&m=165696590211434&w=4)\n- [https://security.netapp.com/advisory/ntap-20230324-0001/](https://security.netapp.com/advisory/ntap-20230324-0001/)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {
"tags": [
"security",
"CWE-787",
"deb"
],
"cvssv3_baseScore": 3.3,
"security-severity": "3.3"
}
},
{
"id": "SNYK-DEBIAN12-GNUTLS28-1547121",
"shortDescription": {
"text": "Low severity - Improper Input Validation vulnerability in gnutls28"
},
"fullDescription": {
"text": "(CVE-2011-3389) gnutls28/libgnutls30@3.7.9-2+deb12u3"
},
"help": {
"text": "",
"markdown": "## NVD Description\n**_Note:_** _Versions mentioned in the description apply only to the upstream `gnutls28` package and not the `gnutls28` package as distributed by `Debian`._\n_See `How to fix?` for `Debian:12` relevant fixed versions and status._\n\nThe SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a "BEAST" attack.\n## Remediation\nThere is no fixed version for `Debian:12` `gnutls28`.\n## References\n- [https://security-tracker.debian.org/tracker/CVE-2011-3389](https://security-tracker.debian.org/tracker/CVE-2011-3389)\n- [http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html](http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html)\n- [http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html](http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html)\n- [http://support.apple.com/kb/HT4999](http://support.apple.com/kb/HT4999)\n- [http://support.apple.com/kb/HT5001](http://support.apple.com/kb/HT5001)\n- [http://support.apple.com/kb/HT5130](http://support.apple.com/kb/HT5130)\n- [http://support.apple.com/kb/HT5281](http://support.apple.com/kb/HT5281)\n- [http://support.apple.com/kb/HT5501](http://support.apple.com/kb/HT5501)\n- [http://support.apple.com/kb/HT6150](http://support.apple.com/kb/HT6150)\n- [http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html](http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html)\n- [http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html](http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html)\n- [http://lists.apple.com/archives/security-announce/2012/May/msg00001.html](http://lists.apple.com/archives/security-announce/2012/May/msg00001.html)\n- [http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html](http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html)\n- [http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html](http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html)\n- [http://www.us-cert.gov/cas/techalerts/TA12-010A.html](http://www.us-cert.gov/cas/techalerts/TA12-010A.html)\n- [http://www.kb.cert.org/vuls/id/864643](http://www.kb.cert.org/vuls/id/864643)\n- [http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html](http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html)\n- [http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/](http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/)\n- [http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx](http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx)\n- [http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx](http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx)\n- [http://curl.haxx.se/docs/adv_20120124B.html](http://curl.haxx.se/docs/adv_20120124B.html)\n- [http://downloads.asterisk.org/pub/security/AST-2016-001.html](http://downloads.asterisk.org/pub/security/AST-2016-001.html)\n- [http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue](http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue)\n- [https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail](https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail)\n- [https://bugzilla.novell.com/show_bug.cgi?id=719047](https://bugzilla.novell.com/show_bug.cgi?id=719047)\n- [https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf](https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf)\n- [http://technet.microsoft.com/security/advisory/2588513](http://technet.microsoft.com/security/advisory/2588513)\n- [http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf](http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf)\n- [http://www.ibm.com/developerworks/java/jdk/alerts/](http://www.ibm.com/developerworks/java/jdk/alerts/)\n- [http://www.imperialviolet.org/2011/09/23/chromeandbeast.html](http://www.imperialviolet.org/2011/09/23/chromeandbeast.html)\n- [http://www.opera.com/docs/changelogs/mac/1151/](http://www.opera.com/docs/changelogs/mac/1151/)\n- [http://www.opera.com/docs/changelogs/mac/1160/](http://www.opera.com/docs/changelogs/mac/1160/)\n- [http://www.opera.com/docs/changelogs/unix/1151/](http://www.opera.com/docs/changelogs/unix/1151/)\n- [http://www.opera.com/docs/changelogs/unix/1160/](http://www.opera.com/docs/changelogs/unix/1160/)\n- [http://www.opera.com/docs/changelogs/windows/1151/](http://www.opera.com/docs/changelogs/windows/1151/)\n- [http://www.opera.com/docs/changelogs/windows/1160/](http://www.opera.com/docs/changelogs/windows/1160/)\n- [http://www.opera.com/support/kb/view/1004/](http://www.opera.com/support/kb/view/1004/)\n- [http://www.debian.org/security/2012/dsa-2398](http://www.debian.org/security/2012/dsa-2398)\n- [http://security.gentoo.org/glsa/glsa-201203-02.xml](http://security.gentoo.org/glsa/glsa-201203-02.xml)\n- [http://security.gentoo.org/glsa/glsa-201406-32.xml](http://security.gentoo.org/glsa/glsa-201406-32.xml)\n- [https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862](https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862)\n- [http://marc.info/?l=bugtraq&m=132750579901589&w=2](http://marc.info/?l=bugtraq&m=132750579901589&w=2)\n- [http://marc.info/?l=bugtraq&m=132872385320240&w=2](http://marc.info/?l=bugtraq&m=132872385320240&w=2)\n- [http://marc.info/?l=bugtraq&m=133365109612558&w=2](http://marc.info/?l=bugtraq&m=133365109612558&w=2)\n- [http://marc.info/?l=bugtraq&m=133728004526190&w=2](http://marc.info/?l=bugtraq&m=133728004526190&w=2)\n- [http://marc.info/?l=bugtraq&m=134254866602253&w=2](http://marc.info/?l=bugtraq&m=134254866602253&w=2)\n- [http://marc.info/?l=bugtraq&m=134254957702612&w=2](http://marc.info/?l=bugtraq&m=134254957702612&w=2)\n- [http://ekoparty.org/2011/juliano-rizzo.php](http://ekoparty.org/2011/juliano-rizzo.php)\n- [http://eprint.iacr.org/2004/111](http://eprint.iacr.org/2004/111)\n- [http://eprint.iacr.org/2006/136](http://eprint.iacr.org/2006/136)\n- [http://isc.sans.edu/diary/SSL+TLS+part+3+/11635](http://isc.sans.edu/diary/SSL+TLS+part+3+/11635)\n- [https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02](https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02)\n- [http://vnhacker.blogspot.com/2011/09/beast.html](http://vnhacker.blogspot.com/2011/09/beast.html)\n- [http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html](http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html)\n- [http://www.insecure.cl/Beast-SSL.rar](http://www.insecure.cl/Beast-SSL.rar)\n- [https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006](https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006)\n- [http://technet.microsoft.com/security/bulletin/MS12-006](http://technet.microsoft.com/security/bulletin/MS12-006)\n- [http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html](http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html)\n- [http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html](http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html)\n- [http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html](http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html)\n- [http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html](http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html)\n- [http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html](http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html)\n- [http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html](http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html)\n- [http://osvdb.org/74829](http://osvdb.org/74829)\n- [https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752](https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752)\n- [https://bugzilla.redhat.com/show_bug.cgi?id=737506](https://bugzilla.redhat.com/show_bug.cgi?id=737506)\n- [http://rhn.redhat.com/errata/RHSA-2012-0508.html](http://rhn.redhat.com/errata/RHSA-2012-0508.html)\n- [http://rhn.redhat.com/errata/RHSA-2013-1455.html](http://rhn.redhat.com/errata/RHSA-2013-1455.html)\n- [http://secunia.com/advisories/45791](http://secunia.com/advisories/45791)\n- [http://secunia.com/advisories/47998](http://secunia.com/advisories/47998)\n- [http://secunia.com/advisories/48256](http://secunia.com/advisories/48256)\n- [http://secunia.com/advisories/48692](http://secunia.com/advisories/48692)\n- [http://secunia.com/advisories/48915](http://secunia.com/advisories/48915)\n- [http://secunia.com/advisories/48948](http://secunia.com/advisories/48948)\n- [http://secunia.com/advisories/49198](http://secunia.com/advisories/49198)\n- [http://secunia.com/advisories/55322](http://secunia.com/advisories/55322)\n- [http://secunia.com/advisories/55350](http://secunia.com/advisories/55350)\n- [http://secunia.com/advisories/55351](http://secunia.com/advisories/55351)\n- [http://www.securityfocus.com/bid/49388](http://www.securityfocus.com/bid/49388)\n- [http://www.securityfocus.com/bid/49778](http://www.securityfocus.com/bid/49778)\n- [http://www.securitytracker.com/id?1025997](http://www.securitytracker.com/id?1025997)\n- [http://www.securitytracker.com/id?1026103](http://www.securitytracker.com/id?1026103)\n- [http://www.securitytracker.com/id?1026704](http://www.securitytracker.com/id?1026704)\n- [http://www.securitytracker.com/id/1029190](http://www.securitytracker.com/id/1029190)\n- [http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html](http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html)\n- [https://hermes.opensuse.org/messages/13154861](https://hermes.opensuse.org/messages/13154861)\n- [https://hermes.opensuse.org/messages/13155432](https://hermes.opensuse.org/messages/13155432)\n- [http://people.ubuntu.com/~ubuntu-security/cve/CVE-2011-3389](http://people.ubuntu.com/~ubuntu-security/cve/CVE-2011-3389)\n- [http://www.ubuntu.com/usn/USN-1263-1](http://www.ubuntu.com/usn/USN-1263-1)\n- [http://www.mandriva.com/security/advisories?name=MDVSA-2012:058](http://www.mandriva.com/security/advisories?name=MDVSA-2012:058)\n- [http://www.redhat.com/support/errata/RHSA-2011-1384.html](http://www.redhat.com/support/errata/RHSA-2011-1384.html)\n- [http://www.redhat.com/support/errata/RHSA-2012-0006.html](http://www.redhat.com/support/errata/RHSA-2012-0006.html)\n"
},
"defaultConfiguration": {
"level": "warning"
},
"properties": {