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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE vuxml PUBLIC "-//vuxml.org//DTD VuXML 1.1//EN" "http://www.vuxml.org/dtd/vuxml-1/vuxml-11.dtd" [
<!ENTITY vuln-2003 SYSTEM "vuln-2003.xml">
<!ENTITY vuln-2004 SYSTEM "vuln-2004.xml">
<!ENTITY vuln-2005 SYSTEM "vuln-2005.xml">
<!ENTITY vuln-2006 SYSTEM "vuln-2006.xml">
<!ENTITY vuln-2007 SYSTEM "vuln-2007.xml">
<!ENTITY vuln-2008 SYSTEM "vuln-2008.xml">
<!ENTITY vuln-2009 SYSTEM "vuln-2009.xml">
<!ENTITY vuln-2010 SYSTEM "vuln-2010.xml">
<!ENTITY vuln-2011 SYSTEM "vuln-2011.xml">
<!ENTITY vuln-2012 SYSTEM "vuln-2012.xml">
<!ENTITY vuln-2013 SYSTEM "vuln-2013.xml">
<!ENTITY vuln-2014 SYSTEM "vuln-2014.xml">
<!ENTITY vuln-2015 SYSTEM "vuln-2015.xml">
<!ENTITY vuln-2016 SYSTEM "vuln-2016.xml">
<!ENTITY vuln-2017 SYSTEM "vuln-2017.xml">
<!ENTITY vuln-2018 SYSTEM "vuln-2018.xml">
<!ENTITY vuln-2019 SYSTEM "vuln-2019.xml">
<!ENTITY vuln-2020 SYSTEM "vuln-2020.xml">
]>
<!--
Copyright 2003-2021 Jacques Vidrine and contributors
Redistribution and use in source (VuXML) and 'compiled' forms (SGML,
HTML, PDF, PostScript, RTF and so forth) with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code (VuXML) must retain the above
copyright notice, this list of conditions and the following
disclaimer as the first lines of this file unmodified.
2. Redistributions in compiled form (transformed to other DTDs,
published online in any format, converted to PDF, PostScript,
RTF and other formats) must reproduce the above copyright
notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
THIS DOCUMENTATION IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS DOCUMENTATION,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
QUICK GUIDE TO ADDING A NEW ENTRY
1. run 'make newentry' to add a template to the top of the document
2. fill in the template
3. use 'make validate' to verify syntax correctness (you might need to install
textproc/libxml2 for parser, and this port for catalogs)
4. fix any errors
5. use 'make VID=xxx-yyy-zzz html' to emit the entry's html file for formatting review
6. profit!
Additional tests can be done this way:
$ make vuln-flat.xml
$ pkg audit -f ./vuln-flat.xml py26-django-1.6
$ pkg audit -f ./vuln-flat.xml py27-django-1.6.1
Extensive documentation of the format and help with writing and verifying
a new entry is available in The Porter's Handbook at:
http://www.freebsd.org/doc/en/books/porters-handbook/security-notify.html
Help is also available from ports-security@freebsd.org.
Notes:
* Please add new entries to the beginning of this file.
* Do not forget port variants (linux-f10-libxml2, libxml2, etc.)
-->
<vuxml xmlns="http://www.vuxml.org/apps/vuxml-1">
<vuln vid="f7a00ad7-ae75-11eb-8113-08002728f74c">
<topic>Rails -- multiple vulnerabilities</topic>
<affects>
<package>
<name>rubygem-actionpack52</name>
<range><lt>5.2.6</lt></range>
</package>
<package>
<name>rubygem-actionpack60</name>
<range><lt>6.0.3.7</lt></range>
</package>
<package>
<name>rubygem-actionpack61</name>
<range><lt>6.1.3.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Ruby on Rails blog:</p>
<blockquote cite="https://weblog.rubyonrails.org/2021/5/5/Rails-versions-6-1-3-2-6-0-3-7-5-2-4-6-and-5-2-6-have-been-released/">
<p>Rails versions 6.1.3.2, 6.0.3.7, and 5.2.6 have been released! These
releases contain important security fixes. Here is a list of the issues
fixed:</p>
<p>CVE-2021-22885: Possible Information Disclosure / Unintended Method Execution in Action Pack</p>
<p>CVE-2021-22902: Possible Denial of Service vulnerability in Action Dispatch</p>
<p>CVE-2021-22903: Possible Open Redirect Vulnerability in Action Pack</p>
<p>CVE-2021-22904: Possible DoS Vulnerability in Action Controller Token Authentication</p>
</blockquote>
</body>
</description>
<references>
<url>https://weblog.rubyonrails.org/2021/5/5/Rails-versions-6-1-3-2-6-0-3-7-5-2-4-6-and-5-2-6-have-been-released/</url>
<url>https://discuss.rubyonrails.org/t/cve-2021-22885-possible-information-disclosure-unintended-method-execution-in-action-pack/77868</url>
<url>https://discuss.rubyonrails.org/t/cve-2021-22902-possible-denial-of-service-vulnerability-in-action-dispatch/77866</url>
<url>https://discuss.rubyonrails.org/t/cve-2021-22903-possible-open-redirect-vulnerability-in-action-pack/77867</url>
<url>https://discuss.rubyonrails.org/t/cve-2021-22904-possible-dos-vulnerability-in-action-controller-token-authentication/77869</url>
<cvename>CVE-2021-22885</cvename>
<cvename>CVE-2021-22902</cvename>
<cvename>CVE-2021-22903</cvename>
<cvename>CVE-2021-22904</cvename>
</references>
<dates>
<discovery>2021-05-05</discovery>
<entry>2021-05-07</entry>
</dates>
</vuln>
<vuln vid="7f242313-aea5-11eb-8151-67f74cf7c704">
<topic>go -- net/http: ReadRequest can stack overflow due to recursion with very large headers</topic>
<affects>
<package>
<name>go</name>
<range><lt>1.16.4,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Go project reports:</p>
<blockquote cite="https://github.com/golang/go/issues/45710">
<p>http.ReadRequest can stack overflow due to recursion when given a
request with a very large header (~8-10MB depending on the
architecture). A http.Server which overrides the default max header
of 1MB by setting Server.MaxHeaderBytes to a much larger value could
also be vulnerable in the same way.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-31525</cvename>
<url>https://github.com/golang/go/issues/45710</url>
</references>
<dates>
<discovery>2021-04-22</discovery>
<entry>2021-05-06</entry>
</dates>
</vuln>
<vuln vid="50ec3a01-ad77-11eb-8528-8c164582fbac">
<topic>Ansible -- Insecure Temporary File</topic>
<affects>
<package>
<name>py36-ansible</name>
<name>py37-ansible</name>
<name>py38-ansible</name>
<name>py39-ansible</name>
<name>py36-ansible27</name>
<range><ge>2.9.0</ge><le>2.9.9</le></range>
</package>
<package>
<name>py37-ansible27</name>
<name>py38-ansible27</name>
<name>py39-ansible27</name>
<range><ge>2.7.0</ge><le>2.7.18</le></range>
</package>
<package>
<name>py36-ansible28</name>
<name>py37-ansible28</name>
<name>py38-ansible28</name>
<name>py39-ansible28</name>
<range><ge>2.8.0</ge><le>2.8.12</le></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>NVD reports:</p>
<blockquote cite="https://nvd.nist.gov/vuln/detail/CVE-2020-10744">
<p>
An incomplete fix was found for the fix of the flaw CVE-2020-1733
ansible: insecure temporary directory when running become_user from
become directive. The provided fix is insufficient to prevent the
race condition on systems using ACLs and FUSE filesystems..
</p>
</blockquote>
</body>
</description>
<references>
<url>https://nvd.nist.gov/vuln/detail/CVE-2020-10744</url>
<cvename>CVE-2020-10744</cvename>
</references>
<dates>
<discovery>2020-05-15</discovery>
<entry>2021-05-05</entry>
</dates>
</vuln>
<vuln vid="1766359c-ad6e-11eb-b2a4-080027e50e6d">
<topic>Django -- multiple vulnerabilities</topic>
<affects>
<package>
<name>py36-django22</name>
<name>py37-django22</name>
<name>py38-django22</name>
<name>py39-django22</name>
<range><lt>2.2.21</lt></range>
</package>
<package>
<name>py36-django31</name>
<name>py37-django31</name>
<name>py38-django31</name>
<name>py39-django31</name>
<range><lt>3.1.9</lt></range>
</package>
<package>
<name>py36-django32</name>
<name>py37-django32</name>
<name>py38-django32</name>
<name>py39-django32</name>
<range><lt>3.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Django Release reports:</p>
<blockquote cite="https://www.djangoproject.com/weblog/2021/may/04/security-releases/">
<p>CVE-2021-31542:Potential directory-traversal via uploaded files.</p>
<p>MultiPartParser, UploadedFile, and FieldFile allowed directory-traversal
via uploaded files with suitably crafted file names.</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.djangoproject.com/weblog/2021/may/04/security-releases/</url>
<cvename>CVE-2021-31542</cvename>
</references>
<dates>
<discovery>2021-04-22</discovery>
<entry>2021-05-05</entry>
</dates>
</vuln>
<vuln vid="bffa40db-ad50-11eb-86b8-080027846a02">
<topic>Python -- multiple vulnerabilities</topic>
<affects>
<package>
<name>python38</name>
<range><lt>3.8.10</lt></range>
</package>
<package>
<name>python39</name>
<range><lt>3.9.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Python reports:</p>
<blockquote cite="https://docs.python.org/3/whatsnew/changelog.html#changelog">
<p>bpo-43434: Creating a sqlite3.Connection object now also produces a
sqlite3.connect auditing event. Previously this event was only produced
by sqlite3.connect() calls. Patch by Erlend E. Aasland.</p>
<p>bpo-43882: The presence of newline or tab characters in parts of a URL
could allow some forms of attacks.Following the controlling specification
for URLs defined by WHATWG urllib.parse() now removes A SCII newlines
and tabs from URLs, preventing such attacks.</p>
<p>bpo-43472: Ensures interpreter-level audit hooks receive the cpython.
PyInterpreterState_New event when called through the _xxsubinterpreters
module.</p>
<p>bpo-36384: ipaddress module no longer accepts any leading zeros in IPv4
address strings. Leading zeros are ambiguous and interpreted as octal
notation by some libraries. For example the legacy function socket.inet_aton()
treats leading zeros as octal notatation. glibc implementation of modern
inet_pton() does not accept any leading zeros. For a while the ipaddress
module used to accept ambiguous leading zeros.</p>
<p>bpo-43075: Fix Regular Expression Denial of Service (ReDoS) vulnerability
in urllib.request.AbstractBasicAuthHandler. The ReDoS-vulnerable regex has
quadratic worst-case complexity and it allows cause a denial of service
when identifying crafted invalid RFCs. This ReDoS issue is on the client
side and needs remote attackers to control the HTTP server.</p>
<p>bpo-42800: Audit hooks are now fired for frame.f_code, traceback.tb_frame,
and generator code/frame attribute access.</p>
</blockquote>
</body>
</description>
<references>
<url>https://docs.python.org/3/whatsnew/changelog.html#changelog</url>
<url>https://docs.python.org/3.8/whatsnew/changelog.html#changelog</url>
</references>
<dates>
<discovery>2021-03-08</discovery>
<entry>2021-05-05</entry>
</dates>
</vuln>
<vuln vid="1606b03b-ac57-11eb-9bdd-8c164567ca3c">
<topic>redis -- multiple vulnerabilities</topic>
<affects>
<package>
<name>redis</name>
<range><ge>6.0.0</ge><lt>6.0.13</lt></range>
</package>
<package>
<name>redis-devel</name>
<range><ge>6.2.0</ge><lt>6.2.3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Redis project reports:</p>
<blockquote cite="https://groups.google.com/g/redis-db/c/6GSWzTW0PR8">
<dl>
<dt>Vulnerability in the STRALGO LCS command</dt>
<dd>
An integer overflow bug in Redis version 6.0 or newer could be
exploited using the STRALGO LCS command to corrupt the heap and
potentially result with remote code execution.
</dd>
<dt>Vulnerability in the COPY command for large intsets</dt>
<dd>
An integer overflow bug in Redis 6.2 could be exploited to corrupt
the heap and potentially result with remote code execution.
The vulnerability involves changing the default set-max-intset-entries
configuration value, creating a large set key that consists of
integer values and using the COPY command to duplicate it.
The integer overflow bug exists in all versions of Redis starting
with 2.6, where it could result with a corrupted RDB or DUMP payload,
but not exploited through COPY (which did not exist before 6.2).
</dd>
</dl>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-29477</cvename>
<cvename>CVE-2021-29478</cvename>
<url>https://groups.google.com/g/redis-db/c/6GSWzTW0PR8</url>
</references>
<dates>
<discovery>2021-05-03</discovery>
<entry>2021-05-03</entry>
</dates>
</vuln>
<vuln vid="57027417-ab7f-11eb-9596-080027f515ea">
<topic>RDoc -- command injection vulnerability</topic>
<affects>
<package>
<name>rubygem-rdoc</name>
<range><lt>6.3.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Alexandr Savca reports:</p>
<blockquote cite="https://www.ruby-lang.org/en/news/2021/05/02/os-command-injection-in-rdoc/">
<p>
RDoc used to call Kernel#open to open a local file. If a Ruby project
has a file whose name starts with | and ends with tags, the command
following the pipe character is executed. A malicious Ruby project
could exploit it to run an arbitrary command execution against a user
who attempts to run rdoc command.
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-31799</cvename>
<url>https://www.ruby-lang.org/en/news/2021/05/02/os-command-injection-in-rdoc/</url>
</references>
<dates>
<discovery>2021-05-02</discovery>
<entry>2021-05-02</entry>
</dates>
</vuln>
<vuln vid="0add6e6b-6883-11eb-b0cb-f8b156c2bfe9">
<topic>sympa -- Unauthorised full access via SOAP API due to illegal cookie</topic>
<affects>
<package>
<name>sympa</name>
<range><lt>6.2.60</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Sympa community reports:</p>
<blockquote cite="https://github.com/sympa-community/sympa/issues/1041">
<p>Unauthorised full access via SOAP API due to illegal cookie</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2020-29668</cvename>
<url>https://sympa-community.github.io/security/2020-003.html</url>
</references>
<dates>
<discovery>2020-11-24</discovery>
<entry>2021-02-06</entry>
</dates>
</vuln>
<vuln vid="6f33d38b-aa18-11eb-b3f1-005056a311d1">
<topic>samba -- negative idmap cache entries vulnerability</topic>
<affects>
<package>
<name>samba412</name>
<range><lt>4.12.15</lt></range>
</package>
<package>
<name>samba413</name>
<range><lt>4.13.8</lt></range>
</package>
<package>
<name>samba414</name>
<range><lt>4.14.4</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Samba Team reports:</p>
<blockquote cite="https://www.samba.org/samba/history/security.html">
<ul>
<li>CVE-2021-20254: Negative idmap cache entries can cause incorrect
group entries in the Samba file server process token.</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://www.samba.org/samba/security/CVE-2021-20254.html</url>
<cvename>CVE-2021-20254</cvename>
</references>
<dates>
<discovery>2021-04-29</discovery>
<entry>2021-05-01</entry>
</dates>
</vuln>
<vuln vid="518a119c-a864-11eb-8ddb-001b217b3468">
<topic>Gitlab -- Vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.11.0</ge><lt>13.11.2</lt></range>
<range><ge>13.10.0</ge><lt>13.10.4</lt></range>
<range><ge>11.6.0</ge><lt>13.9.7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gitlab reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/04/28/security-release-gitlab-13-11-2-released/">
<p>Read API scoped tokens can execute mutations</p>
<p>Pull mirror credentials were exposed</p>
<p>Denial of Service when querying repository branches API</p>
<p>Non-owners can set system_note_timestamp when creating / updating issues</p>
<p>DeployToken will impersonate a User with the same ID when using Dependency Proxy</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/04/28/security-release-gitlab-13-11-2-released/</url>
<cvename>CVE-2021-22209</cvename>
<cvename>CVE-2021-22206</cvename>
<cvename>CVE-2021-22210</cvename>
<cvename>CVE-2021-22208</cvename>
<cvename>CVE-2021-22211</cvename>
</references>
<dates>
<discovery>2021-04-28</discovery>
<entry>2021-04-28</entry>
</dates>
</vuln>
<vuln vid="76a07f31-a860-11eb-8ddb-001b217b3468">
<topic>Carrierwave -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>rubygem-carrierwave</name>
<range><lt>1.3.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Community reports:</p>
<blockquote cite="https://github.com/carrierwaveuploader/carrierwave/blob/master/CHANGELOG.md#132---2021-02-08">
<p>Fix Code Injection vulnerability in CarrierWave::RMagick</p>
<p>Fix SSRF vulnerability in the remote file download feature</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/carrierwaveuploader/carrierwave/blob/master/CHANGELOG.md#132---2021-02-08</url>
<cvename>CVE-2021-21288</cvename>
<cvename>CVE-2021-21305</cvename>
</references>
<dates>
<discovery>2021-02-08</discovery>
<entry>2021-04-28</entry>
</dates>
</vuln>
<vuln vid="31a7ffb1-a80a-11eb-b159-f8b156c2bfe9">
<topic>sympa -- Inappropriate use of the cookie parameter can be a security threat. This parameter may also not provide sufficient security.</topic>
<affects>
<package>
<name>sympa</name>
<range><lt>6.2.62</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Earlier versions of Sympa require a parameter named cookie in sympa.conf
configuration file.</p>
<blockquote cite="https://sympa-community.github.io/security/2021-001.html">
<p>This parameter was used to make some identifiers generated by the system
unpredictable. For example, it was used as following:</p>
<ul><li>To be used as a salt to encrypt passwords stored in the database by
the RC4 symmetric key algorithm.
<p>Note that RC4 is no longer considered secure enough and is not supported
in the current version of Sympa.</p></li>
<li>To prevent attackers from sending crafted messages to achieve XSS and
so on in message archives.</li></ul>
<p>There were the following problems with the use of this parameter.</p>
<ol><li>This parameter, for its purpose, should be different for each
installation, and once set, it cannot be changed. As a result, some sites
have been operating without setting this parameter. This completely
invalidates the security measures described above.</li>
<li>Even if this parameter is properly set, it may be considered not being
strong enough against brute force attacks.</li></ol>
</blockquote>
</body>
</description>
<references>
<url>https://sympa-community.github.io/security/2021-001.html</url>
</references>
<dates>
<discovery>2021-04-27</discovery>
<entry>2021-04-27</entry>
</dates>
</vuln>
<vuln vid="9fba80e0-a771-11eb-97a0-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>90.0.4430.93</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop_26.html">
<p>This release contains 9 security fixes, including:</p>
<ul>
<li>[1199345] High CVE-2021-21227: Insufficient data validation in
V8. Reported by Gengming Liu of Singular Security Lab on
2021-04-15</li>
<li>[1175058] High CVE-2021-21232: Use after free in Dev Tools.
Reported by Abdulrahman Alqabandi, Microsoft Browser Vulnerability
Research on 2021-02-05</li>
<li>[1182937] High CVE-2021-21233: Heap buffer overflow in ANGLE.
Reported by Omair on 2021-02-26</li>
<li>[1139156] Medium CVE-2021-21228: Insufficient policy enforcement
in extensions. Reported by Rob Wu on 2020-10-16</li>
<li>[$TBD][1198165] Medium CVE-2021-21229: Incorrect security UI in
downloads. Reported by Mohit Raj (shadow2639) on 2021-04-12</li>
<li>[1198705] Medium CVE-2021-21230: Type Confusion in V8. Reported
by Manfred Paul on 2021-04-13</li>
<li>[1198696] Low CVE-2021-21231: Insufficient data validation in
V8. Reported by Sergei Glazunov of Google Project Zero on
2021-04-13</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21227</cvename>
<cvename>CVE-2021-21228</cvename>
<cvename>CVE-2021-21229</cvename>
<cvename>CVE-2021-21230</cvename>
<cvename>CVE-2021-21231</cvename>
<cvename>CVE-2021-21232</cvename>
<cvename>CVE-2021-21233</cvename>
<url>https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop_26.html</url>
</references>
<dates>
<discovery>2021-04-26</discovery>
<entry>2021-04-27</entry>
</dates>
</vuln>
<vuln vid="e4403051-a667-11eb-b9c9-6cc21735f730">
<topic>sbibboleth-sp -- denial of service vulnerability</topic>
<affects>
<package>
<name>shibboleth-sp</name>
<range>
<ge>3.0.0</ge>
<lt>3.2.1_1</lt>
</range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Shibboleth project reports:</p>
<blockquote cite="https://shibboleth.net/community/advisories/secadv_20210426.txt">
<p>Session recovery feature contains a null pointer deference.</p>
<p>
The cookie-based session recovery feature added in V3.0 contains a
flaw that is exploitable on systems *not* using the feature if a
specially crafted cookie is supplied.
</p>
<p>
This manifests as a crash in the shibd daemon/service process.
</p>
<p>
Because it is very simple to trigger this condition remotely, it
results in a potential denial of service condition exploitable by
a remote, unauthenticated attacker.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://shibboleth.net/community/advisories/secadv_20210426.txt</url>
</references>
<dates>
<discovery>2021-04-23</discovery>
<entry>2021-04-26</entry>
</dates>
</vuln>
<vuln vid="bc83cfc9-42cf-4b00-97ad-d352ba0c5e2b">
<topic>zeek -- null-pointer dereference vulnerability</topic>
<affects>
<package>
<name>zeek</name>
<range><lt>4.0.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jon Siwek of Corelight reports:</p>
<blockquote cite="https://github.com/zeek/zeek/releases/tag/v4.0.1">
<p>Fix null-pointer dereference when encountering an
invalid enum name in a config/input file that tries to
read it into a set[enum]. For those that have such an
input feed whose contents may come from external/remote
sources, this is a potential DoS vulnerability. </p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/zeek/zeek/releases/tag/v4.0.1</url>
</references>
<dates>
<discovery>2021-04-01</discovery>
<entry>2021-04-21</entry>
</dates>
</vuln>
<vuln vid="efb965be-a2c0-11eb-8956-1951a8617e30">
<topic>openvpn -- deferred authentication can be bypassed in specific circumstances</topic>
<affects>
<package>
<name>openvpn</name>
<range><lt>2.5.2</lt></range>
</package>
<package>
<name>openvpn-mbedtls</name>
<range><lt>2.5.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gert Döring reports:</p>
<blockquote cite="https://community.openvpn.net/openvpn/wiki/CVE-2020-15078">
<p>
OpenVPN 2.5.1 and earlier versions allows a remote attackers to
bypass authentication and access control channel data on servers
configured with deferred authentication, which can be used to
potentially trigger further information leaks.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://community.openvpn.net/openvpn/wiki/CVE-2020-15078</url>
<url>https://github.com/OpenVPN/openvpn/blob/release/2.5/Changes.rst#overview-of-changes-in-252</url>
<cvename>CVE-2020-15078</cvename>
</references>
<dates>
<discovery>2021-03-02</discovery>
<entry>2021-04-21</entry>
</dates>
</vuln>
<vuln vid="cb13a765-a277-11eb-97a0-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>90.0.4430.85</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Reelases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop_20.html">
<p>This release includes 7 security fixes, including:</p>
<ul>
<li>1194046] High CVE-2021-21222: Heap buffer overflow in V8.
Reported by Guang Gong of Alpha Lab, Qihoo 360 on 2021-03-30</li>
<li>[1195308] High CVE-2021-21223: Integer overflow in Mojo.
Reported by Guang Gong of Alpha Lab, Qihoo 360 on 2021-04-02</li>
<li>[1195777] High CVE-2021-21224: Type Confusion in V8. Reported
by Jose Martinez (tr0y4) from VerSprite Inc. on 2021-04-05</li>
<li>[1195977] High CVE-2021-21225: Out of bounds memory access in
V8. Reported by Brendon Tiszka (@btiszka) supporting the EFF on
2021-04-05</li>
<li>[1197904] High CVE-2021-21226: Use after free in navigation.
Reported by Brendon Tiszka (@btiszka) supporting the EFF on
2021-04-11</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21222</cvename>
<cvename>CVE-2021-21223</cvename>
<cvename>CVE-2021-21224</cvename>
<cvename>CVE-2021-21225</cvename>
<cvename>CVE-2021-21226</cvename>
<url>https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop_20.html</url>
</references>
<dates>
<discovery>2021-04-20</discovery>
<entry>2021-04-21</entry>
</dates>
</vuln>
<vuln vid="e358b470-b37d-4e47-bc8a-2cd9adbeb63c">
<topic>jenkins -- Denial of service vulnerability in bundled Jetty</topic>
<affects>
<package>
<name>jenkins</name>
<range><lt>2.286</lt></range>
</package>
<package>
<name>jenkins-lts</name>
<range><lt>2.277.3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jenkins Security Advisory:</p>
<blockquote cite="https://www.jenkins.io/security/advisory/2021-04-20/">
<h1>Description</h1>
<h5>(High) JENKINS-65280 / CVE-2021-28165</h5>
<p>Denial of service vulnerability in bundled Jetty</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.jenkins.io/security/advisory/2021-04-20/</url>
<cvename>CVE-2021-28165</cvename>
</references>
<dates>
<discovery>2021-04-20</discovery>
<entry>2021-04-20</entry>
</dates>
</vuln>
<vuln vid="56ba4513-a1be-11eb-9072-d4c9ef517024">
<topic>MySQL -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>mariadb103-server</name>
<range><lt>10.3.29</lt></range>
</package>
<package>
<name>mariadb104-server</name>
<range><lt>10.4.19</lt></range>
</package>
<package>
<name>mariadb105-server</name>
<range><lt>10.5.10</lt></range>
</package>
<package>
<name>mysql56-server</name>
<range><lt>5.6.52</lt></range>
</package>
<package>
<name>mysql57-server</name>
<range><lt>5.7.34</lt></range>
</package>
<package>
<name>mysql80-server</name>
<range><lt>8.0.24</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Oracle reports:</p>
<blockquote cite="https://www.oracle.com/security-alerts/cpuapr2021.html">
<p>This Critical Patch Update contains 49 new security patches for
Oracle MySQL. 10 of these vulnerabilities may be remotely exploitable
without authentication, i.e., may be exploited over a network without
requiring user credentials.<br/>
The highest CVSS v3.1 Base Score of vulnerabilities affecting Oracle
MySQL is 9.8.</p>
<p>MariaDB is affected by CVE-2021-2166 and CVE-2021-2154 only</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.oracle.com/security-alerts/cpuapr2021.html</url>
<url>https://mariadb.com/kb/en/mariadb-10510-release-notes/</url>
<cvename>CVE-2020-8277</cvename>
<cvename>CVE-2020-1971</cvename>
<cvename>CVE-2021-3449</cvename>
<cvename>CVE-2020-28196</cvename>
<cvename>CVE-2021-23841</cvename>
<cvename>CVE-2021-2144</cvename>
<cvename>CVE-2021-2172</cvename>
<cvename>CVE-2021-2298</cvename>
<cvename>CVE-2021-2178</cvename>
<cvename>CVE-2021-2202</cvename>
<cvename>CVE-2021-2307</cvename>
<cvename>CVE-2021-2304</cvename>
<cvename>CVE-2021-2180</cvename>
<cvename>CVE-2021-2194</cvename>
<cvename>CVE-2021-2154</cvename>
<cvename>CVE-2021-2166</cvename>
<cvename>CVE-2021-2196</cvename>
<cvename>CVE-2021-2300</cvename>
<cvename>CVE-2021-2305</cvename>
<cvename>CVE-2021-2179</cvename>
<cvename>CVE-2021-2226</cvename>
<cvename>CVE-2021-2160</cvename>
<cvename>CVE-2021-2164</cvename>
<cvename>CVE-2021-2169</cvename>
<cvename>CVE-2021-2170</cvename>
<cvename>CVE-2021-2193</cvename>
<cvename>CVE-2021-2203</cvename>
<cvename>CVE-2021-2212</cvename>
<cvename>CVE-2021-2213</cvename>
<cvename>CVE-2021-2278</cvename>
<cvename>CVE-2021-2299</cvename>
<cvename>CVE-2021-2230</cvename>
<cvename>CVE-2021-2146</cvename>
<cvename>CVE-2021-2201</cvename>
<cvename>CVE-2021-2208</cvename>
<cvename>CVE-2021-2215</cvename>
<cvename>CVE-2021-2217</cvename>
<cvename>CVE-2021-2293</cvename>
<cvename>CVE-2021-2174</cvename>
<cvename>CVE-2021-2171</cvename>
<cvename>CVE-2021-2162</cvename>
<cvename>CVE-2021-2301</cvename>
<cvename>CVE-2021-2308</cvename>
<cvename>CVE-2021-2232</cvename>
</references>
<dates>
<discovery>2021-04-20</discovery>
<entry>2021-04-20</entry>
<modified>2021-05-04</modified>
</dates>
</vuln>
<vuln vid="e87c2647-a188-11eb-8806-1c1b0d9ea7e6">
<topic>All versions of Apache OpenOffice through 4.1.9 can open non-http(s) hyperlinks. If the link is specifically crafted this could lead to untrusted code execution.</topic>
<affects>
<package>
<name>apache-openoffice</name>
<range><lt>4.1.10</lt></range>
</package>
<package>
<name>apache-openoffice-devel</name>
<range><lt>4.2.1619649022,4</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Apache Openofffice project reports:</p>
<blockquote cite="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-30245">
<p>The project received a report that all versions of Apache OpenOffice through 4.1.8 can open non-http(s) hyperlinks. The problem has existed since about 2006 and the issue is also in 4.1.9. If the link is specifically crafted this could lead to untrusted code execution. It is always best practice to be careful opening documents from unknown and unverified sources. The mitigation in Apache OpenOffice 4.1.10 (unreleased) assures that a security warning is displayed giving the user the option of continuing to open the hyperlink.</p>
</blockquote>
</body>
</description>
<references>
<url>https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-30245</url>
<cvename>CVE-2021-30245</cvename>
</references>
<dates>
<discovery>2021-01-25</discovery>
<entry>2021-04-20</entry>
</dates>
</vuln>
<vuln vid="20006b5f-a0bc-11eb-8ae6-fc4dd43e2b6a">
<topic>Apache Maven -- multiple vulnerabilities</topic>
<affects>
<package>
<name>maven</name>
<range><lt>3.8.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Apache Maven project reports:</p>
<blockquote cite="http://maven.apache.org/docs/3.8.1/release-notes.html#cve-2021-26291">
<p>We received a report from Jonathan Leitschuh about a vulnerability
of custom repositories in dependency POMs. We've split this up
into three separate issues:</p>
<ul>
<li>Possible Man-In-The-Middle-Attack due to custom repositories
using HTTP.
More and more repositories use HTTPS nowadays, but this
hasn't always been the case. This means that Maven Central contains
POMs with custom repositories that refer to a URL over HTTP. This
makes downloads via such repository a target for a MITM attack. At
the same time, developers are probably not aware that for some
downloads an insecure URL is being used. Because uploaded POMs to
Maven Central are immutable, a change for Maven was required. To
solve this, we extended the mirror configuration with blocked
parameter, and we added a new external:http:* mirror selector (like
existing external:*), meaning "any external URL using HTTP".
The decision was made to block such external HTTP repositories by default:
this is done by providing a mirror in the conf/settings.xml blocking
insecure HTTP external URLs.</li>
<li>Possible Domain Hijacking due to custom repositories using abandoned
domains
Sonatype has analyzed which domains were abandoned and has claimed these
domains.</li>
<li>Possible hijacking of downloads by redirecting to custom repositories
This one was the hardest to analyze and explain. The short story is:
you're safe, dependencies are only downloaded from repositories within
their context. So there are two main questions: what is the context and
what is the order? The order is described on the Repository Order page.
The first group of repositories are defined in the settings.xml (both user
and global). The second group of repositories are based on inheritence,
with ultimately the super POM containing the URL to Maven Central. The
third group is the most complex one but is important to understand the
term context: repositories from the effective POMs from the dependency
path to the artifact. So if a dependency was defined by another dependency
or by a Maven project, it will also include their repositories. In the end
this is not a bug, but a design feature.</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>http://maven.apache.org/docs/3.8.1/release-notes.html#cve-2021-26291</url>
<cvename>CVE-2021-26291</cvename>
<cvename>CVE-2020-13956</cvename>
</references>
<dates>
<discovery>2021-04-04</discovery>
<entry>2021-04-19</entry>
</dates>
</vuln>
<vuln vid="093a6baf-9f99-11eb-b150-000c292ee6b8">
<topic>Consul -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>consul</name>
<range><lt>1.9.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Hashicorp reports:</p>
<blockquote cite="https://github.com/hashicorp/consul/releases/tag/v1.9.5">
<p>Add content-type headers to raw KV responses to prevent XSS attacks
(CVE-2020-25864). audit-logging: Parse endpoint URL to prevent
requests from bypassing the audit log (CVE-2021-28156).</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/hashicorp/consul/releases/tag/v1.9.5</url>
<cvename>CVE-2020-25864</cvename>
<cvename>CVE-2021-28156</cvename>
</references>
<dates>
<discovery>2021-04-15</discovery>
<entry>2021-04-17</entry>
</dates>
</vuln>
<vuln vid="75aae50b-9e3c-11eb-9bc3-8c164582fbac">
<topic>AccountService -- Insufficient path check in user_change_icon_file_authorized_cb()</topic>
<affects>
<package>
<name>accountsservice</name>
<range><lt>0.6.50</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>NVD reports:</p>
<blockquote cite="https://nvd.nist.gov/vuln/detail/CVE-2018-14036">
<p>
Directory Traversal with ../ sequences occurs in AccountsService
before 0.6.50 because of an insufficient path check in
user_change_icon_file_authorized_cb() in user.c.
</p>
</blockquote>
</body>
</description>
<references>
<url>http://www.openwall.com/lists/oss-security/2018/07/02/2</url>
<url>https://nvd.nist.gov/vuln/detail/CVE-2018-14036</url>
<url>https://www.securityfocus.com/bid/104757</url>
<url>https://bugs.freedesktop.org/show_bug.cgi?id=107085</url>
<url>https://bugzilla.suse.com/show_bug.cgi?id=1099699</url>
<url>https://cgit.freedesktop.org/accountsservice/commit/?id=f9abd359f71a5bce421b9ae23432f539a067847a</url>
<cvename>CVE-2018-14036</cvename>
</references>
<dates>
<discovery>2018-07-13</discovery>
<entry>2021-04-15</entry>
</dates>
</vuln>
<vuln vid="40b481a9-9df7-11eb-9bc3-8c164582fbac">
<topic>mdbook -- XSS in mdBook's search page</topic>
<affects>
<package>
<name>mdbook</name>
<range><lt>0.4.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Rust Security Response Working Group reports:</p>
<blockquote cite="https://github.com/rust-lang/mdBook/security/advisories/GHSA-gx5w-rrhp-f436">
<p>
The search feature of mdBook (introduced in version 0.1.4) was
affected by a cross site scripting vulnerability that allowed an
attacker to execute arbitrary JavaScript code on an user's browser
by tricking the user into typing a malicious search query, or
tricking the user into clicking a link to the search page with the
malicious search query prefilled.
mdBook 0.4.5 fixes the vulnerability by properly escaping the search
query.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-045</url>
<url>https://github.com/rust-lang/mdBook/commit/32abeef088e98327ca0dfccdad92e84afa9d2e9b</url>
<url>https://github.com/rust-lang/mdBook/security/advisories/GHSA-gx5w-rrhp-f436</url>
<url>https://groups.google.com/g/rustlang-security-announcements/c/3-sO6of29O0?pli=1</url>
<url>https://nvd.nist.gov/vuln/detail/CVE-2020-26297</url>
<cvename>CVE-2020-26297</cvename>
</references>
<dates>
<discovery>2021-04-01</discovery>
<entry>2021-04-15</entry>
</dates>
</vuln>
<vuln vid="fb6e53ae-9df6-11eb-ba8c-001b217b3468">
<topic>Gitlab -- Vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.10.0</ge><lt>13.10.3</lt></range>
<range><ge>13.9.0</ge><lt>13.9.6</lt></range>
<range><ge>7.12</ge><lt>13.8.8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>SO-AND-SO reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/04/14/security-release-gitlab-13-10-3-released/">
<p>Remote code execution when uploading specially crafted image files</p>
<p>Update Rexml</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/04/14/security-release-gitlab-13-10-3-released/</url>
<cvename>CVE-2021-28965</cvename>
</references>
<dates>
<discovery>2021-04-14</discovery>
<entry>2021-04-15</entry>
</dates>
</vuln>
<vuln vid="f3d86439-9def-11eb-97a0-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>90.0.4430.72</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop_14.html">
<p>This release contains 37 security fixes, including:</p>
<ul>
<li>[1025683] High CVE-2021-21201: Use after free in permissions.
Reported by Gengming Liu, Jianyu Chen at Tencent Keen Security
Lab on 2019-11-18</li>
<li>[1188889] High CVE-2021-21202: Use after free in extensions.
Reported by David Erceg on 2021-03-16</li>
<li>[1192054] High CVE-2021-21203: Use after free in Blink.
Reported by asnine on 2021-03-24</li>
<li>[1189926] High CVE-2021-21204: Use after free in Blink.
Reported by Chelse Tsai-Simek, Jeanette Ulloa, and Emily
Voigtlander of Seesaw on 2021-03-19</li>
<li>[1165654] High CVE-2021-21205: Insufficient policy enforcement
in navigation. Reported by Alison Huffman, Microsoft Browser
Vulnerability Research on 2021-01-12</li>
<li>[1195333] High CVE-2021-21221: Insufficient validation of
untrusted input in Mojo. Reported by Guang Gong of Alpha Lab,
Qihoo 360 on 2021-04-02</li>
<li>[1185732] Medium CVE-2021-21207: Use after free in IndexedDB.
Reported by koocola (@alo_cook) and Nan Wang (@eternalsakura13)
of 360 Alpha Lab on 2021-03-08</li>
<li>[1039539] Medium CVE-2021-21208: Insufficient data validation
in QR scanner. Reported by Ahmed Elsobky (@0xsobky) on
2020-01-07</li>
<li>[1143526] Medium CVE-2021-21209: Inappropriate implementation
in storage. Reported by Tom Van Goethem (@tomvangoethem) on
2020-10-29</li>
<li>[1184562] Medium CVE-2021-21210: Inappropriate implementation
in Network. Reported by @bananabr on 2021-03-04</li>
<li>[1103119] Medium CVE-2021-21211: Inappropriate implementation
in Navigation. Reported by Akash Labade (m0ns7er) on
2020-07-08</li>
<li>[1145024] Medium CVE-2021-21212: Incorrect security UI in
Network Config UI. Reported by Hugo Hue and Sze Yiu Chau of the
Chinese University of Hong Kong on 2020-11-03</li>
<li>[1161806] Medium CVE-2021-21213: Use after free in WebMIDI.
Reported by raven (@raid_akame) on 2020-12-25</li>
<li>[1170148] Medium CVE-2021-21214: Use after free in Network API.
Reported by Anonymous on 2021-01-24</li>
<li>[1172533] Medium CVE-2021-21215: Inappropriate implementation
in Autofill. Reported by Abdulrahman Alqabandi, Microsoft Browser
Vulnerability Research on 2021-01-30</li>
<li>[1173297] Medium CVE-2021-21216: Inappropriate implementation
in Autofill. Reported by Abdulrahman Alqabandi, Microsoft Browser
Vulnerability Research on 2021-02-02</li>
<li>[1166462] Low CVE-2021-21217: Uninitialized Use in PDFium.
Reported by Zhou Aiting (@zhouat1) of Qihoo 360 Vulcan Team on
2021-01-14</li>
<li>[1166478] Low CVE-2021-21218: Uninitialized Use in PDFium.
Reported by Zhou Aiting (@zhouat1) of Qihoo 360 Vulcan Team on
2021-01-14</li>
<li>[1166972] Low CVE-2021-21219: Uninitialized Use in PDFium.
Reported by Zhou Aiting (@zhouat1) of Qihoo 360 Vulcan Team on
2021-01-15</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21201</cvename>
<cvename>CVE-2021-21202</cvename>
<cvename>CVE-2021-21203</cvename>
<cvename>CVE-2021-21204</cvename>
<cvename>CVE-2021-21205</cvename>
<cvename>CVE-2021-21221</cvename>
<cvename>CVE-2021-21207</cvename>
<cvename>CVE-2021-21208</cvename>
<cvename>CVE-2021-21209</cvename>
<cvename>CVE-2021-21210</cvename>
<cvename>CVE-2021-21211</cvename>
<cvename>CVE-2021-21212</cvename>
<cvename>CVE-2021-21213</cvename>
<cvename>CVE-2021-21214</cvename>
<cvename>CVE-2021-21215</cvename>
<cvename>CVE-2021-21216</cvename>
<cvename>CVE-2021-21217</cvename>
<cvename>CVE-2021-21218</cvename>
<cvename>CVE-2021-21219</cvename>
<url>https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop_14.html</url>
</references>
<dates>
<discovery>2021-04-14</discovery>
<entry>2021-04-15</entry>
</dates>
</vuln>
<vuln vid="7c0d71a9-9d48-11eb-97a0-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>89.0.4389.128</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop.html">
<p>This release contains two security fixes:</p>
<ul>
<li>[1196781] High CVE-2021-21206: Use after free in Blink. Reported
by Anonymous on 2021-04-07</li>
<li>[1196683] High CVE-2021-21220: Insufficient validation of
untrusted input in V8 for x86_64. Reported by Bruno Keith (@bkth_)
and Niklas Baumstark (@_niklasb) of Dataflow Security (@dfsec_it)
via ZDI (ZDI-CAN-13569) on 2021-04-07></li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21206</cvename>
<cvename>CVE-2021-21220</cvename>
<url>https://chromereleases.googleblog.com/2021/04/stable-channel-update-for-desktop.html</url>
</references>
<dates>
<discovery>2021-04-13</discovery>
<entry>2021-04-14</entry>
</dates>
</vuln>
<vuln vid="465db5b6-9c6d-11eb-8e8a-bc542f4bd1dd">
<topic>xorg-server -- Input validation failures in X server XInput extension</topic>
<affects>
<package>
<name>xorg-server</name>
<range><lt>1.20.11,1</lt></range>
</package>
<package>
<name>xwayland</name>
<range><lt>1.20.11,1</lt></range>
</package>
<package>
<name>xwayland-devel</name>
<range><le>1.20.0.877</le></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>X.Org server security reports for release 1.20.11:</p>
<blockquote cite="https://lists.x.org/archives/xorg/2021-April/060678.html">
<ul>
<li>Fix XChangeFeedbackControl() request underflow</li>
</ul>
<p>.</p>
</blockquote>
</body>
</description>
<references>
<url>https://gitlab.freedesktop.org/xorg/xserver/-/tags/xorg-server-1.20.11</url>
</references>
<dates>
<discovery>2021-04-13</discovery>
<entry>2021-04-13</entry>
</dates>
</vuln>
<vuln vid="094fb2ec-9aa3-11eb-83cb-0800278d94f0">
<topic>gitea -- multiple vulnerabilities</topic>
<affects>
<package>
<name>gitea</name>
<range><lt>1.14.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Gitea Team reports for release 1.14.0:</p>
<blockquote cite="https://blog.gitea.io/2021/04/gitea-1.14.0-is-released/">
<ul>
<li>Validate email in external authenticator registration form</li>
<li>Ensure validation occurs on clone addresses too</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.14.0</url>
<freebsdpr>ports/254976</freebsdpr>
</references>
<dates>
<discovery>2021-03-11</discovery>
<entry>2021-04-11</entry>
</dates>
</vuln>
<vuln vid="9ee01e60-6045-43df-98e5-a794007e54ef">
<topic>syncthing -- crash due to malformed relay protocol message</topic>
<affects>
<package>
<name>syncthing</name>
<range><lt>1.15.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>syncthing developers report:</p>
<blockquote cite="https://github.com/syncthing/syncthing/security/advisories/GHSA-x462-89pf-6r5h">
<p>syncthing can be caused to crash and exit if sent a malformed relay protocol
message message with a negative length field.</p>
<p>The relay server strelaysrv can be caused to crash and exit if sent a malformed
relay protocol message with a negative length field.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21404</cvename>
<url>https://github.com/syncthing/syncthing/security/advisories/GHSA-x462-89pf-6r5h</url>
</references>
<dates>
<discovery>2021-04-06</discovery>
<entry>2021-04-12</entry>
</dates>
</vuln>
<vuln vid="f671c282-95ef-11eb-9c34-080027f515ea">
<topic>python -- Information disclosure via pydoc -p: /getfile?key=path allows to read arbitrary file on the filesystem</topic>
<affects>
<package>
<name>python38</name>
<range><lt>3.8.9</lt></range>
</package>
<package>
<name>python39</name>
<range><lt>3.9.3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>David Schwörer reports:</p>
<blockquote cite="https://pythoninsider.blogspot.com/2021/04/python-393-and-389-are-now-available.html">
<p>
Remove the getfile feature of the pydoc module which could be
abused to read arbitrary files on the disk (directory traversal
vulnerability). Moreover, even source code of Python modules
can contain sensitive data like passwords.
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-3426</cvename>
<url>https://pythoninsider.blogspot.com/2021/04/python-393-and-389-are-now-available.html</url>
<url>https://bugs.python.org/issue42988</url>
</references>
<dates>
<discovery>2021-01-21</discovery>
<entry>2021-04-10</entry>
</dates>
</vuln>
<vuln vid="d10fc771-958f-11eb-9c34-080027f515ea">
<topic>curl -- TLS 1.3 session ticket proxy host mixup</topic>
<affects>
<package>
<name>curl</name>
<range><ge>7.63.0</ge><lt>7.76.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Daniel Stenberg reports:</p>
<blockquote cite="https://curl.se/docs/CVE-2021-22890.html">
<p>
Enabled by default, libcurl supports the use of TLS 1.3 session
tickets to resume previous TLS sessions to speed up subsequent
TLS handshakes.
</p>
<p>
When using a HTTPS proxy and TLS 1.3, libcurl can confuse session
tickets arriving from the HTTPS proxy but work as if they arrived
from the remote server and then wrongly "short-cut" the host
handshake. The reason for this confusion is the modified sequence
from TLS 1.2 when the session ids would provided only during the
TLS handshake, while in TLS 1.3 it happens post hand-shake and
the code was not updated to take that changed behavior into account.
</p>
<p>
When confusing the tickets, a HTTPS proxy can trick libcurl to use
the wrong session ticket resume for the host and thereby circumvent
the server TLS certificate check and make a MITM attack to be
possible to perform unnoticed.
</p>
<p>
This flaw can allow a malicious HTTPS proxy to MITM the traffic.
Such a malicious HTTPS proxy needs to provide a certificate that
curl will accept for the MITMed server for an attack to work -
unless curl has been told to ignore the server certificate check.
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-22890</cvename>
<url>https://curl.se/docs/CVE-2021-22890.html</url>
</references>
<dates>
<discovery>2021-03-31</discovery>
<entry>2021-04-10</entry>
</dates>
</vuln>
<vuln vid="b1194286-958e-11eb-9c34-080027f515ea">
<topic>curl -- Automatic referer leaks credentials</topic>
<affects>
<package>
<name>curl</name>
<range><ge>7.1.1</ge><lt>7.76.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Daniel Stenberg reports:</p>
<blockquote cite="https://curl.se/docs/CVE-2021-22876.html">
<p>
libcurl does not strip off user credentials from the URL when
automatically populating the Referer: HTTP request header field
in outgoing HTTP requests, and therefore risks leaking sensitive
data to the server that is the target of the second HTTP request.
</p>
<p>
libcurl automatically sets the Referer: HTTP request header field
in outgoing HTTP requests if the CURLOPT_AUTOREFERER option is set.
With the curl tool, it is enabled with --referer ";auto".
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-22876</cvename>
<url>https://curl.se/docs/CVE-2021-22876.html</url>
</references>
<dates>
<discovery>2021-03-31</discovery>
<entry>2021-04-10</entry>
</dates>
</vuln>
<vuln vid="8ba23a62-997d-11eb-9f0e-0800278d94f0">
<topic>gitea -- multiple vulnerabilities</topic>
<affects>
<package>
<name>gitea</name>
<range><lt>1.13.7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Gitea Team reports for release 1.13.7:</p>
<blockquote cite="https://blog.gitea.io/2021/04/gitea-1.13.7-is-released/">
<ul>
<li>Update to bluemonday-1.0.6</li>
<li>Clusterfuzz found another way</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.13.7</url>
<freebsdpr>ports/254930</freebsdpr>
</references>
<dates>
<discovery>2021-04-07</discovery>
<entry>2021-04-09</entry>
</dates>
</vuln>
<vuln vid="9ae2c00f-97d0-11eb-8cd6-080027f515ea">
<topic>clamav -- Multiple vulnerabilites</topic>
<affects>
<package>
<name>clamav</name>
<range><lt>0.103.2,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Micah Snyder reports:</p>
<blockquote cite="https://blog.clamav.net/2021/04/clamav-01032-security-patch-release.html">
<dl>
<dt>CVE-2021-1252</dt>
<dd>Excel XLM parser infinite loop</dd>
<dt>CVE-2021-1404</dt>
<dd>PDF parser buffer over-read; possible crash. </dd>
<dt>CVE-2021-1405</dt>
<dd>Mail parser NULL-dereference crash. </dd>
</dl>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-1252</cvename>
<cvename>CVE-2021-1404</cvename>
<cvename>CVE-2021-1405</cvename>
<url>https://blog.clamav.net/2021/04/clamav-01032-security-patch-release.html</url>
</references>
<dates>
<discovery>2021-04-07</discovery>
<entry>2021-04-07</entry>
</dates>
</vuln>
<vuln vid="9595d002-edeb-4602-be2d-791cd654247e">
<topic>jenkins -- multiple vulnerabilities</topic>
<affects>
<package>
<name>jenkins</name>
<range><lt>2.287</lt></range>
</package>
<package>
<name>jenkins-lts</name>
<range><lt>2.277.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jenkins Security Advisory:</p>
<blockquote cite="https://www.jenkins.io/security/advisory/2021-04-07/">
<h1>Description</h1>
<h5>(Low) SECURITY-1721 / CVE-2021-21639</h5>
<p>Lack of type validation in agent related REST API</p>
<h5>(Medium) SECURITY-1871 / CVE-2021-21640</h5>
<p>View name validation bypass</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.jenkins.io/security/advisory/2021-04-07/</url>
</references>
<dates>
<discovery>2021-04-07</discovery>
<entry>2021-04-08</entry>
</dates>
</vuln>
<vuln vid="c0c1834c-9761-11eb-acfd-0022489ad614">
<topic>Node.js -- April 2021 Security Releases</topic>
<affects>
<package>
<name>node10</name>
<range><lt>10.24.1</lt></range>
</package>
<package>
<name>node12</name>
<range><lt>12.22.1</lt></range>
</package>
<package>
<name>node14</name>
<range><lt>14.16.1</lt></range>
</package>
<package>
<name>node</name>
<range><lt>15.14.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Node.js reports:</p>
<blockquote cite="https://nodejs.org/en/blog/vulnerability/april-2021-security-releases/">
<h1>OpenSSL - CA certificate check bypass with X509_V_FLAG_X509_STRICT (High) (CVE-2021-3450)</h1>
<p>This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt</p>
<h1>OpenSSL - NULL pointer deref in signature_algorithms processing (High) (CVE-2021-3449)</h1>
<p>This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt</p>
<h1>npm upgrade - Update y18n to fix Prototype-Pollution (High) (CVE-2020-7774)</h1>
<p>This is a vulnerability in the y18n npm module which may be exploited by prototype pollution. You can read more about it in https://github.com/advisories/GHSA-c4w7-xm78-47vh</p>
</blockquote>
</body>
</description>
<references>
<url>https://nodejs.org/en/blog/vulnerability/april-2021-security-releases/</url>
<url>https://www.openssl.org/news/secadv/20210325.txt</url>
<url>https://github.com/advisories/GHSA-c4w7-xm78-47vh</url>
<cvename>CVE-2021-3450</cvename>
<cvename>CVE-2021-3449</cvename>
<cvename>CVE-2020-7774</cvename>
</references>
<dates>
<discovery>2021-04-06</discovery>
<entry>2021-04-07</entry>
</dates>
</vuln>
<vuln vid="a7b97d26-9792-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- jail escape possible by mounting over jail root</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_6</lt></range>
<range><ge>11.4</ge><lt>11.4_9</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>Due to a race condition between lookup of ".." and remounting a filesystem,
a process running inside a jail might access filesystem hierarchy outside
of jail.</p>
<h1>Impact:</h1>
<p>A process with superuser privileges running inside a jail configured
with the allow.mount permission (not enabled by default) could change the root
directory outside of the jail, and thus gain full read and write access
to all files and directories in the system.</p>
</body>
</description>
<references>
<cvename>CVE-2020-25584</cvename>
<freebsdsa>SA-21:10.jail_mount</freebsdsa>
</references>
<dates>
<discovery>2021-04-06</discovery>
<entry>2021-04-07</entry>
</dates>
</vuln>
<vuln vid="f8e1e2a6-9791-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- double free in accept_filter(9) socket configuration interface</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_6</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>An unprivileged process can configure an accept filter on a listening
socket. This is done using the setsockopt(2) system call. The process
supplies the name of the accept filter which is to be attached to the
socket, as well as a string containing filter-specific information.</p>
<p>If the filter implements the accf_create callback, the socket option
handler attempts to preserve the process-supplied argument string. A
bug in the socket option handler caused this string to be freed
prematurely, leaving a dangling pointer. Additional operations on the
socket can turn this into a double free or a use-after-free.</p>
<h1>Impact:</h1>
<p>The bug may be exploited to trigger local privilege escalation or
kernel memory disclosure.</p>
</body>
</description>
<references>
<cvename>CVE-2021-29627</cvename>
<freebsdsa>SA-21:09.accept_filter</freebsdsa>
</references>
<dates>
<discovery>2021-04-06</discovery>
<entry>2021-04-07</entry>
</dates>
</vuln>
<vuln vid="13d37672-9791-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- Memory disclosure by stale virtual memory mapping</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_6</lt></range>
<range><ge>11.4</ge><lt>11.4_9</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>A particular case of memory sharing is mishandled in the virtual memory
system. It is possible and legal to establish a relationship where
multiple descendant processes share a mapping which shadows memory of an
ancestor process. In this scenario, when one process modifies memory
through such a mapping, the copy-on-write logic fails to invalidate
other mappings of the source page. These stale mappings may remain even
after the mapped pages have been reused for another purpose.</p>
<h1>Impact:</h1>
<p>An unprivileged local user process can maintain a mapping of a page
after it is freed, allowing that process to read private data belonging
to other processes or the kernel.</p>
</body>
</description>
<references>
<cvename>CVE-2021-29626</cvename>
<freebsdsa>SA-21:08.vm</freebsdsa>
</references>
<dates>
<discovery>2021-04-06</discovery>
<entry>2021-04-07</entry>
</dates>
</vuln>
<vuln vid="79fa9f23-9725-11eb-b530-7085c2fb2c14">
<topic>upnp -- stack overflow vulnerability</topic>
<affects>
<package>
<name>upnp</name>
<range><lt>1.14.5,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Mitre reports:</p>
<blockquote cite="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28302">
<p>
A stack overflow in pupnp 1.16.1 can cause the denial of service through the
Parser_parseDocument() function. ixmlNode_free() will release a child node
recursively, which will consume stack space and lead to a crash.
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-28302</cvename>
<url>https://github.com/pupnp/pupnp/issues/249</url>
</references>
<dates>
<discovery>2021-03-12</discovery>
<entry>2021-04-06</entry>
</dates>
</vuln>
<vuln vid="dec7e4b6-961a-11eb-9c34-080027f515ea">
<topic>ruby -- XML round-trip vulnerability in REXML</topic>
<affects>
<package>
<name>ruby</name>
<range><ge>2.5.0,1</ge><lt>2.5.9,1</lt></range>
<range><ge>2.6.0,1</ge><lt>2.6.7,1</lt></range>
<range><ge>2.7.0,1</ge><lt>2.7.3,1</lt></range>
<range><ge>3.0.0.p1,1</ge><lt>3.0.1,1</lt></range>
</package>
<package>
<name>rubygem-rexml</name>
<range><lt>3.2.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Juho Nurminen reports:</p>
<blockquote cite="https://www.ruby-lang.org/en/news/2021/04/05/xml-round-trip-vulnerability-in-rexml-cve-2021-28965/">
<p>
When parsing and serializing a crafted XML document, REXML gem
(including the one bundled with Ruby) can create a wrong XML
document whose structure is different from the original one.
The impact of this issue highly depends on context, but it may
lead to a vulnerability in some programs that are using REXML.
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-28965</cvename>
<url>https://www.ruby-lang.org/en/news/2021/04/05/xml-round-trip-vulnerability-in-rexml-cve-2021-28965/</url>
</references>
<dates>
<discovery>2021-04-05</discovery>
<entry>2021-04-05</entry>
</dates>
</vuln>
<vuln vid="bddadaa4-9227-11eb-99c5-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>89.0.4389.114</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/03/stable-channel-update-for-desktop_30.html">
<p>This update contains 8 security fixes, including:</p>
<ul>
<li>[1181228] High CVE-2021-21194: Use after free in screen capture.
Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2021-02-23</li>
<li>[1182647] High CVE-2021-21195: Use after free in V8.
Reported by Bohan Liu (@P4nda20371774) and Moon Liang of Tencent
Security Xuanwu Lab on 2021-02-26</li>
<li>[1175992] High CVE-2021-21196: Heap buffer overflow in
TabStrip. Reported by Khalil Zhani on 2021-02-08</li>
<li>[1173903] High CVE-2021-21197: Heap buffer overflow in
TabStrip. Reported by Abdulrahman Alqabandi, Microsoft Browser
Vulnerability Research on 2021-02-03</li>
<li>[1184399] High CVE-2021-21198: Out of bounds read in IPC.
Reported by Mark Brand of Google Project Zero on 2021-03-03</li>
<li>[1179635] High CVE-2021-21199: Use Use after free in Aura.
Reported by Weipeng Jiang (@Krace) from Codesafe Team of
Legendsec at Qi'anxin Group and Evangelos Foutras</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21194</cvename>
<cvename>CVE-2021-21195</cvename>
<cvename>CVE-2021-21196</cvename>
<cvename>CVE-2021-21197</cvename>
<cvename>CVE-2021-21198</cvename>
<cvename>CVE-2021-21199</cvename>
<url>https://chromereleases.googleblog.com/2021/03/stable-channel-update-for-desktop_30.html</url>
</references>
<dates>
<discovery>2021-03-31</discovery>
<entry>2021-03-31</entry>
</dates>
</vuln>
<vuln vid="56abf87b-96ad-11eb-a218-001b217b3468">
<topic>Gitlab -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.10.0</ge><lt>13.10.1</lt></range>
<range><ge>13.9.0</ge><lt>13.9.5</lt></range>
<range><ge>9</ge><lt>13.8.7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gitlab reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/03/31/security-release-gitlab-13-10-1-released/">
<p>Arbitrary File Read During Project Import</p>
<p>Kroki Arbitrary File Read/Write</p>
<p>Stored Cross-Site-Scripting in merge requests</p>
<p>Access data of an internal project through a public project fork as an anonymous user</p>
<p>Incident metric images can be deleted by any user</p>
<p>Infinite Loop When a User Access a Merge Request</p>
<p>Stored XSS in scoped labels</p>
<p>Admin CSRF in System Hooks Execution Through API</p>
<p>Update OpenSSL dependency</p>
<p>Update PostgreSQL dependency</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/03/31/security-release-gitlab-13-10-1-released/</url>
</references>
<dates>
<discovery>2021-03-31</discovery>
<entry>2021-04-06</entry>
</dates>
</vuln>
<vuln vid="1f6d97da-8f72-11eb-b3f1-005056a311d1">
<topic>samba -- Multiple Vulnerabilities</topic>
<affects>
<package>
<name>samba411</name>
<range><le>4.11.15</le></range>
</package>
<package>
<name>samba412</name>
<range><lt>4.12.14</lt></range>
</package>
<package>
<name>samba413</name>
<range><lt>4.13.7</lt></range>
</package>
<package>
<name>samba414</name>
<range><lt>4.14.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Samba Team reports:</p>
<blockquote cite="https://www.samba.org/samba/history/security.html">
<ul>
<li>CVE-2020-27840: An anonymous attacker can crash the Samba AD DC
LDAP server by sending easily crafted DNs as
part of a bind request. More serious heap corruption
is likely also possible.</li>
<li>CVE-2021-20277: User-controlled LDAP filter strings against
the AD DC LDAP server may crash the LDAP server.</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://www.samba.org/samba/security/CVE-2020-27840.html</url>
<url>https://www.samba.org/samba/security/CVE-2021-20277.html</url>
<cvename>CVE-2020-27840</cvename>
<cvename>CVE-2021-20277</cvename>
</references>
<dates>
<discovery>2021-03-24</discovery>
<entry>2021-03-28</entry>
</dates>
</vuln>
<vuln vid="80f9dbd3-8eec-11eb-b9e8-3525f51429a0">
<topic>nettle 3.7.2 -- fix serious ECDSA signature verify bug</topic>
<affects>
<package>
<name>nettle</name>
<range><lt>3.7.2</lt></range>
</package>
<package>
<name>linux-c7-nettle</name>
<range><lt>3.7.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Niels Möller reports:</p>
<blockquote cite="https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009458.html">
<p>
I've prepared a new bug-fix release of Nettle, a low-level
cryptographics library, to fix a serious bug in the function to
verify ECDSA signatures. Implications include an assertion failure,
which could be used for denial-of-service, when verifying signatures
on the secp_224r1 and secp521_r1 curves.
</p>
<p>
Even when no assert is triggered in ecdsa_verify, ECC point
multiplication may get invalid intermediate values as input, and
produce incorrect results. [...] It appears difficult to construct
an alleged signature that makes the function misbehave in such a way
that an invalid signature is accepted as valid, but such attacks
can't be ruled out without further analysis.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009458.html</url>
</references>
<dates>
<discovery>2021-03-21</discovery>
<entry>2021-03-27</entry>
</dates>
</vuln>
<vuln vid="5a668ab3-8d86-11eb-b8d6-d4c9ef517024">
<topic>OpenSSL -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>openssl</name>
<range><lt>1.1.1k,1</lt></range>
</package>
<package>
<name>FreeBSD</name>
<range><ge>12.2</ge><lt>12.2_5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The OpenSSL project reports:</p>
<blockquote cite="https://www.openssl.org/news/secadv/20210325.txt">
<p>High: CA certificate check bypass with X509_V_FLAG_X509_STRICT
(CVE-2021-3450)<br/>The X509_V_FLAG_X509_STRICT flag enables
additional security checks of the certificates present in a
certificate chain. It is not set by default.</p>
<p>High: NULL pointer deref in signature_algorithms processing
(CVE-2021-3449)<br/>An OpenSSL TLS server may crash if sent a
maliciously crafted renegotiation ClientHello message from a client.
If a TLSv1.2 renegotiation ClientHello omits the
signature_algorithms extension (where it was present in the initial
ClientHello), but includes a signature_algorithms_cert extension
then a NULL pointer dereference will result, leading to a crash and
a denial of service attack.</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.openssl.org/news/secadv/20210325.txt</url>
<cvename>CVE-2021-3449</cvename>
<cvename>CVE-2021-3450</cvename>
<freebsdsa>SA-21:07.openssl</freebsdsa>
</references>
<dates>
<discovery>2021-03-25</discovery>
<entry>2021-03-26</entry>
<modified>2021-04-07</modified>
</dates>
</vuln>
<vuln vid="ec04f3d0-8cd9-11eb-bb9f-206a8a720317">
<topic>spamassassin -- Malicious rule configuration (.cf) files can be configured to run system commands</topic>
<affects>
<package>
<name>spamassassin</name>
<range><lt>3.4.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Apache SpamAssassin project reports:</p>
<blockquote cite="https://mail-archives.apache.org/mod_mbox/spamassassin-announce/202103.mbox/%3C5b7cfd35-27b7-584b-1b39-b7ff0a55f586%40apache.org%3E">
<p>Apache SpamAssassin 3.4.5 was recently released [1], and fixes
an issue of security note where malicious rule configuration (.cf)
files can be configured to run system commands.</p>
<p>In Apache SpamAssassin before 3.4.5, exploits can be injected in
a number of scenarios. In addition to upgrading to SA 3.4.5,
users should only use update channels or 3rd party .cf files from
trusted places.</p>
</blockquote>
</body>
</description>
<references>
<url>https://spamassassin.apache.org/news.html</url>
<url>https://mail-archives.apache.org/mod_mbox/spamassassin-announce/202103.mbox/%3C5b7cfd35-27b7-584b-1b39-b7ff0a55f586%40apache.org%3E</url>
<url>https://cve.mitre.org/cgi-bin/cvename.cgi?name=2020-1946</url>
<cvename>CVE-2020-1946</cvename>
</references>
<dates>
<discovery>2021-03-24</discovery>
<entry>2021-03-24</entry>
</dates>
</vuln>
<vuln vid="c4d2f950-8c27-11eb-a3ae-0800278d94f0">
<topic>gitea -- multiple vulnerabilities</topic>
<affects>
<package>
<name>gitea</name>
<range><lt>1.13.6</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Gitea Team reports for release 1.13.6:</p>
<blockquote cite="https://blog.gitea.io/2021/03/gitea-1.13.6-is-released/">
<ul>
<li>Fix bug on avatar middleware</li>
<li>Fix another clusterfuzz identified issue</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.13.5</url>
<freebsdpr>ports/254515</freebsdpr>
</references>
<dates>
<discovery>2021-03-21</discovery>
<entry>2021-03-23</entry>
</dates>
</vuln>
<vuln vid="1431a25c-8a70-11eb-bd16-0800278d94f0">
<topic>gitea -- quoting in markdown text</topic>
<affects>
<package>
<name>gitea</name>
<range><lt>1.13.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Gitea Team reports for release 1.13.5:</p>
<blockquote cite="https://blog.gitea.io/2021/03/gitea-1.13.5-is-released/">
<ul>
<li>Update to goldmark 1.3.3</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.13.5</url>
<freebsdpr>ports/254130</freebsdpr>
</references>
<dates>
<discovery>2021-03-20</discovery>
<entry>2021-03-21</entry>
</dates>
</vuln>
<vuln vid="76b5068c-8436-11eb-9469-080027f515ea">
<topic>OpenSSH -- Double-free memory corruption in ssh-agent</topic>
<affects>
<package>
<name>openssh-portable</name>
<name>openssh-portable-hpn</name>
<name>openssh-portable-gssapi</name>
<range><ge>8.2.p1,1</ge><lt>8.4.p1_4,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>OpenBSD Project reports:</p>
<blockquote cite="https://www.openssh.com/txt/release-8.5">
<p>
ssh-agent(1): fixed a double-free memory corruption that was
introduced in OpenSSH 8.2 . We treat all such memory faults as
potentially exploitable. This bug could be reached by an attacker
with access to the agent socket.
</p>
<p>
On modern operating systems where the OS can provide information
about the user identity connected to a socket, OpenSSH ssh-agent
and sshd limit agent socket access only to the originating user
and root. Additional mitigation may be afforded by the system's
malloc(3)/free(3) implementation, if it detects double-free
conditions.
</p>
<p>
The most likely scenario for exploitation is a user forwarding an
agent either to an account shared with a malicious user or to a
host with an attacker holding root access.
</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-28041</cvename>
<url>https://www.openssh.com/txt/release-8.5</url>
</references>
<dates>
<discovery>2021-03-03</discovery>
<entry>2021-03-13</entry>
<modified>2021-04-20</modified>
</dates>
</vuln>
<vuln vid="50e59056-87f2-11eb-b6a2-001b217b3468">
<topic>Gitlab -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.9.0</ge><lt>13.9.4</lt></range>
<range><ge>13.8.0</ge><lt>13.8.6</lt></range>
<range><ge>13.2.0</ge><lt>13.7.9</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gigtlab reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/03/17/security-release-gitlab-13-9-4-released/">
<p>Remote code execution via unsafe user-controlled markdown rendering options</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/03/17/security-release-gitlab-13-9-4-released/</url>
</references>
<dates>
<discovery>2021-03-17</discovery>
<entry>2021-03-18</entry>
</dates>
</vuln>
<vuln vid="5b72b1ff-877c-11eb-bd4f-2f1d57dafe46">
<topic>dnsmasq -- cache poisoning vulnerability in certain configurations</topic>
<affects>
<package>
<name>dnsmasq</name>
<range><lt>2.85.r1,1</lt></range>
</package>
<package>
<name>dnsmasq-devel</name>
<range><lt>2.85.r1,3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Simon Kelley reports:</p>
<blockquote cite="https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014835.html">
<p>
[In configurations where the forwarding server address contains an @
character for specifying a sending interface or source address, the]
random source port behavior was disabled, making cache poisoning
attacks possible.
</p>
</blockquote>
<p>
This only affects configurations of the form server=1.1.1.1@em0 or
server=1.1.1.1@192.0.2.1, i. e. those that specify an interface to
send through, or an IP address to send from, or use together with
NetworkManager.
</p>
</body>
</description>
<references>
<url>https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014835.html</url>
<cvename>CVE-2021-3448</cvename>
</references>
<dates>
<discovery>2021-03-17</discovery>
<entry>2021-03-18</entry>
</dates>
</vuln>
<vuln vid="b073677f-253a-41f9-bf2b-2d16072a25f6">
<topic>minio -- MITM attack</topic>
<affects>
<package>
<name>minio</name>
<range><lt>2021.03.17.02.33.02</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>minio developer report:</p>
<blockquote cite="https://github.com/minio/minio/security/advisories/GHSA-xr7r-7gpj-5pgp">
<p>
This is a security issue because it enables MITM modification of
request bodies that are meant to have integrity guaranteed by chunk
signatures.
</p>
<p>
In a PUT request using aws-chunked encoding, MinIO ordinarily
verifies signatures at the end of a chunk. This check can be skipped
if the client sends a false chunk size that is much greater than the
actual data sent: the server accepts and completes the request
without ever reaching the end of the chunk + thereby without ever
checking the chunk signature.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/minio/minio/security/advisories/GHSA-xr7r-7gpj-5pgp</url>
</references>
<dates>
<discovery>2021-03-17</discovery>
<entry>2021-03-17</entry>
</dates>
</vuln>
<vuln vid="eeca52dc-866c-11eb-b8d6-d4c9ef517024">
<topic>LibreSSL -- use-after-free</topic>
<affects>
<package>
<name>libressl</name>
<range><lt>3.2.4_1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>OpenBSD reports:</p>
<blockquote cite="https://marc.info/?l=openbsd-announce&m=161582456312832&w=2">
<p>A TLS client using session resumption may cause a use-after-free.</p>
</blockquote>
</body>
</description>
<references>
<url>https://marc.info/?l=openbsd-announce&m=161582456312832&w=2</url>
<url>https://ftp.openbsd.org/pub/OpenBSD/patches/6.8/common/017_libssl.patch.sig</url>
</references>
<dates>
<discovery>2021-03-15</discovery>
<entry>2021-03-16</entry>
</dates>
</vuln>
<vuln vid="b81ad6d6-8633-11eb-99c5-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>89.0.4389.90</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/03/stable-channel-update-for-desktop_12.html">
<p>This release includes 5 security fixes, including:</p>
<ul>
<li>[1167357] High CVE-2021-21191: Use after free in WebRTC.
Reported by raven (@raid_akame) on 2021-01-15</li>
<li>[1181387] High CVE-2021-21192: Heap buffer overflow in tab
groups. Reported by Abdulrahman Alqabandi, Microsoft Browser
Vulnerability Research on 2021-02-23</li>
<li>[1186287] High CVE-2021-21193: Use after free in Blink.
Reported by Anonymous on 2021-03-09</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-11191</cvename>
<cvename>CVE-2021-11192</cvename>
<cvename>CVE-2021-11193</cvename>
<url>https://chromereleases.googleblog.com/2021/03/stable-channel-update-for-desktop_12.html</url>
</references>
<dates>
<discovery>2021-03-12</discovery>
<entry>2021-03-16</entry>
</dates>
</vuln>
<vuln vid="317487c6-85ca-11eb-80fa-14dae938ec40">
<topic>squashfs-tools -- Integer overflow</topic>
<affects>
<package>
<name>squashfs-tools</name>
<range><lt>4.4</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Phillip Lougher reports:</p>
<blockquote cite="https://github.com/plougher/squashfs-tools/commit/f95864afe8833fe3ad782d714b41378e860977b1">
<p>Integer overflow in the read_fragment_table_4 function in unsquash-4.c in Squashfs and sasquatch allows remote attackers to cause a denial of service (application crash) via a crafted input, which triggers a stack-based buffer overflow.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2015-4645</cvename>
<url>https://nvd.nist.gov/vuln/detail/CVE-2015-4645</url>
</references>
<dates>
<discovery>2017-03-17</discovery>
<entry>2021-03-15</entry>
</dates>
</vuln>
<vuln vid="72709326-81f7-11eb-950a-00155d646401">
<topic>go -- encoding/xml: infinite loop when using xml.NewTokenDecoder with a custom TokenReader; archive/zip: panic when calling Reader.Open</topic>
<affects>
<package>
<name>go</name>
<range><lt>1.16.1,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Go project reports:</p>
<blockquote cite="https://github.com/golang/go/issues/44913">
<p>The Decode, DecodeElement, and Skip methods of an xml.Decoder
provided by xml.NewTokenDecoder may enter an infinite loop when
operating on a custom xml.TokenReader which returns an EOF in the
middle of an open XML element.</p>
</blockquote>
<blockquote cite="https://github.com/golang/go/issues/44916">
<p>The Reader.Open API, new in Go 1.16, will panic when used on a ZIP
archive containing files that start with "../".</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-27918</cvename>
<url>http://golang.org/issue/44913</url>
<cvename>CVE-2021-27919</cvename>
<url>http://golang.org/issue/44916</url>
</references>
<dates>
<discovery>2021-03-05</discovery>
<entry>2021-03-10</entry>
</dates>
</vuln>
<vuln vid="502ba001-7ffa-11eb-911c-0800278d94f0">
<topic>gitea -- multiple vulnerabilities</topic>
<affects>
<package>
<name>gitea</name>
<range><lt>1.13.4</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Gitea Team reports for release 1.13.3:</p>
<blockquote cite="https://blog.gitea.io/2021/03/gitea-1.13.3-is-released/">
<ul>
<li>Turn default hash password algorithm back to pbkdf2 from argon2 until we find a better one </li>
</ul>
</blockquote>
<p>The Gitea Team reports for release 1.13.4:</p>
<blockquote cite="https://blog.gitea.io/2021/03/gitea-1.13.4-is-released/">
<ul>
<li>Fix issue popups</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.13.3</url>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.13.4</url>
<freebsdpr>ports/254130</freebsdpr>
</references>
<dates>
<discovery>2021-01-07</discovery>
<entry>2021-02-06</entry>
</dates>
</vuln>
<vuln vid="2dc8927b-54e0-11eb-9342-1c697a013f4b">
<topic>mantis -- multiple vulnerabilities</topic>
<affects>
<package>
<name>mantis-php72</name>
<name>mantis-php73</name>
<name>mantis-php74</name>
<name>mantis-php80</name>
<range><lt>2.24.4,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Mantis 2.24.4 release reports:</p>
<blockquote cite="https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.24.4">
<p>Security and maintenance release, addressing 6 CVEs:</p>
<ul>
<li>0027726: CVE-2020-29603: disclosure of private project name</li>
<li>0027727: CVE-2020-29605: disclosure of private issue summary</li>
<li>0027728: CVE-2020-29604: full disclosure of private issue contents, including bugnotes and attachments</li>
<li>0027361: Private category can be access/used by a non member of a private project (IDOR)</li>
<li>0027779: CVE-2020-35571: XSS in helper_ensure_confirmed() calls</li>
<li>0026794: User Account - Takeover</li>
<li>0027363: Fixed in version can be changed to a version that doesn't exist</li>
<li>0027350: When updating an issue, a Viewer user can be set as Reporter</li>
<li>0027370: CVE-2020-35849: Revisions allow viewing private bugnotes id and summary</li>
<li>0027495: CVE-2020-28413: SQL injection in the parameter "access" on the mc_project_get_users function throught the API SOAP.</li>
<li>0027444: Printing unsanitized user input in install.php</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2020-28413</cvename>
<url>https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28413</url>
<cvename>CVE-2020-35849</cvename>
<url>https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-35849</url>
</references>
<dates>
<discovery>2020-11-10</discovery>
<entry>2021-03-10</entry>
</dates>
</vuln>
<vuln vid="2f3cd69e-7dee-11eb-b92e-0022489ad614">
<topic>Node.js -- February 2021 Security Releases</topic>
<affects>
<package>
<name>node10</name>
<range><lt>10.24.0</lt></range>
</package>
<package>
<name>node12</name>
<range><lt>12.21.0</lt></range>
</package>
<package>
<name>node14</name>
<range><lt>14.16.0</lt></range>
</package>
<package>
<name>node</name>
<range><lt>15.10.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Node.js reports:</p>
<blockquote cite="https://nodejs.org/en/blog/vulnerability/february-2021-security-releases/">
<h1>HTTP2 'unknownProtocol' cause Denial of Service by resource exhaustion (Critical) (CVE-2021-22883)</h1>
<p>Affected Node.js versions are vulnerable to denial of service attacks when too many connection attempts with an 'unknownProtocol' are established. This leads to a leak of file descriptors. If a file descriptor limit is configured on the system, then the server is unable to accept new connections and prevent the process also from opening, e.g. a file. If no file descriptor limit is configured, then this lead to an excessive memory usage and cause the system to run out of memory.</p>
<h1>DNS rebinding in --inspect (CVE-2021-22884)</h1>
<p>Affected Node.js versions are vulnerable to a DNS rebinding attack when the whitelist includes "localhost6". When "localhost6" is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the "localhost6" domain. As long as the attacker uses the "localhost6" domain, they can still apply the attack described in CVE-2018-7160.</p>
<h1>OpenSSL - Integer overflow in CipherUpdate (CVE-2021-23840)</h1>
<p>This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210216.txt</p>
</blockquote>
</body>
</description>
<references>
<url>https://nodejs.org/en/blog/vulnerability/february-2021-security-releases/</url>
<cvename>CVE-2021-22883</cvename>
<cvename>CVE-2021-22884</cvename>
<cvename>CVE-2021-23840</cvename>
</references>
<dates>
<discovery>2021-02-23</discovery>
<entry>2021-03-09</entry>
</dates>
</vuln>
<vuln vid="8bf856ea-7df7-11eb-9aad-001b217b3468">
<topic>Gitlab -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.9.0</ge><lt>13.9.2</lt></range>
<range><ge>13.8.0</ge><lt>13.8.5</lt></range>
<range><lt>13.7.8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gitlab reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/03/04/security-release-gitlab-13-9-2-released/">
<p>JWT token leak via Workhorse</p>
<p>Stored XSS in wiki pages</p>
<p>Group Maintainers are able to use the Group CI/CD Variables API</p>
<p>Insecure storage of GitLab session keys</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/03/04/security-release-gitlab-13-9-2-released/</url>
<cvename>CVE-2021-22185</cvename>
<cvename>CVE-2021-22186</cvename>
</references>
<dates>
<discovery>2021-03-04</discovery>
<entry>2021-03-05</entry>
</dates>
</vuln>
<vuln vid="9e8f0766-7d21-11eb-a2be-001999f8d30b">
<topic>asterisk -- Crash when negotiating T.38 with a zero port</topic>
<affects>
<package>
<name>asterisk16</name>
<range><lt>16.16.2</lt></range>
</package>
<package>
<name>asterisk18</name>
<range><lt>18.2.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Asterisk project reports:</p>
<blockquote cite="https://www.asterisk.org/downloads/security-advisories">
<p>When Asterisk sends a re-invite initiating T.38 faxing
and the endpoint responds with a m=image line and zero
port, a crash will occur in Asterisk. This is a reoccurrence
of AST-2019-004.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2019-15297</cvename>
<url>https://downloads.asterisk.org/pub/security/AST-2021-006.html</url>
</references>
<dates>
<discovery>2021-02-20</discovery>
<entry>2021-03-04</entry>
</dates>
</vuln>
<vuln vid="f00b65d8-7ccb-11eb-b3be-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>89.0.4389.72</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/03/stable-channel-update-for-desktop.html">
<p>This release includes 47 security fixes, including the below.
Google is aware of reports that an exploit for CVE-2021-21166 exists
in the wild.</p>
<ul>
<li>[1171049] High CVE-2021-21159: Heap buffer overflow in
TabStrip. Reported by Khalil Zhani on 2021-01-27</li>
<li>[1170531] High CVE-2021-21160: Heap buffer overflow in
WebAudio. Reported by Marcin 'Icewall' Noga of Cisco Talos on
2021-01-25</li>
<li>[1173702] High CVE-2021-21161: Heap buffer overflow in
TabStrip. Reported by Khalil Zhani on 2021-02-02</li>
<li>[1172054] High CVE-2021-21162: Use after free in WebRTC.
Reported by Anonymous on 2021-01-29</li>
<li>[1111239] High CVE-2021-21163: Insufficient data validation in
Reader Mode. Reported by Alison Huffman, Microsoft Browser
Vulnerability Research on 2020-07-30</li>
<li>[1164846] High CVE-2021-21164: Insufficient data validation in
Chrome for iOS. Reported by Muneaki Nishimura (nishimunea) on
2021-01-11</li>
<li>[1174582] High CVE-2021-21165: Object lifecycle issue in audio.
Reported by Alison Huffman, Microsoft Browser Vulnerability
Research on 2021-02-04</li>
<li>[1177465] High CVE-2021-21166: Object lifecycle issue in audio.
Reported by Alison Huffman, Microsoft Browser Vulnerability
Research on 2021-02-11</li>
<li>[1161144] Medium CVE-2021-21167: Use after free in bookmarks.
Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2020-12-22</li>
<li>[1152226] Medium CVE-2021-21168: Insufficient policy
enforcement in appcache. Reported by Luan Herrera (@lbherrera_)
on 2020-11-24</li>
<li>[1166138] Medium CVE-2021-21169: Out of bounds memory access in
V8. Reported by Bohan Liu (@P4nda20371774) and Moon Liang of
Tencent Security Xuanwu Lab on 2021-01-13</li>
<li>[1111646] Medium CVE-2021-21170: Incorrect security UI in
Loader. Reported by David Erceg on 2020-07-31</li>
<li>[1152894] Medium CVE-2021-21171: Incorrect security UI in
TabStrip and Navigation. Reported by Irvan Kurniawan (sourc7) on
2020-11-25</li>
<li>[1150810] Medium CVE-2021-21172: Insufficient policy
enforcement in File System API. Reported by Maciej Pulikowski on
2020-11-19</li>
<li>[1154250] Medium CVE-2021-21173: Side-channel information
leakage in Network Internals. Reported by Tom Van Goethem from
imec-DistriNet, KU Leuven on 2020-12-01</li>
<li>[1158010] Medium CVE-2021-21174: Inappropriate implementation
in Referrer. Reported by Ashish Gautam Kamble on 2020-12-11</li>
<li>[1146651] Medium CVE-2021-21175: Inappropriate implementation
in Site isolation. Reported by Jun Kokatsu, Microsoft Browser
Vulnerability Research on 2020-11-07</li>
<li>[1170584] Medium CVE-2021-21176: Inappropriate implementation
in full screen mode. Reported by Luan Herrera (@lbherrera_) on
2021-01-26</li>
<li>[1173879] Medium CVE-2021-21177: Insufficient policy
enforcement in Autofill. Reported by Abdulrahman Alqabandi,
Microsoft Browser Vulnerability Research on 2021-02-03</li>
<li>[1174186] Medium CVE-2021-21178: Inappropriate implementation
in Compositing. Reported by Japong on 2021-02-03</li>
<li>[1174943] Medium CVE-2021-21179: Use after free in Network
Internals. Reported by Anonymous on 2021-02-05</li>
<li>[1175507] Medium CVE-2021-21180: Use after free in tab search.
Reported by Abdulrahman Alqabandi, Microsoft Browser
Vulnerability Research on 2021-02-07</li>
<li>[1177875] Medium CVE-2020-27844: Heap buffer overflow in
OpenJPEG. Reported by Sean Campbell at Tableau on 2021-02-12</li>
<li>[1182767] Medium CVE-2021-21181: Side-channel information
leakage in autofill. Reported by Xu Lin (University of Illinois
at Chicago), Panagiotis Ilia (University of Illinois at Chicago),
Jason Polakis (University of Illinois at Chicago) on
2021-02-26</li>
<li>[1049265] Low CVE-2021-21182: Insufficient policy enforcement
in navigations. Reported by Luan Herrera (@lbherrera_) on
2020-02-05</li>
<li>[1105875] Low CVE-2021-21183: Inappropriate implementation in
performance APIs. Reported by Takashi Yoneuchi (@y0n3uchy) on
2020-07-15</li>
<li>[1131929] Low CVE-2021-21184: Inappropriate implementation in
performance APIs. Reported by James Hartig on 2020-09-24</li>
<li>[1100748] Low CVE-2021-21185: Insufficient policy enforcement
in extensions. Reported by David Erceg on 2020-06-30</li>
<li>[1153445] Low CVE-2021-21186: Insufficient policy enforcement
in QR scanning. Reported by dhirajkumarnifty on 2020-11-28</li>
<li>[1155516] Low CVE-2021-21187: Insufficient data validation in
URL formatting. Reported by Kirtikumar Anandrao Ramchandani on
2020-12-04</li>
<li>[1161739] Low CVE-2021-21188: Use after free in Blink. Reported
by Woojin Oh(@pwn_expoit) of STEALIEN on 2020-12-24</li>
<li>[1165392] Low CVE-2021-21189: Insufficient policy enforcement
in payments. Reported by Khalil Zhani on 2021-01-11</li>
<li>[1166091] Low CVE-2021-21190: Uninitialized Use in PDFium.
Reported by Zhou Aiting(@zhouat1) of Qihoo 360 Vulcan Team on
2021-01-13</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21159</cvename>
<cvename>CVE-2021-21160</cvename>
<cvename>CVE-2021-21161</cvename>
<cvename>CVE-2021-21162</cvename>
<cvename>CVE-2021-21163</cvename>
<cvename>CVE-2021-21164</cvename>
<cvename>CVE-2021-21165</cvename>
<cvename>CVE-2021-21166</cvename>
<cvename>CVE-2021-21167</cvename>
<cvename>CVE-2021-21168</cvename>
<cvename>CVE-2021-21169</cvename>
<cvename>CVE-2021-21170</cvename>
<cvename>CVE-2021-21171</cvename>
<cvename>CVE-2021-21172</cvename>
<cvename>CVE-2021-21173</cvename>
<cvename>CVE-2021-21174</cvename>
<cvename>CVE-2021-21175</cvename>
<cvename>CVE-2021-21176</cvename>
<cvename>CVE-2021-21177</cvename>
<cvename>CVE-2021-21178</cvename>
<cvename>CVE-2021-21179</cvename>
<cvename>CVE-2021-21180</cvename>
<cvename>CVE-2021-21181</cvename>
<cvename>CVE-2021-21182</cvename>
<cvename>CVE-2021-21183</cvename>
<cvename>CVE-2021-21184</cvename>
<cvename>CVE-2021-21185</cvename>
<cvename>CVE-2021-21186</cvename>
<cvename>CVE-2021-21187</cvename>
<cvename>CVE-2021-21188</cvename>
<cvename>CVE-2021-21189</cvename>
<cvename>CVE-2021-21190</cvename>
<cvename>CVE-2020-27844</cvename>
<url>https://chromereleases.googleblog.com/2021/03/stable-channel-update-for-desktop.html</url>
</references>
<dates>
<discovery>2021-03-02</discovery>
<entry>2021-03-04</entry>
</dates>
</vuln>
<vuln vid="3a469cbc-7a66-11eb-bd3f-08002728f74c">
<topic>jasper -- multiple vulnerabilities</topic>
<affects>
<package>
<name>jasper</name>
<range><lt>2.0.25</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>JasPer Releases:</p>
<blockquote cite="https://github.com/jasper-software/jasper/releases">
<p>- Fix memory-related bugs in the JPEG-2000 codec resulting from
attempting to decode invalid code streams. (#264, #265)</p>
<p> This fix is associated with CVE-2021-26926 and CVE-2021-26927.</p>
<p>- Fix wrong return value under some compilers (#260)</p>
<p>- Fix CVE-2021-3272 heap buffer overflow in jp2_decode (#259)</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/jasper-software/jasper/releases</url>
<cvename>CVE-2021-26926</cvename>
<cvename>CVE-2021-26927</cvename>
<cvename>CVE-2021-3272</cvename>
</references>
<dates>
<discovery>2021-02-07</discovery>
<entry>2021-03-03</entry>
</dates>
</vuln>
<vuln vid="a1e03a3d-7be0-11eb-b392-20cf30e32f6d">
<topic>salt -- multiple vulnerabilities</topic>
<affects>
<package>
<name>py36-salt-2019</name>
<name>py37-salt-2019</name>
<name>py38-salt-2019</name>
<name>py36-salt</name>
<name>py37-salt</name>
<name>py38-salt</name>
<name>py39-salt</name>
<range><lt>2019.2.8</lt></range>
<range><ge>3000</ge><lt>3002.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>SaltStack reports multiple security vulnerabilities in Salt</p>
<blockquote cite="https://saltproject.io/security_announcements/active-saltstack-cve-release-2021-feb-25/">
<ul>
<li>CVE-2021-3197: The Salt-API.s SSH client is vulnerable to a shell injection by including ProxyCommand in an argument, or via ssh_options provided in an API request.</li>
<li>CVE-2021-25281: The Salt-API does not have eAuth credentials for the wheel_async client.</li>
<li>CVE-2021-25282: The salt.wheel.pillar_roots.write method is vulnerable to directory traversal.</li>
<li>CVE-2021-25283: The jinja renderer does not protect against server-side template injection attacks.</li>
<li>CVE-2021-25284: webutils write passwords in cleartext to /var/log/salt/minion</li>
<li>CVE-2021-3148: command injection in salt.utils.thin.gen_thin()</li>
<li>CVE-2020-35662: Several places where Salt was not verifying the SSL cert by default.</li>
<li>CVE-2021-3144: eauth Token can be used once after expiration.</li>
<li>CVE-2020-28972: Code base not validating SSL/TLS certificate of the server, which might allow attackers to obtain sensitive information via a man-in-the-middle attack</li>
<li>CVE-2020-28243: Local Privilege Escalation in the Minion.</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>"https://saltproject.io/security_announcements/active-saltstack-cve-release-2021-feb-25/"</url>
<cvename>CVE-2021-3197</cvename>
<cvename>CVE-2021-25281</cvename>
<cvename>CVE-2021-25282</cvename>
<cvename>CVE-2021-25283</cvename>
<cvename>CVE-2021-25284</cvename>
<cvename>CVE-2021-3148</cvename>
<cvename>CVE-2020-35662</cvename>
<cvename>CVE-2021-3144</cvename>
<cvename>CVE-2020-28972</cvename>
<cvename>CVE-2020-28243</cvename>
</references>
<dates>
<discovery>2021-02-25</discovery>
<entry>2021-03-03</entry>
</dates>
</vuln>
<vuln vid="52bd2d59-4ab5-4bef-a599-7aac4e92238b">
<topic>vault -- unauthenticated license read</topic>
<affects>
<package>
<name>vault</name>
<range><lt>1.6.3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>vault developers report:</p>
<blockquote cite="https://github.com/hashicorp/vault/releases/tag/v1.6.3">
<p>Limited Unauthenticated License Read: We addressed a security vulnerability that allowed for the unauthenticated reading of Vault licenses from DR Secondaries.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-27668</cvename>
<url>https://github.com/hashicorp/vault/releases/tag/v1.6.3</url>
</references>
<dates>
<discovery>2021-02-26</discovery>
<entry>2021-02-27</entry>
</dates>
</vuln>
<vuln vid="31ad2f10-7711-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- jail_remove(2) fails to kill all jailed processes</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_4</lt></range>
<range><ge>11.4</ge><lt>11.4_8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>Due to a race condition in the jail_remove(2) implementation, it
may fail to kill some of the processes.</p>
<h1>Impact:</h1>
<p>A process running inside a jail can avoid being killed during jail
termination. If a jail is subsequently started with the same root
path, a lingering jailed process may be able to exploit the window
during which a devfs filesystem is mounted but the jail's devfs
ruleset has not been applied, to access device nodes which are
ordinarily inaccessible. If the process is privileged, it may be able
to escape the jail and gain full access to the system.</p>
</body>
</description>
<references>
<cvename>CVE-2020-25581</cvename>
<freebsdsa>SA-21:04.jail_remove</freebsdsa>
</references>
<dates>
<discovery>2021-02-24</discovery>
<entry>2021-02-25</entry>
</dates>
</vuln>
<vuln vid="5b8c6e1e-770f-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- Xen grant mapping error handling issues</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_4</lt></range>
<range><ge>11.4</ge><lt>11.4_8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>Grant mapping operations often occur in batch hypercalls, where a
number of operations are done in a single hypercall, the success or
failure of each one reported to the backend driver, and the backend
driver then loops over the results, performing follow-up actions
based on the success or failure of each operation.</p>
<p>Unfortunately, when running in HVM/PVH mode, the FreeBSD backend
drivers mishandle this: Some errors are ignored, effectively implying
their success from the success of related batch elements. In other
cases, errors resulting from one batch element lead to further batch
elements not being inspected, and hence successful ones to not be
possible to properly unmap upon error recovery.</p>
<h1>Impact:</h1>
<p>A malicious or buggy frontend driver may be able to cause resource
leaks in the domain running the corresponding backend driver.</p>
</body>
</description>
<references>
<cvename>CVE-2021-26932</cvename>
<freebsdsa>SA-21:06.xen</freebsdsa>
</references>
<dates>
<discovery>2021-02-24</discovery>
<entry>2021-02-25</entry>
</dates>
</vuln>
<vuln vid="bba850fd-770e-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- jail_attach(2) relies on the caller to change the cwd</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_4</lt></range>
<range><ge>11.4</ge><lt>11.4_8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>When a process, such as jexec(8) or killall(1), calls jail_attach(2)
to enter a jail, the jailed root can attach to it using ptrace(2) before
the current working directory is changed.</p>
<h1>Impact:</h1>
<p>A process with superuser privileges running inside a jail could change
the root directory outside of the jail, thereby gaining full read and
writing access to all files and directories in the system.</p>
</body>
</description>
<references>
<cvename>CVE-2020-25582</cvename>
<freebsdsa>SA-21:05.jail_chdir</freebsdsa>
</references>
<dates>
<discovery>2021-02-24</discovery>
<entry>2021-02-25</entry>
</dates>
</vuln>
<vuln vid="a8654f1d-770d-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- login.access fails to apply rules</topic>
<affects>
<package>
<name>FreeBSD</name>
<range><ge>12.2</ge><lt>12.2_4</lt></range>
<range><ge>11.4</ge><lt>11.4_8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>A regression in the login.access(5) rule processor has the effect
of causing rules to fail to match even when they should not. This
means that rules denying access may be ignored.</p>
<h1>Impact:</h1>
<p>The configuration in login.access(5) may not be applied, permitting
login access to users even when the system is configured to deny it.</p>
</body>
</description>
<references>
<cvename>CVE-2020-25580</cvename>
<freebsdsa>SA-21:03.pam_login_access</freebsdsa>
</references>
<dates>
<discovery>2021-02-24</discovery>
<entry>2021-02-25</entry>
</dates>
</vuln>
<vuln vid="0e38b8f8-75dd-11eb-83f2-8c164567ca3c">
<topic>redis -- Integer overflow on 32-bit systems</topic>
<affects>
<package>
<name>redis-devel</name>
<range><lt>6.2.0</lt></range>
</package>
<package>
<name>redis</name>
<range><lt>6.0.11</lt></range>
</package>
<package>
<name>redis5</name>
<range><lt>5.0.11</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Redis Development team reports:</p>
<blockquote cite="https://github.com/redis/redis/releases/tag/6.2.0">
<p>Redis 4.0 or newer uses a configurable limit for
the maximum supported bulk input size. By default,
it is 512MB which is a safe value for all platforms.
If the limit is significantly increased, receiving a
large request from a client may trigger several
integer overflow scenarios, which would result with
buffer overflow and heap corruption.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21309</cvename>
</references>
<dates>
<discovery>2021-02-22</discovery>
<entry>2021-02-23</entry>
</dates>
</vuln>
<vuln vid="3e9624b3-e92b-4460-8a5a-93247c52c5a1">
<topic>zeek -- Remote crash vulnerability</topic>
<affects>
<package>
<name>zeek</name>
<range><lt>3.0.13</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jon Siwek of Corelight reports:</p>
<blockquote cite="https://github.com/zeek/zeek/releases/tag/v3.0.13">
<p>Fix ASCII Input reader's treatment of input files
containing null-bytes. An input file containing null-bytes
could lead to a buffer-over-read, crash Zeek, and be
exploited to cause Denial of Service. </p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/zeek/zeek/releases/tag/v3.0.13</url>
</references>
<dates>
<discovery>2021-02-10</discovery>
<entry>2021-02-22</entry>
</dates>
</vuln>
<vuln vid="9c03845c-7398-11eb-bc0e-2cf05d620ecc">
<topic>raptor2 -- malformed input file can lead to a segfault</topic>
<affects>
<package>
<name>raptor2</name>
<range><lt>2.0.15_17</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Redland Issue Tracker reports:</p>
<blockquote cite="https://bugs.librdf.org/mantis/view.php?id=650">
<p>due to an out of bounds array access in
raptor_xml_writer_start_element_common.</p>
</blockquote>
</body>
</description>
<references>
<url>https://bugs.librdf.org/mantis/view.php?id=650</url>
</references>
<dates>
<discovery>2020-11-24</discovery>
<entry>2021-02-20</entry>
</dates>
</vuln>
<vuln vid="a45d945a-cc2c-4cd7-a941-fb58fdb1b01e">
<topic>jenkins -- Privilege escalation vulnerability in bundled Spring Security library</topic>
<affects>
<package>
<name>jenkins</name>
<range><lt>2.280</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jenkins Security Advisory:</p>
<blockquote cite="https://www.jenkins.io/security/advisory/2021-02-19/">
<h1>Description</h1>
<h5>(high) SECURITY-2195 / CVE-2021-22112</h5>
<p>Privilege escalation vulnerability in bundled Spring Security library</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.jenkins.io/security/advisory/2021-02-19/</url>
</references>
<dates>
<discovery>2021-02-19</discovery>
<entry>2021-02-20</entry>
</dates>
</vuln>
<vuln vid="1bb2826b-7229-11eb-8386-001999f8d30b">
<topic>asterisk -- Remote Crash Vulnerability in PJSIP channel driver</topic>
<affects>
<package>
<name>asterisk13</name>
<range><lt>13.38.2</lt></range>
</package>
<package>
<name>asterisk16</name>
<range><lt>16.16.1</lt></range>
</package>
<package>
<name>asterisk18</name>
<range><lt>18.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Asterisk project reports:</p>
<blockquote cite="https://www.asterisk.org/downloads/security-advisories">
<p>Given a scenario where an outgoing call is placed from
Asterisk to a remote SIP server it is possible for a crash
to occur.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-26906</cvename>
<url>https://downloads.asterisk.org/pub/security/AST-2021-005.html</url>
</references>
<dates>
<discovery>2021-02-08</discovery>
<entry>2021-02-18</entry>
</dates>
</vuln>
<vuln vid="ca21f5e7-7228-11eb-8386-001999f8d30b">
<topic>asterisk -- An unsuspecting user could crash Asterisk with multiple hold/unhold requests</topic>
<affects>
<package>
<name>asterisk16</name>
<range><ge>16.16.0</ge><lt>16.16.1</lt></range>
</package>
<package>
<name>asterisk18</name>
<range><ge>18.2.0</ge><lt>18.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Asterisk project reports:</p>
<blockquote cite="https://www.asterisk.org/downloads/security-advisories">
<p>Due to a signedness comparison mismatch, an authenticated
WebRTC client could cause a stack overflow and Asterisk
crash by sending multiple hold/unhold requests in quick
succession.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-26714</cvename>
<url>https://downloads.asterisk.org/pub/security/AST-2021-004.html</url>
</references>
<dates>
<discovery>2021-02-11</discovery>
<entry>2021-02-18</entry>
</dates>
</vuln>
<vuln vid="5d8ef725-7228-11eb-8386-001999f8d30b">
<topic>asterisk -- Remote attacker could prematurely tear down SRTP calls</topic>
<affects>
<package>
<name>asterisk13</name>
<range><ge>13.38.1</ge><lt>13.38.2</lt></range>
</package>
<package>
<name>asterisk16</name>
<range><ge>16.16.0</ge><lt>16.16.1</lt></range>
</package>
<package>
<name>asterisk18</name>
<range><ge>18.2.0</ge><lt>18.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Asterisk project reports:</p>
<blockquote cite="https://www.asterisk.org/downloads/security-advisories">
<p>An unauthenticated remote attacker could replay SRTP
packets which could cause an Asterisk instance configured
without strict RTP validation to tear down calls
prematurely.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-26712</cvename>
<url>https://downloads.asterisk.org/pub/security/AST-2021-003.html</url>
</references>
<dates>
<discovery>2021-02-18</discovery>
<entry>2021-02-18</entry>
</dates>
</vuln>
<vuln vid="e3894955-7227-11eb-8386-001999f8d30b">
<topic>asterisk -- Remote crash possible when negotiating T.38</topic>
<affects>
<package>
<name>asterisk16</name>
<range><ge>16.15.0</ge><lt>16.16.1</lt></range>
</package>
<package>
<name>asterisk18</name>
<range><ge>18.1.0</ge><lt>18.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Asterisk project reports:</p>
<blockquote cite="https://www.asterisk.org/downloads/security-advisories">
<p>When re-negotiating for T.38 if the initial remote
response was delayed just enough Asterisk would send both
audio and T.38 in the SDP. If this happened, and the
remote responded with a declined T.38 stream then Asterisk
would crash.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-26717</cvename>
<url>https://downloads.asterisk.org/pub/security/AST-2021-002.html</url>
</references>
<dates>
<discovery>2021-02-05</discovery>
<entry>2021-02-18</entry>
</dates>
</vuln>
<vuln vid="b330db5f-7225-11eb-8386-001999f8d30b">
<topic>asterisk -- Remote crash in res_pjsip_diversion</topic>
<affects>
<package>
<name>asterisk13</name>
<range><ge>13.38.1</ge><lt>13.38.2</lt></range>
</package>
<package>
<name>asterisk16</name>
<range><ge>16.15.1</ge><lt>16.16.1</lt></range>
</package>
<package>
<name>asterisk18</name>
<range><ge>18.1.1</ge><lt>18.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Asterisk project reports:</p>
<blockquote cite="https://www.asterisk.org/downloads/security-advisories">
<p>If a registered user is tricked into dialing a malicious
number that sends lots of 181 responses to Asterisk, each
one will cause a 181 to be sent back to the original
caller with an increasing number of entries in the
"Supported" header. Eventually the number of entries in
the header exceeds the size of the entry array and causes
a crash.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2020-35776</cvename>
<url>https://downloads.asterisk.org/pub/security/AST-2021-001.html</url>
</references>
<dates>
<discovery>2021-01-04</discovery>
<entry>2021-02-18</entry>
</dates>
</vuln>
<vuln vid="8e670b85-706e-11eb-abb2-08002728f74c">
<topic>Rails -- multiple vulnerabilities</topic>
<affects>
<package>
<name>rubygem-activerecord52</name>
<range><lt>5.2.4.5</lt></range>
</package>
<package>
<name>rubygem-actionpack60</name>
<name>rubygem-activerecord60</name>
<range><lt>6.0.3.5</lt></range>
</package>
<package>
<name>rubygem-actionpack61</name>
<name>rubygem-activerecord61</name>
<range><lt>6.1.2.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Ruby on Rails blog:</p>
<blockquote cite="https://weblog.rubyonrails.org/2021/2/10/Rails-5-2-4-5-6-0-3-5-and-6-1-2-1-have-been-released/">
<p>Rails version 5.2.4.5, 6.0.3.5 and 6.1.2.1 have been released! Those
version are security releases and addresses two issues:</p>
<p>CVE-2021-22880: Possible DoS Vulnerability in Active Record PostgreSQL adapter.</p>
<p>CVE-2021-22881: Possible Open Redirect in Host Authorization Middleware.</p>
<p></p>
</blockquote>
</body>
</description>
<references>
<url>https://weblog.rubyonrails.org/2021/2/10/Rails-5-2-4-5-6-0-3-5-and-6-1-2-1-have-been-released/</url>
<url>https://discuss.rubyonrails.org/t/cve-2021-22880-possible-dos-vulnerability-in-active-record-postgresql-adapter/77129</url>
<url>https://discuss.rubyonrails.org/t/cve-2021-22881-possible-open-redirect-in-host-authorization-middleware/77130</url>
<cvename>CVE-2021-22880</cvename>
<cvename>CVE-2021-22881</cvename>
</references>
<dates>
<discovery>2021-02-10</discovery>
<entry>2021-02-17</entry>
</dates>
</vuln>
<vuln vid="48514901-711d-11eb-9846-e09467587c17">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>88.0.4324.182</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/02/stable-channel-update-for-desktop_16.html">
<p>This release contains 10 security fixes, including:</p>
<ul>
<li>[1138143] High CVE-2021-21149: Stack overflow in Data Transfer.
Reported by Ryoya Tsukasaki on 2020-10-14</li>
<li>[1172192] High CVE-2021-21150: Use after free in Downloads.
Reported by Woojin Oh(@pwn_expoit) of STEALIEN on 2021-01-29</li>
<li>[1165624] High CVE-2021-21151: Use after free in Payments.
Reported by Khalil Zhani on 2021-01-12</li>
<li>[1166504] High CVE-2021-21152: Heap buffer overflow in Media.
Reported by Anonymous on 2021-01-14</li>
<li>[1155974] High CVE-2021-21153: Stack overflow in GPU Process.
Reported by Jan Ruge of ERNW GmbH on 2020-12-06</li>
<li>[1173269] High CVE-2021-21154: Heap buffer overflow in Tab
Strip. Reported by Abdulrahman Alqabandi, Microsoft Browser
Vulnerability Research on 2021-02-01</li>
<li>[1175500] High CVE-2021-21155: Heap buffer overflow in Tab
Strip. Reported by Khalil Zhani on 2021-02-07</li>
<li>[1177341] High CVE-2021-21156: Heap buffer overflow in V8.
Reported by Sergei Glazunov of Google Project Zero on
2021-02-11</li>
<li>[1170657] Medium CVE-2021-21157: Use after free in Web
Sockets. Reported by Anonymous on 2021-01-26</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21149</cvename>
<cvename>CVE-2021-21150</cvename>
<cvename>CVE-2021-21151</cvename>
<cvename>CVE-2021-21152</cvename>
<cvename>CVE-2021-21153</cvename>
<cvename>CVE-2021-21154</cvename>
<cvename>CVE-2021-21155</cvename>
<cvename>CVE-2021-21156</cvename>
<cvename>CVE-2021-21157</cvename>
<url>https://chromereleases.googleblog.com/2021/02/stable-channel-update-for-desktop_16.html</url>
</references>
<dates>
<discovery>2021-02-16</discovery>
<entry>2021-02-17</entry>
</dates>
</vuln>
<vuln vid="96a21236-707b-11eb-96d8-d4c9ef517024">
<topic>OpenSSL -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>openssl</name>
<range><lt>1.1.1j,1</lt></range>
</package>
<package>
<name>openssl-devel</name>
<range><lt>3.0.0a12</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The OpenSSL project reports:</p>
<blockquote cite="https://www.openssl.org/news/secadv/20210216.txt">
<p>Null pointer deref in X509_issuer_and_serial_hash()
CVE-2021-23841<br/>(Moderate) The OpenSSL public API function
X509_issuer_and_serial_hash() attempts to create a unique hash
value based on the issuer and serial number data contained within
an X509 certificate. However it fails to correctly handle any errors
that may occur while parsing the issuer field (which might occur if
the issuer field is maliciously constructed). This may subsequently
result in a NULL pointer deref and a crash leading to a potential
denial of service attack.</p>
<p>Integer overflow in CipherUpdate CVE-2021-23840<br/>(Low)
Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate
may overflow the output length argument in some cases where the
input length is close to the maximum permissable length for an
integer on the platform. In such cases the return value from the
function call will be 1 (indicating success), but the output length
value will be negative. This could cause applications to behave
incorrectly or crash.</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.openssl.org/news/secadv/20210216.txt</url>
<cvename>CVE-2021-23841</cvename>
<cvename>CVE-2021-23840</cvename>
<cvename>CVE-2021-23839</cvename>
</references>
<dates>
<discovery>2021-02-16</discovery>
<entry>2021-02-16</entry>
<modified>2021-02-18</modified>
</dates>
</vuln>
<vuln vid="98044aba-6d72-11eb-aed7-1b1b8a70cc8b">
<topic>openexr, ilmbase -- security fixes related to reading corrupted input files</topic>
<affects>
<package>
<name>ilmbase</name>
<range><lt>2.5.5</lt></range>
</package>
<package>
<name>openexr</name>
<range><lt>2.5.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Cary Phillips reports:</p>
<blockquote cite="https://github.com/AcademySoftwareFoundation/openexr/releases/tag/v2.5.5">
<p>Patch release with various bug/sanitizer/security fixes, primarily related to reading corrupted input files[...].</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/AcademySoftwareFoundation/openexr/releases/tag/v2.5.5</url>
</references>
<dates>
<discovery>2021-02-12</discovery>
<entry>2021-02-12</entry>
</dates>
</vuln>
<vuln vid="1020d401-6d2d-11eb-ab0b-001b217b3468">
<topic>Gitlab -- Multiple Vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.8.0</ge><lt>13.8.4</lt></range>
<range><ge>13.7.0</ge><lt>13.7.7</lt></range>
<range><ge>10.5</ge><lt>13.6.7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gitlab reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/02/11/security-release-gitlab-13-8-4-released/">
<p>Improper Certificate Validation for Fortinet OTP</p>
<p>Denial of Service Attack on gitlab-shell</p>
<p>Resource exhaustion due to pending jobs</p>
<p>Confidential issue titles were exposed</p>
<p>Improper access control allowed demoted project members to access authored merge requests</p>
<p>Improper access control allowed unauthorized users to access analytic pages</p>
<p>Unauthenticated CI lint API may lead to information disclosure and SSRF</p>
<p>Prometheus integration in Gitlab may lead to SSRF</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/02/11/security-release-gitlab-13-8-4-released/</url>
</references>
<dates>
<discovery>2021-02-11</discovery>
<entry>2021-02-12</entry>
</dates>
</vuln>
<vuln vid="3003ba60-6cec-11eb-8815-040e3c1b8a02">
<topic>oauth2-proxy -- domain whitelist could be used as redirect</topic>
<affects>
<package>
<name>oauth2-proxy</name>
<range><lt>7.0.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>SO-AND-SO reports:</p>
<blockquote cite="https://nvd.nist.gov/vuln/detail/CVE-2021-21291">
<p>In OAuth2 Proxy before version 7.0.0, for users that use the
whitelist domain feature, a domain that ended in a similar way to
the intended domain could have been allowed as a redirect.</p>
</blockquote>
</body>
</description>
<references>
<url>https://nvd.nist.gov/vuln/detail/CVE-2021-21291</url>
</references>
<dates>
<discovery>2021-02-02</discovery>
<entry>2021-02-12</entry>
</dates>
</vuln>
<vuln vid="06a5abd4-6bc2-11eb-b292-90e2baa3bafc">
<topic>mod_dav_svn -- server crash</topic>
<affects>
<package>
<name>mod_dav_svn</name>
<range><ge>1.9.0</ge><le>1.10.6</le></range>
<range><ge>1.11.0</ge><le>1.14.0</le></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Subversion project reports:</p>
<blockquote cite="https://subversion.apache.org/security/CVE-2020-17525-advisory.txt">
<p>Subversion's mod_authz_svn module will crash if the server is using
in-repository authz rules with the AuthzSVNReposRelativeAccessFile
option and a client sends a request for a non-existing repository URL.</p>
</blockquote>
</body>
</description>
<references>
<url>https://subversion.apache.org/security/CVE-2020-17525-advisory.txt</url>
</references>
<dates>
<discovery>2021-01-29</discovery>
<entry>2021-02-10</entry>
</dates>
</vuln>
<vuln vid="cdb10765-6879-11eb-a7d8-08002734b9ed">
<topic>gitea -- multiple vulnerabilities</topic>
<affects>
<package>
<name>gitea</name>
<range><lt>1.13.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Gitea Team reports for release 1.13.2:</p>
<blockquote cite="https://blog.gitea.io/2021/02/gitea-1.13.2-is-released/">
<ul>
<li>Prevent panic on fuzzer provided string</li>
<li>Add secure/httpOnly attributes to the lang cookie</li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/go-gitea/gitea/releases/tag/v1.13.2</url>
<freebsdpr>ports/253295</freebsdpr>
</references>
<dates>
<discovery>2021-01-07</discovery>
<entry>2021-02-06</entry>
</dates>
</vuln>
<vuln vid="3e01aad2-680e-11eb-83e2-e09467587c17">
<topic>chromium -- heap buffer overflow in V8</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>88.0.4324.150</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/02/stable-channel-update-for-desktop_4.html">
<p>[1170176] High CVE-2021-21148: Heap buffer overflow in V8.
Reported by Mattias Buelens on 2021-01-24. Google is aware of
reports that an exploit for CVE-2021-21148 exists in the wild.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21148</cvename>
<url>https://chromereleases.googleblog.com/2021/02/stable-channel-update-for-desktop_4.html</url>
</references>
<dates>
<discovery>2021-02-04</discovery>
<entry>2021-02-05</entry>
</dates>
</vuln>
<vuln vid="479fdfda-6659-11eb-83e2-e09467587c17">
<topic>www/chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>88.0.4324.146</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/02/stable-channel-update-for-desktop.html">
<p>This update include 6 security fixes:</p>
<ul>
<li>1169317] Critical CVE-2021-21142: Use after free in Payments.
Reported by Khalil Zhani on 2021-01-21</li>
<li>[1163504] High CVE-2021-21143: Heap buffer overflow in
Extensions. Reported by Allen Parker and Alex Morgan of MU on
2021-01-06</li>
<li>[1163845] High CVE-2021-21144: Heap buffer overflow in Tab
Groups. Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2021-01-07</li>
<li>[1154965] High CVE-2021-21145: Use after free in Fonts. Reported
by Anonymous on 2020-12-03</li>
<li>[1161705] High CVE-2021-21146: Use after free in Navigation.
Reported by Alison Huffman and Choongwoo Han of Microsoft Browser
Vulnerability Research on 2020-12-24</li>
<li>[1162942] Medium CVE-2021-21147: Inappropriate implementation in
Skia. Reported by Roman Starkov on 2021-01-04</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-21142</cvename>
<cvename>CVE-2021-21143</cvename>
<cvename>CVE-2021-21144</cvename>
<cvename>CVE-2021-21145</cvename>
<cvename>CVE-2021-21146</cvename>
<cvename>CVE-2021-21147</cvename>
<url>https://chromereleases.googleblog.com/2021/02/stable-channel-update-for-desktop.html</url>
</references>
<dates>
<discovery>2021-02-02</discovery>
<entry>2021-02-03</entry>
</dates>
</vuln>
<vuln vid="66d1c277-652a-11eb-bb3f-001b217b3468">
<topic>Gitlab -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.8.0</ge><lt>13.8.2</lt></range>
<range><ge>13.7.0</ge><lt>13.7.6</lt></range>
<range><ge>11.8</ge><lt>13.6.6</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gitlab reports:</p>
<blockquote cite="https://about.gitlab.com/blog/2021/02/01/security-release-gitlab-13-8-2-released/">
<p>Stored XSS in merge request</p>
<p>Stored XSS in epic's pages</p>
<p>Sensitive GraphQL variables exposed in structured log</p>
<p>Guest user can see tag names in private projects</p>
<p>Information disclosure via error message</p>
<p>DNS rebinding protection bypass</p>
<p>Validate existence of private project</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/blog/2021/02/01/security-release-gitlab-13-8-2-released/</url>
<cvename>CVE-2021-22172</cvename>
<cvename>CVE-2021-22169</cvename>
</references>
<dates>
<discovery>2021-02-01</discovery>
<entry>2021-02-02</entry>
</dates>
</vuln>
<vuln vid="8ec7d426-055d-46bc-8f5a-a9d73a5a71ab">
<topic>minio -- Server Side Request Forgery</topic>
<affects>
<package>
<name>minio</name>
<range><lt>2021.01.30.00.20.58</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Minio developers report:</p>
<blockquote cite="https://github.com/minio/minio/security/advisories/GHSA-m4qq-5f7c-693q">
<p>Thanks to @phith0n from our community upon a code review, discovered an SSRF (Server Side Request Forgery) in our Browser API implementation. We have not observed this report/attack in the wild or reported elsewhere in the community at large.</p>
<p>All users are advised to upgrade ASAP.</p>
<p>The target application may have functionality for importing data from a URL, publishing data to a URL, or otherwise reading data from a URL that can be tampered with. The attacker modifies the calls to this functionality by supplying a completely different URL or by manipulating how URLs are built (path traversal etc.).</p>
<p>In a Server-Side Request Forgery (SSRF) attack, the attacker can abuse functionality on the server to read or update internal resources. The attacker can supply or modify a URL which the code running on the server will read or submit data, and by carefully selecting the URLs, the attacker may be able to read server configuration such as AWS metadata, connect to internal services like HTTP enabled databases, or perform post requests towards internal services which are not intended to be exposed.</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/minio/minio/security/advisories/GHSA-m4qq-5f7c-693q</url>
</references>
<dates>
<discovery>2021-01-29</discovery>
<entry>2021-01-31</entry>
</dates>
</vuln>
<vuln vid="5d91370b-61fd-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- Xen guests can triger backend Out Of Memory</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_3</lt></range>
<range><ge>12.1</ge><lt>12.1_13</lt></range>
<range><ge>11.4</ge><lt>11.4_7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>Some OSes (including Linux, FreeBSD, and NetBSD) are processing watch
events using a single thread. If the events are received faster than
the thread is able to handle, they will get queued.</p>
<p>As the queue is unbound, a guest may be able to trigger a OOM in
the backend.</p>
</body>
</description>
<references>
<cvename>CVE-2020-29568</cvename>
<freebsdsa>SA-21:02.xenoom</freebsdsa>
</references>
<dates>
<discovery>2021-01-29</discovery>
<entry>2021-01-29</entry>
</dates>
</vuln>
<vuln vid="a9c6e9be-61fb-11eb-b87a-901b0ef719ab">
<topic>FreeBSD -- Uninitialized kernel stack leaks in several file systems</topic>
<affects>
<package>
<name>FreeBSD-kernel</name>
<range><ge>12.2</ge><lt>12.2_3</lt></range>
<range><ge>12.1</ge><lt>12.1_13</lt></range>
<range><ge>11.4</ge><lt>11.4_7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h1>Problem Description:</h1>
<p>Several file systems were not properly initializing the d_off field
of the dirent structures returned by VOP_READDIR. In particular,
tmpfs(5), smbfs(5), autofs(5) and mqueuefs(5) were failing to do so.
As a result, eight uninitialized kernel stack bytes may be leaked to
userspace by these file systems. This problem is not present in
FreeBSD 11.</p>
<p>Additionally, msdosfs(5) was failing to zero-fill a pair of padding
fields in the dirent structure, resulting in a leak of three
uninitialized bytes.</p>
<h1>Impact:</h1>
<p>Kernel stack disclosures may leak sensitive information which could
be used to compromise the security of the system.</p>
</body>
</description>
<references>
<cvename>CVE-2020-25578</cvename>
<cvename>CVE-2020-25579</cvename>
<freebsdsa>SA-21:01.fsdisclosure</freebsdsa>
</references>
<dates>
<discovery>2021-01-29</discovery>
<entry>2021-01-29</entry>
</dates>
</vuln>
<vuln vid="13ca36b8-6141-11eb-8a36-7085c2fb2c14">
<topic>pngcheck -- Buffer-overrun vulnerability</topic>
<affects>
<package>
<name>pngcheck</name>
<range><lt>3.0.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The libpng project reports:</p>
<blockquote cite="http://www.libpng.org/pub/png/apps/pngcheck.html">
<p>pngcheck versions 3.0.0 and earlier have a pair of buffer-overrun
bugs related to the sPLT and PPLT chunks (the latter is a MNG-only
chunk, but it gets noticed even in PNG files if the -s option is used).
Both bugs are fixed in version 3.0.1, released on 24 January 2021.
Again, while all known vulnerabilities are fixed in this version,
the code is quite crufty, so it would be safest to assume there are
still some problems hidden in there. As always, use at your own risk.</p>
</blockquote>
</body>
</description>
<references>
<url>http://www.libpng.org/pub/png/apps/pngcheck.html</url>
</references>
<dates>
<discovery>2021-01-24</discovery>
<entry>2021-01-28</entry>
</dates>
</vuln>
<vuln vid="f3cf4b33-6013-11eb-9a0e-206a8a720317">
<topic>sudo -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>sudo</name>
<range><lt>1.9.5p2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Todd C. Miller reports:</p>
<blockquote cite="https://www.sudo.ws/stable.html#1.9.5p2">
<p>When invoked as sudoedit, the same set of command line options
are now accepted as for sudo -e. The -H and -P options are now
rejected for sudoedit and sudo -e which matches the sudo 1.7
behavior. This is part of the fix for CVE-2021-3156.</p>
<p>Fixed a potential buffer overflow when unescaping backslashes in
the command's arguments. Normally, sudo escapes special characters
when running a command via a shell (sudo -s or sudo -i). However,
it was also possible to run sudoedit with the -s or -i flags in
which case no escaping had actually been done, making a buffer
overflow possible. This fixes CVE-2021-3156.</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.sudo.ws/stable.html#1.9.5p2</url>
<cvename>CVE-2021-3156</cvename>
</references>
<dates>
<discovery>2021-01-26</discovery>
<entry>2021-01-26</entry>
</dates>
</vuln>
<vuln vid="fb67567a-5d95-11eb-a955-08002728f74c">
<topic>pysaml2 -- multiple vulnerabilities</topic>
<affects>
<package>
<name>py36-pysaml2</name>
<name>py37-pysaml2</name>
<name>py38-pysaml2</name>
<name>py39-pysaml2</name>
<range><lt>6.5.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>pysaml2 Releases:</p>
<blockquote cite="https://github.com/IdentityPython/pysaml2/releases">
<p>Fix processing of invalid SAML XML documents - CVE-2021-21238</p>
<p>Fix unspecified xmlsec1 key-type preference - CVE-2021-21239</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/IdentityPython/pysaml2/releases</url>
<url>https://github.com/IdentityPython/pysaml2/security/advisories/GHSA-f4g9-h89h-jgv9</url>
<url>https://github.com/IdentityPython/pysaml2/security/advisories/GHSA-5p3x-r448-pc62</url>
<cvename>CVE-2021-21238</cvename>
<cvename>CVE-2021-21239</cvename>
</references>
<dates>
<discovery>2021-01-20</discovery>
<entry>2021-01-26</entry>
</dates>
</vuln>
<vuln vid="425f2143-8876-4b0a-af84-e0238c5c2062">
<topic>jenkins -- Arbitrary file read vulnerability in workspace browsers</topic>
<affects>
<package>
<name>jenkins</name>
<range><lt>2.276</lt></range>
</package>
<package>
<name>jenkins-lts</name>
<range><lt>2.263.3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jenkins Security Advisory:</p>
<blockquote cite="https://www.jenkins.io/security/advisory/2021-01-26/">
<h1>Description</h1>
<h5>(Medium) SECURITY-2197 / CVE-2021-21615</h5>
<p>Arbitrary file read vulnerability in workspace browsers</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.jenkins.io/security/advisory/2021-01-26/</url>
</references>
<dates>
<discovery>2021-01-26</discovery>
<entry>2021-01-26</entry>
</dates>
</vuln>
<vuln vid="387bbade-5d1d-11eb-bf20-4437e6ad11c4">
<topic>mutt -- denial of service</topic>
<affects>
<package>
<name>mutt</name>
<range><lt>2.0.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Tavis Ormandy reports:</p>
<blockquote cite="https://gitlab.com/muttmua/mutt/-/issues/323">
<p>
rfc822.c in Mutt through 2.0.4 allows remote attackers to cause a
denial of service (mailbox unavailability) by sending email messages
with sequences of semicolon characters in RFC822 address fields
(aka terminators of empty groups). A small email message from the
attacker can cause large memory consumption, and the victim
may then be unable to see email messages from other persons.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://gitlab.com/muttmua/mutt/-/issues/323</url>
<cvename>CVE-2021-3181</cvename>
</references>
<dates>
<discovery>2021-01-17</discovery>
<entry>2021-01-23</entry>
</dates>
</vuln>
<vuln vid="31344707-5d87-11eb-929d-d4c9ef517024">
<topic>MySQL -- Multiple vulnerabilities</topic>
<affects>
<package>
<name>mysql56-client</name>
<range><lt>5.6.51</lt></range>
</package>
<package>
<name>mysql57-client</name>
<range><lt>5.7.33</lt></range>
</package>
<package>
<name>mysql80-client</name>
<range><lt>8.0.23</lt></range>
</package>
<package>
<name>mysql56-server</name>
<range><lt>5.6.51</lt></range>
</package>
<package>
<name>mysql57-server</name>
<range><lt>5.7.33</lt></range>
</package>
<package>
<name>mysql80-server</name>
<range><lt>8.0.23</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Oracle reports:</p>
<blockquote cite="https://www.oracle.com/security-alerts/cpujan2021.html#AppendixMSQL">
<p>This Critical Patch Update contains 34 new security patches for
Oracle MySQL Server and 4 for MySQL Client. </p>
<p>The highest CVSS v3.1 Base Score of vulnerabilities affecting Oracle
MySQL is 6.8.</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.oracle.com/security-alerts/cpujan2021.html#AppendixMSQL</url>
<url>CVE-2021-2046</url>
<url>CVE-2021-2020</url>
<url>CVE-2021-2024</url>
<url>CVE-2021-2011</url>
<url>CVE-2021-2006</url>
<url>CVE-2021-2048</url>
<url>CVE-2021-2028</url>
<url>CVE-2021-2122</url>
<url>CVE-2021-2058</url>
<url>CVE-2021-2001</url>
<url>CVE-2021-2016</url>
<url>CVE-2021-2021</url>
<url>CVE-2021-2030</url>
<url>CVE-2021-2031</url>
<url>CVE-2021-2036</url>
<url>CVE-2021-2055</url>
<url>CVE-2021-2060</url>
<url>CVE-2021-2070</url>
<url>CVE-2021-2076</url>
<url>CVE-2021-2065</url>
<url>CVE-2021-2014</url>
<url>CVE-2021-2002</url>
<url>CVE-2021-2012</url>
<url>CVE-2021-2009</url>
<url>CVE-2021-2072</url>
<url>CVE-2021-2081</url>
<url>CVE-2021-2022</url>
<url>CVE-2021-2038</url>
<url>CVE-2021-2061</url>
<url>CVE-2021-2056</url>
<url>CVE-2021-2087</url>
<url>CVE-2021-2088</url>
<url>CVE-2021-2032</url>
<url>CVE-2021-2010</url>
<url>CVE-2021-1998</url>
<url>CVE-2021-2007</url>
<url>CVE-2021-2019</url>
<url>CVE-2021-2042</url>
</references>
<dates>
<discovery>2021-01-23</discovery>
<entry>2021-01-23</entry>
</dates>
</vuln>
<vuln vid="4ed0e43c-5cef-11eb-bafd-3065ec8fd3ec">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>88.0.4324.96</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/01/stable-channel-update-for-desktop_19.html">
<p>This release contains 36 security fixes, including:</p>
<ul>
<li>[1137179] Critical CVE-2021-21117: Insufficient policy
enforcement in Cryptohome. Reported by Rory McNamara on
2020-10-10</li>
<li>[1161357] High CVE-2021-21118: Insufficient data validation in
V8. Reported by Tyler Nighswander (@tylerni7) of Theori on
2020-12-23</li>
<li>[1160534] High CVE-2021-21119: Use after free in Media. Reported
by Anonymous on 2020-12-20</li>
<li>[1160602] High CVE-2021-21120: Use after free in WebSQL.
Reported by Nan Wang(@eternalsakura13) and Guang Gong of 360 Alpha
Lab on 2020-12-21</li>
<li>[1161143] High CVE-2021-21121: Use after free in Omnibox.
Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2020-12-22</li>
<li>[1162131] High CVE-2021-21122: Use after free in Blink. Reported
by Renata Hodovan on 2020-12-28</li>
<li>[1137247] High CVE-2021-21123: Insufficient data validation in
File System API. Reported by Maciej Pulikowski on 2020-10-11</li>
<li>[1131346] High CVE-2021-21124: Potential user after free in
Speech Recognizer. Reported by Chaoyang Ding(@V4kst1z) from
Codesafe Team of Legendsec at Qi'anxin Group on 2020-09-23</li>
<li>[1152327] High CVE-2021-21125: Insufficient policy enforcement
in File System API. Reported by Ron Masas (Imperva) on
2020-11-24</li>
<li>[1163228] High CVE-2020-16044: Use after free in WebRTC.
Reported by Ned Williamson of Project Zero on 2021-01-05</li>
<li>[1108126] Medium CVE-2021-21126: Insufficient policy enforcement
in extensions. Reported by David Erceg on 2020-07-22</li>
<li>[1115590] Medium CVE-2021-21127: Insufficient policy enforcement
in extensions. Reported by Jasminder Pal Singh, Web Services Point
WSP, Kotkapura on 2020-08-12</li>
<li>[1138877] Medium CVE-2021-21128: Heap buffer overflow in Blink.
Reported by Liang Dong on 2020-10-15</li>
<li>[1140403] Medium CVE-2021-21129: Insufficient policy enforcement
in File System API. Reported by Maciej Pulikowski on
2020-10-20</li>
<li>[1140410] Medium CVE-2021-21130: Insufficient policy enforcement
in File System API. Reported by Maciej Pulikowski on
2020-10-20</li>
<li>[1140417] Medium CVE-2021-21131: Insufficient policy enforcement
in File System API. Reported by Maciej Pulikowski on
2020-10-20</li>
<li>[1128206] Medium CVE-2021-21132: Inappropriate implementation in
DevTools. Reported by David Erceg on 2020-09-15</li>
<li>[1157743] Medium CVE-2021-21133: Insufficient policy enforcement
in Downloads. Reported by wester0x01
(https://twitter.com/wester0x01) on 2020-12-11</li>
<li>[1157800] Medium CVE-2021-21134: Incorrect security UI in Page
Info. Reported by wester0x01 (https://twitter.com/wester0x01) on
2020-12-11</li>
<li>[1157818] Medium CVE-2021-21135: Inappropriate implementation in
Performance API. Reported by ndevtk on 2020-12-11</li>
<li>[1038002] Low CVE-2021-21136: Insufficient policy enforcement in
WebView. Reported by Shiv Sahni, Movnavinothan V and Imdad
Mohammed on 2019-12-27</li>
<li>[1093791] Low CVE-2021-21137: Inappropriate implementation in
DevTools. Reported by bobblybear on 2020-06-11</li>
<li>[1122487] Low CVE-2021-21138: Use after free in DevTools.
Reported by Weipeng Jiang (@Krace) from Codesafe Team of Legendsec
at Qi'anxin Group on 2020-08-27</li>
<li>[1136327] Low CVE-2021-21140: Uninitialized Use in USB. Reported
by David Manouchehri on 2020-10-08</li>
<li>[1140435] Low CVE-2021-21141: Insufficient policy enforcement in
File System API. Reported by Maciej Pulikowski on 2020-10-20</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2020-16044</cvename>
<cvename>CVE-2021-21117</cvename>
<cvename>CVE-2021-21118</cvename>
<cvename>CVE-2021-21119</cvename>
<cvename>CVE-2021-21120</cvename>
<cvename>CVE-2021-21121</cvename>
<cvename>CVE-2021-21122</cvename>
<cvename>CVE-2021-21123</cvename>
<cvename>CVE-2021-21124</cvename>
<cvename>CVE-2021-21125</cvename>
<cvename>CVE-2021-21126</cvename>
<cvename>CVE-2021-21127</cvename>
<cvename>CVE-2021-21128</cvename>
<cvename>CVE-2021-21129</cvename>
<cvename>CVE-2021-21130</cvename>
<cvename>CVE-2021-21131</cvename>
<cvename>CVE-2021-21132</cvename>
<cvename>CVE-2021-21133</cvename>
<cvename>CVE-2021-21134</cvename>
<cvename>CVE-2021-21135</cvename>
<cvename>CVE-2021-21136</cvename>
<cvename>CVE-2021-21137</cvename>
<cvename>CVE-2021-21138</cvename>
<cvename>CVE-2021-21139</cvename>
<cvename>CVE-2021-21140</cvename>
<cvename>CVE-2021-21141</cvename>
<url>https://chromereleases.googleblog.com/2021/01/stable-channel-update-for-desktop_19.html</url>
</references>
<dates>
<discovery>2021-01-19</discovery>
<entry>2021-01-22</entry>
</dates>
</vuln>
<vuln vid="35aef72c-5c8e-11eb-8309-4ccc6adda413">
<topic>chocolate-doom -- Arbitrary code execution</topic>
<affects>
<package>
<name>chocolate-doom</name>
<range><lt>3.0.1</lt></range>
</package>
<package>
<name>crispy-doom</name>
<range><lt>5.9.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Michal Dardas from LogicalTrust reports:</p>
<blockquote cite="https://github.com/chocolate-doom/chocolate-doom/issues/1293">
<p>
The server in Chocolate Doom 3.0.0 and Crispy Doom 5.8.0 doesn't validate
the user-controlled num_players value, leading to a buffer overflow. A
malicious user can overwrite the server's stack.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/chocolate-doom/chocolate-doom/issues/1293</url>
<cvename>CVE-2020-14983</cvename>
</references>
<dates>
<discovery>2020-06-22</discovery>
<entry>2021-01-22</entry>
</dates>
</vuln>
<vuln vid="13c54e6d-5c45-11eb-b4e2-001b217b3468">
<topic>nokogiri -- Security vulnerability</topic>
<affects>
<package>
<name>rubygem-nokogiri</name>
<name>rubygem-nokogiri18</name>
<range><lt>1.11.0.rc3</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Nokogiri reports:</p>
<blockquote cite="https://nokogiri.org/CHANGELOG.html">
<p>In Nokogiri versions <= 1.11.0.rc3, XML Schemas parsed by Nokogiri::XML::Schema were trusted by default, allowing external resources to be accessed over the network, potentially enabling XXE or SSRF attacks.</p>
</blockquote>
</body>
</description>
<references>
<url>https://nokogiri.org/CHANGELOG.html</url>
<cvename>CVE-2020-26247</cvename>
</references>
<dates>
<discovery>2021-01-22</discovery>
<entry>2021-01-22</entry>
</dates>
</vuln>
<vuln vid="5b5cf6e5-5b51-11eb-95ac-7f9491278677">
<topic>dnsmasq -- DNS cache poisoning, and DNSSEC buffer overflow, vulnerabilities</topic>
<affects>
<package>
<name>dnsmasq</name>
<range><lt>2.83</lt></range>
</package>
<package> <!-- not currently active, but in case that someone had a stale package -->
<name>dnsmasq-devel</name>
<range><lt>2.83</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Simon Kelley reports:</p>
<blockquote cite="http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014599.html">
<p>
There are broadly two sets of problems. The first is subtle errors
in dnsmasq's protections against the chronic weakness of the DNS
protocol to cache-poisoning attacks; the Birthday attack, Kaminsky,
etc.[...]
</p>
<p>
the second set of errors is a good old fashioned buffer overflow in
dnsmasq's DNSSEC code. If DNSSEC validation is enabled, an
installation is at risk.
</p>
</blockquote>
</body>
</description>
<references>
<url>https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014599.html</url>
<url>https://www.jsof-tech.com/disclosures/dnspooq/</url>
<cvename>CVE-2020-25684</cvename>
<cvename>CVE-2020-25685</cvename>
<cvename>CVE-2020-25686</cvename>
<cvename>CVE-2020-25681</cvename>
<cvename>CVE-2020-25682</cvename>
<cvename>CVE-2020-25683</cvename>
<cvename>CVE-2020-25687</cvename>
</references>
<dates>
<discovery>2020-09-16</discovery> <!-- CVE creation date, vuln apparently known since August to JSOF? -->
<entry>2021-01-20</entry>
</dates>
</vuln>
<vuln vid="6a4805d5-5aaf-11eb-a21d-79f5bc5ef6a9">
<topic>go -- cmd/go: packages using cgo can cause arbitrary code execution at build time; crypto/elliptic: incorrect operations on the P-224 curve</topic>
<affects>
<package>
<name>go</name>
<range><lt>1.15.7,1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The Go project reports:</p>
<blockquote cite="https://github.com/golang/go/issues/43783">
<p>The go command may execute arbitrary code at build time when cgo is
in use on Windows. This may occur when running "go get", or
any other command that builds code. Only users who build untrusted
code (and don't execute it) are affected. In addition to Windows
users, this can also affect Unix users who have "." listed
explicitly in their PATH and are running "go get" or build
commands outside of a module or with module mode disabled.</p>
</blockquote>
<blockquote cite="https://github.com/golang/go/issues/43786">
<p>The P224() Curve implementation can in rare circumstances generate
incorrect outputs, including returning invalid points from
ScalarMult. The crypto/x509 and golang.org/x/crypto/ocsp (but not
crypto/tls) packages support P-224 ECDSA keys, but they are not
supported by publicly trusted certificate authorities. No other
standard library or golang.org/x/crypto package supports or uses the
P-224 curve.</p>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2021-3115</cvename>
<url>http://golang.org/issue/43783</url>
<cvename>CVE-2021-3114</cvename>
<url>http://golang.org/issue/43786</url>
</references>
<dates>
<discovery>2021-01-13</discovery>
<entry>2021-01-19</entry>
</dates>
</vuln>
<vuln vid="8899298f-5a92-11eb-8558-3085a9a47796">
<topic>cloud-init -- Wrong access permissions of authorized keys</topic>
<affects>
<package>
<name>cloud-init</name>
<range><ge>20.4</ge><lt>20.4.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>cloud-init reports:</p>
<blockquote cite="https://bugs.launchpad.net/cloud-init/+bug/1911680">
<p>cloud-init release 20.4.1 is now available. This is a hotfix
release, that contains a single patch to address a security issue in
cloud-init 20.4.</p>
<p>Briefly, for users who provide more than one unique SSH key to
cloud-init and have a shared AuthorizedKeysFile configured in
sshd_config, cloud-init 20.4 started writing all of these keys to such a
file, granting all such keys SSH access as root.</p>
<p>It's worth restating this implication: if you are using the default
AuthorizedKeysFile setting in /etc/ssh/sshd_config, as most will be,
then you are _not_ affected by this issue.</p>
</blockquote>
</body>
</description>
<references>
<url>https://bugs.launchpad.net/cloud-init/+bug/1911680</url>
</references>
<dates>
<discovery>2021-01-14</discovery>
<entry>2021-01-19</entry>
</dates>
</vuln>
<vuln vid="abed4ff0-7da1-4236-880d-de33e4895315">
<topic>moinmoin -- multiple vulnerabilities</topic>
<affects>
<package>
<name>moinmoin</name>
<range><lt>1.9.11</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>MoinMoin reports:</p>
<blockquote cite="https://github.com/moinwiki/moin-1.9/blob/1.9.11/docs/CHANGES#L13">
<ul>
<li><p>Security fix for CVE-2020-25074: fix remote code execution via cache action</p></li>
<li><p>Security fix for CVE-2020-15275: fix malicious SVG attachment causing stored XSS vulnerability</p></li>
</ul>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/moinwiki/moin-1.9/blob/1.9.11/docs/CHANGES#L13</url>
<cvename>CVE-2020-25074</cvename>
<cvename>CVE-2020-15275</cvename>
</references>
<dates>
<discovery>2020-11-08</discovery>
<entry>2021-01-18</entry>
</dates>
</vuln>
<vuln vid="62642942-590f-11eb-a0dc-8c164582fbac">
<topic>Ghostscript -- SAFER Sandbox Breakout</topic>
<affects>
<package>
<name>ghostscript9-agpl-base</name>
<range><ge>9.50</ge><lt>9.52_8</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>SO-AND-SO reports:</p>
<blockquote cite="https://nvd.nist.gov/vuln/detail/CVE-2020-15900">
<p>A memory corruption issue was found in Artifex
Ghostscript 9.50 and 9.52. Use of a non-standard
PostScript operator can allow overriding of file access
controls. The 'rsearch' calculation for the 'post' size
resulted in a size that was too large, and could underflow
to max uint32_t. This was fixed in commit
5d499272b95a6b890a1397e11d20937de000d31b.</p>
</blockquote>
</body>
</description>
<references>
<url>https://nvd.nist.gov/vuln/detail/CVE-2020-15900</url>
</references>
<dates>
<discovery>2020-07-28</discovery>
<entry>2021-01-17</entry>
</dates>
</vuln>
<vuln vid="08b553ed-537a-11eb-be6e-0022489ad614">
<topic>Node.js -- January 2021 Security Releases</topic>
<affects>
<package>
<name>node10</name>
<range><lt>10.23.1</lt></range>
</package>
<package>
<name>node12</name>
<range><lt>12.20.1</lt></range>
</package>
<package>
<name>node14</name>
<range><lt>14.15.4</lt></range>
</package>
<package>
<name>node</name>
<range><lt>15.5.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Node.js reports:</p>
<blockquote cite="https://nodejs.org/en/blog/vulnerability/january-2021-security-releases/">
<h1>use-after-free in TLSWrap (High) (CVE-2020-8265)</h1>
<p>Affected Node.js versions are vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method does not return an error, this object is passed back to the caller as part of a StreamWriteResult structure. This may be exploited to corrupt memory leading to a Denial of Service or potentially other exploits.</p>
<h1>HTTP Request Smuggling in nodejs (Low) (CVE-2020-8287)</h1>
<p>Affected versions of Node.js allow two copies of a header field in a http request. For example, two Transfer-Encoding header fields. In this case Node.js identifies the first header field and ignores the second. This can lead to HTTP Request Smuggling.</p>
<h1>OpenSSL - EDIPARTYNAME NULL pointer de-reference (CVE-2020-1971)</h1>
<p>iThis is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20201208.txt.</p>
</blockquote>
</body>
</description>
<references>
<url>https://nodejs.org/en/blog/vulnerability/january-2021-security-releases/</url>
<url>https://www.openssl.org/news/secadv/20201208.txt</url>
<cvename>CVE-2020-8265</cvename>
<cvename>CVE-2020-8287</cvename>
<cvename>CVE-2020-1971</cvename>
</references>
<dates>
<discovery>2021-01-04</discovery>
<entry>2021-01-14</entry>
</dates>
</vuln>
<vuln vid="0a8ebf4a-5660-11eb-b4e2-001b217b3468">
<topic>Gitlab -- vulnerability</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.7.0</ge><lt>13.7.4</lt></range>
<range><ge>13.6.0</ge><lt>13.6.5</lt></range>
<range><ge>12.2</ge><lt>13.5.7</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>SO-AND-SO reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/01/14/critical-security-release-gitlab-13-7-4-released/">
<p>Ability to steal a user's API access token through GitLab Pages</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/01/14/critical-security-release-gitlab-13-7-4-released/</url>
</references>
<dates>
<discovery>2021-01-14</discovery>
<entry>2021-01-14</entry>
</dates>
</vuln>
<vuln vid="6d554d6e-5638-11eb-9d36-5404a68ad561">
<topic>wavpack -- integer overflow in pack_utils.c</topic>
<affects>
<package>
<name>wavpack</name>
<range><lt>5.4.0</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>The wavpack project reports:</p>
<blockquote cite="https://github.com/dbry/WavPack/blob/733616993d53cc1f9a7ffb88a858447ba51eb0ee/ChangeLog">
<p>src/pack_utils.c
- issue #91: fix integer overflows resulting in buffer overruns (CVE-2020-35738)
- sanitize configuration parameters better (improves clarity and aids debugging)</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/dbry/WavPack/blob/733616993d53cc1f9a7ffb88a858447ba51eb0ee/ChangeLog</url>
<cvename>CVE-2020-35738</cvename>
</references>
<dates>
<discovery>2020-12-29</discovery>
<entry>2021-01-14</entry>
</dates>
</vuln>
<vuln vid="d6f76976-e86d-4f9a-9362-76c849b10db2">
<topic>jenkins -- multiple vulnerabilities</topic>
<affects>
<package>
<name>jenkins</name>
<range><lt>2.275</lt></range>
</package>
<package>
<name>jenkins-lts</name>
<range><lt>2.263.2</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Jenkins Security Advisory:</p>
<blockquote cite="https://www.jenkins.io/security/advisory/2021-01-13/">
<h1>Description</h1>
<h5>(Medium) SECURITY-1452 / CVE-2021-21602</h5>
<p>Arbitrary file read vulnerability in workspace browsers</p>
<h5>(High) SECURITY-1889 / CVE-2021-21603</h5>
<p>XSS vulnerability in notification bar</p>
<h5>(High) SECURITY-1923 / CVE-2021-21604</h5>
<p>Improper handling of REST API XML deserialization errors</p>
<h5>(High) SECURITY-2021 / CVE-2021-21605</h5>
<p>Path traversal vulnerability in agent names</p>
<h5>(Medium) SECURITY-2023 / CVE-2021-21606</h5>
<p>Arbitrary file existence check in file fingerprints</p>
<h5>(Medium) SECURITY-2025 / CVE-2021-21607</h5>
<p>Excessive memory allocation in graph URLs leads to denial of service</p>
<h5>(High) SECURITY-2035 / CVE-2021-21608</h5>
<p>Stored XSS vulnerability in button labels</p>
<h5>(Low) SECURITY-2047 / CVE-2021-21609</h5>
<p>Missing permission check for paths with specific prefix</p>
<h5>(High) SECURITY-2153 / CVE-2021-21610</h5>
<p>Reflected XSS vulnerability in markup formatter preview</p>
<h5>(High) SECURITY-2171 / CVE-2021-21611</h5>
<p>Stored XSS vulnerability on new item page</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.jenkins.io/security/advisory/2021-01-13/</url>
</references>
<dates>
<discovery>2021-01-13</discovery>
<entry>2021-01-13</entry>
</dates>
</vuln>
<vuln vid="1f655433-551b-11eb-9cda-589cfc0f81b0">
<topic>phpmyfaq -- XSS vulnerability</topic>
<affects>
<package>
<name>phpmyfaq</name>
<range><le>3.0.6</le></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>phpmyfaq developers report:</p>
<blockquote cite="https://www.phpmyfaq.de/security/advisory-2020-12-23">
<p> phpMyFAQ does not implement sufficient checks to avoid XSS
injection for displaying tags. </p>
</blockquote>
</body>
</description>
<references>
<url>https://www.phpmyfaq.de/security/advisory-2020-12-23</url>
</references>
<dates>
<discovery>2020-12-23</discovery>
<entry>2021-01-12</entry>
</dates>
</vuln>
<vuln vid="6193b3f6-548c-11eb-ba01-206a8a720317">
<topic>sudo -- Potential information leak in sudoedit</topic>
<affects>
<package>
<name>sudo</name>
<range><lt>1.9.5</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Todd C. Miller reports:</p>
<blockquote cite="https://www.sudo.ws/stable.html#1.9.5">
<p>A potential information leak in sudoedit that could be used to
test for the existence of directories not normally accessible to
the user in certain circumstances. When creating a new file,
sudoedit checks to make sure the parent directory of the new file
exists before running the editor. However, a race condition exists
if the invoking user can replace (or create) the parent directory.
If a symbolic link is created in place of the parent directory,
sudoedit will run the editor as long as the target of the link
exists.If the target of the link does not exist, an error message
will be displayed. The race condition can be used to test for the
existence of an arbitrary directory. However, it _cannot_ be used
to write to an arbitrary location.</p>
</blockquote>
</body>
</description>
<references>
<url>https://www.sudo.ws/stable.html#1.9.5</url>
<cvename>CVE-2021-23239</cvename>
</references>
<dates>
<discovery>2021-01-11</discovery>
<entry>2021-01-11</entry>
</dates>
</vuln>
<vuln vid="a3cef1e6-51d8-11eb-9b8d-08002728f74c">
<topic>CairoSVG -- Regular Expression Denial of Service vulnerability</topic>
<affects>
<package>
<name>py36-cairosvg</name>
<name>py37-cairosvg</name>
<name>py38-cairosvg</name>
<name>py39-cairosvg</name>
<range><ge>2.0.0</ge><lt>2.5.1</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>CairoSVG security advisories:</p>
<blockquote cite="https://github.com/Kozea/CairoSVG/security/advisories/GHSA-hq37-853p-g5cf">
<p>When processing SVG files, the python package CairoSVG uses two regular
expressions which are vulnerable to Regular Expression Denial of Service
(REDoS).</p>
<p>If an attacker provides a malicious SVG, it can make cairosvg get stuck
processing the file for a very long time.</p>
</blockquote>
</body>
</description>
<references>
<url>https://github.com/Kozea/CairoSVG/security/advisories/GHSA-hq37-853p-g5cf</url>
</references>
<dates>
<discovery>2020-12-30</discovery>
<entry>2021-01-10</entry>
</dates>
</vuln>
<vuln vid="a2a2b34d-52b4-11eb-87cb-001b217b3468">
<topic>Gitlab -- multiple vulnerabilities</topic>
<affects>
<package>
<name>gitlab-ce</name>
<range><ge>13.7.0</ge><lt>13.7.2</lt></range>
<range><ge>13.6.0</ge><lt>13.6.4</lt></range>
<range><ge>12.2</ge><lt>13.5.6</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Gitlab reports:</p>
<blockquote cite="https://about.gitlab.com/releases/2021/01/07/security-release-gitlab-13-7-2-released/">
<p>Ability to steal a user's API access token through GitLab Pages</p>
<p>Prometheus denial of service via HTTP request with custom method</p>
<p>Unauthorized user is able to access private repository information under specific conditions</p>
<p>Regular expression denial of service in NuGet API</p>
<p>Regular expression denial of service in package uploads</p>
<p>Update curl dependency</p>
<p>CVE-2019-3881 mitigation</p>
</blockquote>
</body>
</description>
<references>
<url>https://about.gitlab.com/releases/2021/01/07/security-release-gitlab-13-7-2-released/</url>
<cvename>CVE-2021-22166</cvename>
<cvename>CVE-2020-26414</cvename>
<cvename>CVE-2019-3881</cvename>
</references>
<dates>
<discovery>2021-01-07</discovery>
<entry>2021-01-09</entry>
</dates>
</vuln>
<vuln vid="d153c4d2-50f8-11eb-8046-3065ec8fd3ec">
<topic>chromium -- multiple vulnerabilities</topic>
<affects>
<package>
<name>chromium</name>
<range><lt>87.0.4280.141</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Chrome Releases reports:</p>
<blockquote cite="https://chromereleases.googleblog.com/2021/01/stable-channel-update-for-desktop.html">
<p>This release includes 16 security fixes, including:</p>
<ul>
<li>[1148749] High CVE-2021-21106: Use after free in autofill.
Reported by Weipeng Jiang (@Krace) from Codesafe Team of
Legendsec at Qi'anxin Group on 2020-11-13</li>
<li>[1153595] High CVE-2021-21107: Use after free in drag and
drop. Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2020-11-30</li>
<li>[1155426] High CVE-2021-21108: Use after free in media.
Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2020-12-04</li>
<li>[1152334] High CVE-2021-21109: Use after free in payments.
Reported by Rong Jian and Guang Gong of 360 Alpha Lab on
2020-11-24</li>
<li>[1152451] High CVE-2021-21110: Use after free in safe
browsing. Reported by Anonymous on 2020-11-24</li>
<li>[1149125] High CVE-2021-21111: Insufficient policy enforcement
in WebUI. Reported by Alesandro Ortiz on 2020-11-15</li>
<li>[1151298] High CVE-2021-21112: Use after free in Blink.
Reported by YoungJoo Lee(@ashuu_lee) of Raon Whitehat on
2020-11-20</li>
<li>[1155178] High CVE-2021-21113: Heap buffer overflow in Skia.
Reported by tsubmunu on 2020-12-03</li>
<li>[1148309] High CVE-2020-16043: Insufficient data validation in
networking. Reported by Samy Kamkar, Ben Seri at Armis, Gregory
Vishnepolsky at Armis on 2020-11-12</li>
<li>[1150065] High CVE-2021-21114: Use after free in audio.
Reported by Man Yue Mo of GitHub Security Lab on 2020-11-17</li>
<li>[1157790] High CVE-2020-15995: Out of bounds write in V8.
Reported by Bohan Liu (@P4nda20371774) of Tencent Security Xuanwu
Lab on 2020-12-11</li>
<li>[1157814] High CVE-2021-21115: Use after free in safe browsing.
Reported by Leecraso and Guang Gong of 360 Alpha Lab on
2020-12-11</li>
<li>[1151069] Medium CVE-2021-21116: Heap buffer overflow in audio.
Reported by Alison Huffman, Microsoft Browser Vulnerability
Research on 2020-11-19</li>
</ul>
</blockquote>
</body>
</description>
<references>
<cvename>CVE-2020-15995</cvename>
<cvename>CVE-2020-16043</cvename>
<cvename>CVE-2021-21106</cvename>
<cvename>CVE-2021-21107</cvename>
<cvename>CVE-2021-21108</cvename>
<cvename>CVE-2021-21109</cvename>
<cvename>CVE-2021-21110</cvename>
<cvename>CVE-2021-21111</cvename>
<cvename>CVE-2021-21112</cvename>
<cvename>CVE-2021-21113</cvename>
<cvename>CVE-2021-21114</cvename>
<cvename>CVE-2021-21115</cvename>
<cvename>CVE-2021-21116</cvename>
<url>https://chromereleases.googleblog.com/2021/01/stable-channel-update-for-desktop.html</url>
</references>
<dates>
<discovery>2021-01-06</discovery>
<entry>2021-01-07</entry>
</dates>
</vuln>
<vuln vid="bd98066d-4ea4-11eb-b412-e86a64caca56">
<topic>mail/dovecot -- multiple vulnerabilities</topic>
<affects>
<package>
<name>dovecot</name>
<range><lt>2.3.13</lt></range>
</package>
</affects>
<description>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>Aki Tuomi reports:</p>
<blockquote cite="https://dovecot.org/pipermail/dovecot-news/2021-January/000450.html">
<p>When imap hibernation is active, an attacker can cause Dovecot to
discover file system directory structure and access other users'
emails using specially crafted command.
The attacker must have valid credentials to access the
mail server.</p>
</blockquote>
<blockquote cite="https://dovecot.org/pipermail/dovecot-news/2021-January/000451.html">
<p>Mail delivery / parsing crashed when the 10 000th MIME part was
message/rfc822 (or if parent was multipart/digest). This happened
due to earlier MIME parsing changes for CVE-2020-12100.</p>
</blockquote>
</body>
</description>
<references>
<url>https://dovecot.org/pipermail/dovecot-news/2021-January/000448.html</url>
<cvename>CVE-2020-24386</cvename>
<cvename>CVE-2020-25275</cvename>
</references>
<dates>
<discovery>2020-08-17</discovery>
<entry>2021-01-04</entry>
</dates>
</vuln>
&vuln-2020;
&vuln-2019;
&vuln-2018;
&vuln-2017;
&vuln-2016;
&vuln-2015;
&vuln-2014;
&vuln-2013;
&vuln-2012;
&vuln-2011;
&vuln-2010;
&vuln-2009;
&vuln-2008;
&vuln-2007;
&vuln-2006;
&vuln-2005;
&vuln-2004;
&vuln-2003;</vuxml>
<!-- EOF -->
<!-- Note: Please add new entries to the beginning of this file. -->
<!-- ex: set ts=8 tw=80 sw=2: -->
<!-- vim: set softtabstop=2 noexpandtab: -->
|