-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcve5-validation-errors-Jan26.html
1882 lines (1880 loc) · 243 KB
/
cve5-validation-errors-Jan26.html
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
<html><head><style>
body{
font-family:Roboto Mono,sans-serif;
}
.grid {
display: inline-grid;
gap: 5px;
grid-template: repeat(1, 1fr) / repeat(8, 1fr);
}
</style></head>
<body><h2>
Validation errors in 1622 out of 178222 upconverted CVEs.
</h2>
<li>year 1999 - 56</li>
<li>year 2000 - 10</li>
<li>year 2001 - 2</li>
<li>year 2002 - 8</li>
<li>year 2003 - 2</li>
<li>year 2004 - 5</li>
<li>year 2005 - 15</li>
<li>year 2006 - 10</li>
<li>year 2007 - 5</li>
<li>year 2008 - 1</li>
<li>year 2009 - 4</li>
<li>year 2010 - 8</li>
<li>year 2011 - 21</li>
<li>year 2012 - 8</li>
<li>year 2013 - 4</li>
<li>year 2014 - 4</li>
<li>year 2016 - 31</li>
<li>year 2017 - 190</li>
<li>year 2018 - 361</li>
<li>year 2019 - 86</li>
<li>year 2020 - 238</li>
<li>year 2021 - 539</li>
<li>year 2022 - 14</li>
<h3>/containers/cna [1]</h3>
<details><summary>required error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/6xxx/CVE-2019-6149.json">CVE-2019-6149</a>
</blockquote></details>
<h3>/containers/cna/affected/product [8]</h3>
<details><summary>maxLength error [4] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2014/9xxx/CVE-2014-9691.json">CVE-2014-9691</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2014/9xxx/CVE-2014-9694.json">CVE-2014-9694</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2014/9xxx/CVE-2014-9693.json">CVE-2014-9693</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2014/9xxx/CVE-2014-9692.json">CVE-2014-9692</a>
</blockquote></details>
<details><summary>maxLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/6xxx/CVE-2019-6334.json">CVE-2019-6334</a>
</blockquote></details>
<details><summary>minLength error [3] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/3xxx/CVE-2020-3687.json">CVE-2020-3687</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11209.json">CVE-2020-11209</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11208.json">CVE-2020-11208</a>
</blockquote></details>
<h3>/containers/cna/affected/vendor [26]</h3>
<details><summary>minLength error [23] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2591.json">CVE-2017-2591</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2601.json">CVE-2017-2601</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2606.json">CVE-2017-2606</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2611.json">CVE-2017-2611</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2594.json">CVE-2017-2594</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2592.json">CVE-2017-2592</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/12xxx/CVE-2017-12196.json">CVE-2017-12196</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/3xxx/CVE-2019-3879.json">CVE-2019-3879</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1079.json">CVE-2018-1079</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1130.json">CVE-2018-1130</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1074.json">CVE-2018-1074</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1112.json">CVE-2018-1112</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1084.json">CVE-2018-1084</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1115.json">CVE-2018-1115</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1089.json">CVE-2018-1089</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9590.json">CVE-2016-9590</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9601.json">CVE-2016-9601</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9587.json">CVE-2016-9587</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9594.json">CVE-2016-9594</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9599.json">CVE-2016-9599</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9592.json">CVE-2016-9592</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9593.json">CVE-2016-9593</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/9xxx/CVE-2016-9602.json">CVE-2016-9602</a>
</blockquote></details>
<details><summary>minLength error [2] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/10xxx/CVE-2020-10282.json">CVE-2020-10282</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/10xxx/CVE-2020-10281.json">CVE-2020-10281</a>
</blockquote></details>
<details><summary>minLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/8xxx/CVE-2018-8021.json">CVE-2018-8021</a>
</blockquote></details>
<h3>/containers/cna/affected/versions/changes [1]</h3>
<details><summary>uniqueItems error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/3xxx/CVE-2021-3044.json">CVE-2021-3044</a>
</blockquote></details>
<h3>/containers/cna/affected/versions/version [257]</h3>
<details><summary>maxLength error [41] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2692.json">CVE-2017-2692</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/2xxx/CVE-2017-2693.json">CVE-2017-2693</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/8xxx/CVE-2017-8163.json">CVE-2017-8163</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/8xxx/CVE-2017-8162.json">CVE-2017-8162</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/8xxx/CVE-2017-8147.json">CVE-2017-8147</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15337.json">CVE-2017-15337</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15336.json">CVE-2017-15336</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15331.json">CVE-2017-15331</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15350.json">CVE-2017-15350</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15332.json">CVE-2017-15332</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15339.json">CVE-2017-15339</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15335.json">CVE-2017-15335</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15334.json">CVE-2017-15334</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/15xxx/CVE-2017-15338.json">CVE-2017-15338</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17255.json">CVE-2017-17255</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17202.json">CVE-2017-17202</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17296.json">CVE-2017-17296</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17258.json">CVE-2017-17258</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17151.json">CVE-2017-17151</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17297.json">CVE-2017-17297</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17253.json">CVE-2017-17253</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17156.json">CVE-2017-17156</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17286.json">CVE-2017-17286</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17287.json">CVE-2017-17287</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17157.json">CVE-2017-17157</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17291.json">CVE-2017-17291</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17252.json">CVE-2017-17252</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17301.json">CVE-2017-17301</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17154.json">CVE-2017-17154</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17292.json">CVE-2017-17292</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17251.json">CVE-2017-17251</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17293.json">CVE-2017-17293</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17155.json">CVE-2017-17155</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17152.json">CVE-2017-17152</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17294.json">CVE-2017-17294</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17257.json">CVE-2017-17257</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17298.json">CVE-2017-17298</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17256.json">CVE-2017-17256</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17295.json">CVE-2017-17295</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17153.json">CVE-2017-17153</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/7xxx/CVE-2018-7907.json">CVE-2018-7907</a>
</blockquote></details>
<details><summary>maxLength error [14] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/6xxx/CVE-2019-6000.json">CVE-2019-6000</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/6xxx/CVE-2019-6001.json">CVE-2019-6001</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/5xxx/CVE-2019-5995.json">CVE-2019-5995</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/5xxx/CVE-2019-5999.json">CVE-2019-5999</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/5xxx/CVE-2019-5998.json">CVE-2019-5998</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/5xxx/CVE-2019-5994.json">CVE-2019-5994</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20871.json">CVE-2021-20871</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20870.json">CVE-2021-20870</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20869.json">CVE-2021-20869</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20872.json">CVE-2021-20872</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20716.json">CVE-2021-20716</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20868.json">CVE-2021-20868</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0689.json">CVE-2018-0689</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0688.json">CVE-2018-0688</a>
</blockquote></details>
<details><summary>maxLength error [2] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/18xxx/CVE-2019-18230.json">CVE-2019-18230</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/18xxx/CVE-2019-18226.json">CVE-2019-18226</a>
</blockquote></details>
<details><summary>maxLength error [196] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30288.json">CVE-2021-30288</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30271.json">CVE-2021-30271</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30302.json">CVE-2021-30302</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30284.json">CVE-2021-30284</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30303.json">CVE-2021-30303</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30270.json">CVE-2021-30270</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30335.json">CVE-2021-30335</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30266.json">CVE-2021-30266</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30319.json">CVE-2021-30319</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30312.json">CVE-2021-30312</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30282.json">CVE-2021-30282</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30260.json">CVE-2021-30260</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30348.json">CVE-2021-30348</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30295.json">CVE-2021-30295</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30313.json">CVE-2021-30313</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30351.json">CVE-2021-30351</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30255.json">CVE-2021-30255</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30275.json">CVE-2021-30275</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30259.json">CVE-2021-30259</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30274.json">CVE-2021-30274</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30254.json">CVE-2021-30254</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30278.json">CVE-2021-30278</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30268.json">CVE-2021-30268</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30264.json">CVE-2021-30264</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30337.json">CVE-2021-30337</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30272.json">CVE-2021-30272</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1976.json">CVE-2021-1976</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1960.json">CVE-2021-1960</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1937.json">CVE-2021-1937</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1891.json">CVE-2021-1891</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1890.json">CVE-2021-1890</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1886.json">CVE-2021-1886</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1916.json">CVE-2021-1916</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1941.json">CVE-2021-1941</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1936.json">CVE-2021-1936</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1961.json">CVE-2021-1961</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1977.json">CVE-2021-1977</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1920.json">CVE-2021-1920</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1927.json">CVE-2021-1927</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1931.json">CVE-2021-1931</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1971.json">CVE-2021-1971</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1906.json">CVE-2021-1906</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1910.json">CVE-2021-1910</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1905.json">CVE-2021-1905</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1964.json">CVE-2021-1964</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1972.json">CVE-2021-1972</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1925.json">CVE-2021-1925</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1909.json">CVE-2021-1909</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1948.json">CVE-2021-1948</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1949.json">CVE-2021-1949</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1924.json">CVE-2021-1924</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1973.json">CVE-2021-1973</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1965.json">CVE-2021-1965</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1945.json">CVE-2021-1945</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1904.json">CVE-2021-1904</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1953.json">CVE-2021-1953</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1935.json">CVE-2021-1935</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1974.json">CVE-2021-1974</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1889.json">CVE-2021-1889</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1919.json">CVE-2021-1919</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1954.json">CVE-2021-1954</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1903.json">CVE-2021-1903</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1915.json">CVE-2021-1915</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1943.json">CVE-2021-1943</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1914.json">CVE-2021-1914</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1955.json">CVE-2021-1955</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1979.json">CVE-2021-1979</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1980.json">CVE-2021-1980</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1938.json">CVE-2021-1938</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1959.json">CVE-2021-1959</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1888.json">CVE-2021-1888</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1975.json">CVE-2021-1975</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/3xxx/CVE-2020-3691.json">CVE-2020-3691</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/3xxx/CVE-2020-3664.json">CVE-2020-3664</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/3xxx/CVE-2020-3686.json">CVE-2020-3686</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/3xxx/CVE-2020-3685.json">CVE-2020-3685</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11285.json">CVE-2020-11285</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11143.json">CVE-2020-11143</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11293.json">CVE-2020-11293</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11250.json">CVE-2020-11250</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11179.json">CVE-2020-11179</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11246.json">CVE-2020-11246</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11180.json">CVE-2020-11180</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11138.json">CVE-2020-11138</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11289.json">CVE-2020-11289</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11231.json">CVE-2020-11231</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11227.json">CVE-2020-11227</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11159.json">CVE-2020-11159</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11270.json">CVE-2020-11270</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11163.json">CVE-2020-11163</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11134.json">CVE-2020-11134</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11271.json">CVE-2020-11271</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11226.json">CVE-2020-11226</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11230.json">CVE-2020-11230</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11119.json">CVE-2020-11119</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11288.json">CVE-2020-11288</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11267.json">CVE-2020-11267</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11139.json">CVE-2020-11139</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11247.json">CVE-2020-11247</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11197.json">CVE-2020-11197</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11178.json">CVE-2020-11178</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11251.json">CVE-2020-11251</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11292.json">CVE-2020-11292</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11284.json">CVE-2020-11284</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11149.json">CVE-2020-11149</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11260.json">CVE-2020-11260</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11237.json">CVE-2020-11237</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11221.json">CVE-2020-11221</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11299.json">CVE-2020-11299</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11276.json">CVE-2020-11276</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11165.json">CVE-2020-11165</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11309.json">CVE-2020-11309</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11283.json">CVE-2020-11283</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11145.json">CVE-2020-11145</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11295.json">CVE-2020-11295</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11190.json">CVE-2020-11190</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11240.json">CVE-2020-11240</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11217.json">CVE-2020-11217</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11216.json">CVE-2020-11216</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11241.json">CVE-2020-11241</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11304.json">CVE-2020-11304</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11191.json">CVE-2020-11191</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11200.json">CVE-2020-11200</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11152.json">CVE-2020-11152</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11294.json">CVE-2020-11294</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11144.json">CVE-2020-11144</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11282.json">CVE-2020-11282</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11308.json">CVE-2020-11308</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11277.json">CVE-2020-11277</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11220.json">CVE-2020-11220</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11236.json">CVE-2020-11236</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11261.json">CVE-2020-11261</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11148.json">CVE-2020-11148</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11167.json">CVE-2020-11167</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11188.json">CVE-2020-11188</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11171.json">CVE-2020-11171</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11126.json">CVE-2020-11126</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11274.json">CVE-2020-11274</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11223.json">CVE-2020-11223</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11235.json">CVE-2020-11235</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11262.json">CVE-2020-11262</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11215.json">CVE-2020-11215</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11192.json">CVE-2020-11192</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11254.json">CVE-2020-11254</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11203.json">CVE-2020-11203</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11151.json">CVE-2020-11151</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11278.json">CVE-2020-11278</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11297.json">CVE-2020-11297</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11239.json">CVE-2020-11239</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11147.json">CVE-2020-11147</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11281.json">CVE-2020-11281</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11280.json">CVE-2020-11280</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11146.json">CVE-2020-11146</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11238.json">CVE-2020-11238</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11279.json">CVE-2020-11279</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11296.json">CVE-2020-11296</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11150.json">CVE-2020-11150</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11255.json">CVE-2020-11255</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11243.json">CVE-2020-11243</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11185.json">CVE-2020-11185</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11214.json">CVE-2020-11214</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11234.json">CVE-2020-11234</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11222.json">CVE-2020-11222</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11275.json">CVE-2020-11275</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11170.json">CVE-2020-11170</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11166.json">CVE-2020-11166</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11189.json">CVE-2020-11189</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11218.json">CVE-2020-11218</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11213.json">CVE-2020-11213</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11182.json">CVE-2020-11182</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11301.json">CVE-2020-11301</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11194.json">CVE-2020-11194</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11252.json">CVE-2020-11252</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11287.json">CVE-2020-11287</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11136.json">CVE-2020-11136</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11161.json">CVE-2020-11161</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11177.json">CVE-2020-11177</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11198.json">CVE-2020-11198</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11272.json">CVE-2020-11272</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11225.json">CVE-2020-11225</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11264.json">CVE-2020-11264</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11273.json">CVE-2020-11273</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11199.json">CVE-2020-11199</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11160.json">CVE-2020-11160</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11137.json">CVE-2020-11137</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11269.json">CVE-2020-11269</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11286.json">CVE-2020-11286</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11140.json">CVE-2020-11140</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11228.json">CVE-2020-11228</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11290.json">CVE-2020-11290</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11204.json">CVE-2020-11204</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11253.json">CVE-2020-11253</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11195.json">CVE-2020-11195</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11245.json">CVE-2020-11245</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11183.json">CVE-2020-11183</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/11xxx/CVE-2020-11212.json">CVE-2020-11212</a>
</blockquote></details>
<details><summary>maxLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/20xxx/CVE-2021-20699.json">CVE-2021-20699</a>
</blockquote></details>
<details><summary>maxLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/25xxx/CVE-2020-25705.json">CVE-2020-25705</a>
</blockquote></details>
<details><summary>maxLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/7xxx/CVE-2018-7112.json">CVE-2018-7112</a>
</blockquote></details>
<details><summary>maxLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1183.json">CVE-2018-1183</a>
</blockquote></details>
<h3>/containers/cna/credits/value [29]</h3>
<details><summary>minLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/11xxx/CVE-2019-11784.json">CVE-2019-11784</a>
</blockquote></details>
<details><summary>type error [28] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28694.json">CVE-2021-28694</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28712.json">CVE-2021-28712</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28704.json">CVE-2021-28704</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28698.json">CVE-2021-28698</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28708.json">CVE-2021-28708</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28709.json">CVE-2021-28709</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28699.json">CVE-2021-28699</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28705.json">CVE-2021-28705</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28713.json">CVE-2021-28713</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28695.json">CVE-2021-28695</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28688.json">CVE-2021-28688</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28692.json">CVE-2021-28692</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28714.json">CVE-2021-28714</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28703.json">CVE-2021-28703</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28715.json">CVE-2021-28715</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28693.json">CVE-2021-28693</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28689.json">CVE-2021-28689</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28700.json">CVE-2021-28700</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28690.json">CVE-2021-28690</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28687.json">CVE-2021-28687</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28691.json">CVE-2021-28691</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28701.json">CVE-2021-28701</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28706.json">CVE-2021-28706</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28710.json">CVE-2021-28710</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28696.json">CVE-2021-28696</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28697.json">CVE-2021-28697</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28711.json">CVE-2021-28711</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28707.json">CVE-2021-28707</a>
</blockquote></details>
<h3>/containers/cna/metrics/cvssV3_0 [185]</h3>
<details><summary>required error [37] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/22xxx/CVE-2022-22530.json">CVE-2022-22530</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/22xxx/CVE-2022-22531.json">CVE-2022-22531</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/22xxx/CVE-2022-22529.json">CVE-2022-22529</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40503.json">CVE-2021-40503</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40502.json">CVE-2021-40502</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40495.json">CVE-2021-40495</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40499.json">CVE-2021-40499</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40498.json">CVE-2021-40498</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40504.json">CVE-2021-40504</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40497.json">CVE-2021-40497</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40496.json">CVE-2021-40496</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40501.json">CVE-2021-40501</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40500.json">CVE-2021-40500</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44235.json">CVE-2021-44235</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44234.json">CVE-2021-44234</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44233.json">CVE-2021-44233</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44232.json">CVE-2021-44232</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44231.json">CVE-2021-44231</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/21xxx/CVE-2021-21474.json">CVE-2021-21474</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33688.json">CVE-2021-33688</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42070.json">CVE-2021-42070</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42066.json">CVE-2021-42066</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42067.json">CVE-2021-42067</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42061.json">CVE-2021-42061</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42062.json">CVE-2021-42062</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42063.json">CVE-2021-42063</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42064.json">CVE-2021-42064</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42068.json">CVE-2021-42068</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42069.json">CVE-2021-42069</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38179.json">CVE-2021-38179</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38180.json">CVE-2021-38180</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38181.json">CVE-2021-38181</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38178.json">CVE-2021-38178</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38182.json">CVE-2021-38182</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38183.json">CVE-2021-38183</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/6xxx/CVE-2020-6323.json">CVE-2020-6323</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/6xxx/CVE-2020-6363.json">CVE-2020-6363</a>
</blockquote></details>
<details><summary>required error [18] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/11xxx/CVE-2019-11509.json">CVE-2019-11509</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20522.json">CVE-2019-20522</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20523.json">CVE-2019-20523</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20512.json">CVE-2019-20512</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20528.json">CVE-2019-20528</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20524.json">CVE-2019-20524</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20525.json">CVE-2019-20525</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20513.json">CVE-2019-20513</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20526.json">CVE-2019-20526</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20527.json">CVE-2019-20527</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/9xxx/CVE-2019-9868.json">CVE-2019-9868</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/9xxx/CVE-2019-9867.json">CVE-2019-9867</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/17xxx/CVE-2019-17358.json">CVE-2019-17358</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/17xxx/CVE-2019-17549.json">CVE-2019-17549</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/17xxx/CVE-2019-17357.json">CVE-2019-17357</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/16xxx/CVE-2019-16519.json">CVE-2019-16519</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/19xxx/CVE-2019-19719.json">CVE-2019-19719</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/18xxx/CVE-2018-18406.json">CVE-2018-18406</a>
</blockquote></details>
<details><summary>required error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/20xxx/CVE-2019-20409.json">CVE-2019-20409</a>
</blockquote></details>
<details><summary>required error [114] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1757.json">CVE-2019-1757</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1802.json">CVE-2019-1802</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/1xxx/CVE-2021-1455.json">CVE-2021-1455</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/3xxx/CVE-2020-3138.json">CVE-2020-3138</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15429.json">CVE-2018-15429</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15413.json">CVE-2018-15413</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15433.json">CVE-2018-15433</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15425.json">CVE-2018-15425</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15409.json">CVE-2018-15409</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15370.json">CVE-2018-15370</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15389.json">CVE-2018-15389</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15371.json">CVE-2018-15371</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15408.json">CVE-2018-15408</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15424.json">CVE-2018-15424</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15432.json">CVE-2018-15432</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15412.json">CVE-2018-15412</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15404.json">CVE-2018-15404</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15392.json">CVE-2018-15392</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15428.json">CVE-2018-15428</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15423.json">CVE-2018-15423</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15376.json">CVE-2018-15376</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15399.json">CVE-2018-15399</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15419.json">CVE-2018-15419</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15403.json">CVE-2018-15403</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15383.json">CVE-2018-15383</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15415.json">CVE-2018-15415</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15414.json">CVE-2018-15414</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15382.json">CVE-2018-15382</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15418.json">CVE-2018-15418</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15377.json">CVE-2018-15377</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15398.json">CVE-2018-15398</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15422.json">CVE-2018-15422</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15434.json">CVE-2018-15434</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15374.json">CVE-2018-15374</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15421.json">CVE-2018-15421</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15417.json">CVE-2018-15417</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15401.json">CVE-2018-15401</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15397.json">CVE-2018-15397</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15378.json">CVE-2018-15378</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15396.json">CVE-2018-15396</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15379.json">CVE-2018-15379</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15400.json">CVE-2018-15400</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15416.json">CVE-2018-15416</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15436.json">CVE-2018-15436</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15420.json">CVE-2018-15420</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15375.json">CVE-2018-15375</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15411.json">CVE-2018-15411</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15387.json">CVE-2018-15387</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15368.json">CVE-2018-15368</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15407.json">CVE-2018-15407</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15391.json">CVE-2018-15391</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15372.json">CVE-2018-15372</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15427.json">CVE-2018-15427</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15431.json">CVE-2018-15431</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15430.json">CVE-2018-15430</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15426.json">CVE-2018-15426</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15373.json">CVE-2018-15373</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15390.json">CVE-2018-15390</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15406.json">CVE-2018-15406</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15386.json">CVE-2018-15386</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15369.json">CVE-2018-15369</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/15xxx/CVE-2018-15410.json">CVE-2018-15410</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0459.json">CVE-2018-0459</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0475.json">CVE-2018-0475</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0463.json">CVE-2018-0463</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0434.json">CVE-2018-0434</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0414.json">CVE-2018-0414</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0455.json">CVE-2018-0455</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0480.json">CVE-2018-0480</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0438.json">CVE-2018-0438</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0439.json">CVE-2018-0439</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0481.json">CVE-2018-0481</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0454.json">CVE-2018-0454</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0435.json">CVE-2018-0435</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0462.json">CVE-2018-0462</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0423.json">CVE-2018-0423</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0458.json">CVE-2018-0458</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0445.json">CVE-2018-0445</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0404.json">CVE-2018-0404</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0469.json">CVE-2018-0469</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0424.json">CVE-2018-0424</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0473.json">CVE-2018-0473</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0465.json">CVE-2018-0465</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0432.json">CVE-2018-0432</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0433.json">CVE-2018-0433</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0464.json">CVE-2018-0464</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0472.json">CVE-2018-0472</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0425.json">CVE-2018-0425</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0448.json">CVE-2018-0448</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0452.json">CVE-2018-0452</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0405.json">CVE-2018-0405</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0444.json">CVE-2018-0444</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0451.json">CVE-2018-0451</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0447.json">CVE-2018-0447</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0430.json">CVE-2018-0430</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0467.json">CVE-2018-0467</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0471.json">CVE-2018-0471</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0426.json">CVE-2018-0426</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0470.json">CVE-2018-0470</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0466.json">CVE-2018-0466</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0431.json">CVE-2018-0431</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0446.json">CVE-2018-0446</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0450.json">CVE-2018-0450</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0485.json">CVE-2018-0485</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0436.json">CVE-2018-0436</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0477.json">CVE-2018-0477</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0197.json">CVE-2018-0197</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0457.json">CVE-2018-0457</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0284.json">CVE-2018-0284</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0440.json">CVE-2018-0440</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0421.json">CVE-2018-0421</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0476.json">CVE-2018-0476</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0460.json">CVE-2018-0460</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0437.json">CVE-2018-0437</a>
</blockquote></details>
<details><summary>required error [15] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42375.json">CVE-2021-42375</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42380.json">CVE-2021-42380</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42379.json">CVE-2021-42379</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42378.json">CVE-2021-42378</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42381.json">CVE-2021-42381</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42374.json">CVE-2021-42374</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42386.json">CVE-2021-42386</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42373.json">CVE-2021-42373</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42392.json">CVE-2021-42392</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42384.json">CVE-2021-42384</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42385.json">CVE-2021-42385</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42377.json">CVE-2021-42377</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42382.json">CVE-2021-42382</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42383.json">CVE-2021-42383</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42376.json">CVE-2021-42376</a>
</blockquote></details>
<h3>/containers/cna/metrics/cvssV3_0/vectorString [1]</h3>
<details><summary>pattern error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/10xxx/CVE-2020-10268.json">CVE-2020-10268</a>
</blockquote></details>
<h3>/containers/cna/metrics/cvssV3_1 [11]</h3>
<details><summary>required error [9] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45895.json">CVE-2021-45895</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39613.json">CVE-2021-39613</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39615.json">CVE-2021-39615</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39614.json">CVE-2021-39614</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/24xxx/CVE-2020-24386.json">CVE-2020-24386</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/24xxx/CVE-2020-24576.json">CVE-2020-24576</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/36xxx/CVE-2020-36161.json">CVE-2020-36161</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/28xxx/CVE-2020-28917.json">CVE-2020-28917</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/28xxx/CVE-2020-28991.json">CVE-2020-28991</a>
</blockquote></details>
<details><summary>required error [2] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/7xxx/CVE-2020-7883.json">CVE-2020-7883</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/7xxx/CVE-2020-7878.json">CVE-2020-7878</a>
</blockquote></details>
<h3>/containers/cna/metrics/other/content [164]</h3>
<details><summary>type error [134] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/23xxx/CVE-2022-23307.json">CVE-2022-23307</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/23xxx/CVE-2022-23302.json">CVE-2022-23302</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/23xxx/CVE-2022-23305.json">CVE-2022-23305</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/10xxx/CVE-2019-10095.json">CVE-2019-10095</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/17xxx/CVE-2019-17567.json">CVE-2019-17567</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/35xxx/CVE-2021-35474.json">CVE-2021-35474</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/35xxx/CVE-2021-35517.json">CVE-2021-35517</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/35xxx/CVE-2021-35940.json">CVE-2021-35940</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/35xxx/CVE-2021-35936.json">CVE-2021-35936</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/35xxx/CVE-2021-35516.json">CVE-2021-35516</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/35xxx/CVE-2021-35515.json">CVE-2021-35515</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40369.json">CVE-2021-40369</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40525.json">CVE-2021-40525</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40439.json">CVE-2021-40439</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40438.json">CVE-2021-40438</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40110.json">CVE-2021-40110</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40690.json">CVE-2021-40690</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40146.json">CVE-2021-40146</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40111.json">CVE-2021-40111</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/40xxx/CVE-2021-40865.json">CVE-2021-40865</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/31xxx/CVE-2021-31522.json">CVE-2021-31522</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/31xxx/CVE-2021-31618.json">CVE-2021-31618</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44832.json">CVE-2021-44832</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44224.json">CVE-2021-44224</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44140.json">CVE-2021-44140</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44790.json">CVE-2021-44790</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44548.json">CVE-2021-44548</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44549.json">CVE-2021-44549</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/44xxx/CVE-2021-44145.json">CVE-2021-44145</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/21xxx/CVE-2021-21501.json">CVE-2021-21501</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30640.json">CVE-2021-30640</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30641.json">CVE-2021-30641</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30129.json">CVE-2021-30129</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30128.json">CVE-2021-30128</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30639.json">CVE-2021-30639</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/30xxx/CVE-2021-30245.json">CVE-2021-30245</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45232.json">CVE-2021-45232</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45458.json">CVE-2021-45458</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45457.json">CVE-2021-45457</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45046.json">CVE-2021-45046</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45456.json">CVE-2021-45456</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/45xxx/CVE-2021-45105.json">CVE-2021-45105</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/34xxx/CVE-2021-34798.json">CVE-2021-34798</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/34xxx/CVE-2021-34797.json">CVE-2021-34797</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41830.json">CVE-2021-41830</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41831.json">CVE-2021-41831</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41524.json">CVE-2021-41524</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41532.json">CVE-2021-41532</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41973.json">CVE-2021-41973</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41773.json">CVE-2021-41773</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41972.json">CVE-2021-41972</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41616.json">CVE-2021-41616</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41971.json">CVE-2021-41971</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41767.json">CVE-2021-41767</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41585.json">CVE-2021-41585</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41561.json">CVE-2021-41561</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41832.json">CVE-2021-41832</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/41xxx/CVE-2021-41079.json">CVE-2021-41079</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33037.json">CVE-2021-33037</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33580.json">CVE-2021-33580</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33191.json">CVE-2021-33191</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33190.json">CVE-2021-33190</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33035.json">CVE-2021-33035</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33900.json">CVE-2021-33900</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/33xxx/CVE-2021-33193.json">CVE-2021-33193</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37147.json">CVE-2021-37147</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37608.json">CVE-2021-37608</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37148.json">CVE-2021-37148</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37580.json">CVE-2021-37580</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37579.json">CVE-2021-37579</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37578.json">CVE-2021-37578</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/37xxx/CVE-2021-37149.json">CVE-2021-37149</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/27xxx/CVE-2021-27577.json">CVE-2021-27577</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/27xxx/CVE-2021-27644.json">CVE-2021-27644</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/27xxx/CVE-2021-27578.json">CVE-2021-27578</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/27xxx/CVE-2021-27738.json">CVE-2021-27738</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42250.json">CVE-2021-42250</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42009.json">CVE-2021-42009</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42013.json">CVE-2021-42013</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42357.json">CVE-2021-42357</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/42xxx/CVE-2021-42340.json">CVE-2021-42340</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36737.json">CVE-2021-36737</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36090.json">CVE-2021-36090</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36161.json">CVE-2021-36161</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36160.json">CVE-2021-36160</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36163.json">CVE-2021-36163</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36374.json">CVE-2021-36374</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36162.json">CVE-2021-36162</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36372.json">CVE-2021-36372</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36738.json">CVE-2021-36738</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36739.json">CVE-2021-36739</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36373.json">CVE-2021-36373</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/36xxx/CVE-2021-36774.json">CVE-2021-36774</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/26xxx/CVE-2021-26690.json">CVE-2021-26690</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/26xxx/CVE-2021-26691.json">CVE-2021-26691</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/26xxx/CVE-2021-26920.json">CVE-2021-26920</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/26xxx/CVE-2021-26558.json">CVE-2021-26558</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43082.json">CVE-2021-43082</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43083.json">CVE-2021-43083</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43410.json">CVE-2021-43410</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43350.json">CVE-2021-43350</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43297.json">CVE-2021-43297</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43999.json">CVE-2021-43999</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43557.json">CVE-2021-43557</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/43xxx/CVE-2021-43045.json">CVE-2021-43045</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/32xxx/CVE-2021-32565.json">CVE-2021-32565</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/32xxx/CVE-2021-32566.json">CVE-2021-32566</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/32xxx/CVE-2021-32567.json">CVE-2021-32567</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/32xxx/CVE-2021-32609.json">CVE-2021-32609</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39231.json">CVE-2021-39231</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39236.json">CVE-2021-39236</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39234.json">CVE-2021-39234</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39275.json">CVE-2021-39275</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39239.json">CVE-2021-39239</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39235.json">CVE-2021-39235</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39232.json">CVE-2021-39232</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/39xxx/CVE-2021-39233.json">CVE-2021-39233</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/4xxx/CVE-2021-4104.json">CVE-2021-4104</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38542.json">CVE-2021-38542</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38153.json">CVE-2021-38153</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38295.json">CVE-2021-38295</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38294.json">CVE-2021-38294</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38555.json">CVE-2021-38555</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38540.json">CVE-2021-38540</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/38xxx/CVE-2021-38161.json">CVE-2021-38161</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28129.json">CVE-2021-28129</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/28xxx/CVE-2021-28131.json">CVE-2021-28131</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/35xxx/CVE-2020-35452.json">CVE-2020-35452</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/13xxx/CVE-2020-13938.json">CVE-2020-13938</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/13xxx/CVE-2020-13929.json">CVE-2020-13929</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/13xxx/CVE-2020-13950.json">CVE-2020-13950</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/8xxx/CVE-2018-8011.json">CVE-2018-8011</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/1xxx/CVE-2018-1333.json">CVE-2018-1333</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/4xxx/CVE-2016-4975.json">CVE-2016-4975</a>
</blockquote></details>
<details><summary>type error [29] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/3xxx/CVE-2017-3733.json">CVE-2017-3733</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/3xxx/CVE-2017-3732.json">CVE-2017-3732</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/3xxx/CVE-2017-3731.json">CVE-2017-3731</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/3xxx/CVE-2017-3730.json">CVE-2017-3730</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1547.json">CVE-2019-1547</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1551.json">CVE-2019-1551</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1552.json">CVE-2019-1552</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1549.json">CVE-2019-1549</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1563.json">CVE-2019-1563</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1559.json">CVE-2019-1559</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2019/1xxx/CVE-2019-1543.json">CVE-2019-1543</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/3xxx/CVE-2021-3711.json">CVE-2021-3711</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/3xxx/CVE-2021-3449.json">CVE-2021-3449</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/3xxx/CVE-2021-3712.json">CVE-2021-3712</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/23xxx/CVE-2021-23841.json">CVE-2021-23841</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/23xxx/CVE-2021-23840.json">CVE-2021-23840</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/23xxx/CVE-2021-23839.json">CVE-2021-23839</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/4xxx/CVE-2021-4044.json">CVE-2021-4044</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/1xxx/CVE-2020-1971.json">CVE-2020-1971</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/1xxx/CVE-2020-1967.json">CVE-2020-1967</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/1xxx/CVE-2020-1968.json">CVE-2020-1968</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0737.json">CVE-2018-0737</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0739.json">CVE-2018-0739</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0735.json">CVE-2018-0735</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0734.json">CVE-2018-0734</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0733.json">CVE-2018-0733</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/0xxx/CVE-2018-0732.json">CVE-2018-0732</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/7xxx/CVE-2016-7054.json">CVE-2016-7054</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2016/7xxx/CVE-2016-7053.json">CVE-2016-7053</a>
</blockquote></details>
<details><summary>type error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2020/25xxx/CVE-2020-25213.json">CVE-2020-25213</a>
</blockquote></details>
<h3>/containers/cna/problemTypes/descriptions/cweId [393]</h3>
<details><summary>minLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2022/0xxx/CVE-2022-0166.json">CVE-2022-0166</a>
</blockquote></details>
<details><summary>minLength error [1] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2021/25xxx/CVE-2021-25522.json">CVE-2021-25522</a>
</blockquote></details>
<details><summary>maxLength error [304] - [email protected]:</summary><blockquote class="grid">
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14822.json">CVE-2017-14822</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14834.json">CVE-2017-14834</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14818.json">CVE-2017-14818</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14819.json">CVE-2017-14819</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14835.json">CVE-2017-14835</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14823.json">CVE-2017-14823</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14824.json">CVE-2017-14824</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14832.json">CVE-2017-14832</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14828.json">CVE-2017-14828</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14829.json">CVE-2017-14829</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14833.json">CVE-2017-14833</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14825.json">CVE-2017-14825</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14830.json">CVE-2017-14830</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14826.json">CVE-2017-14826</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14827.json">CVE-2017-14827</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14831.json">CVE-2017-14831</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14836.json">CVE-2017-14836</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14820.json">CVE-2017-14820</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14821.json">CVE-2017-14821</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/14xxx/CVE-2017-14837.json">CVE-2017-14837</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10945.json">CVE-2017-10945</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10953.json">CVE-2017-10953</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10948.json">CVE-2017-10948</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10952.json">CVE-2017-10952</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10944.json">CVE-2017-10944</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10959.json">CVE-2017-10959</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10943.json">CVE-2017-10943</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10955.json">CVE-2017-10955</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10954.json">CVE-2017-10954</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10942.json">CVE-2017-10942</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10958.json">CVE-2017-10958</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10957.json">CVE-2017-10957</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10941.json">CVE-2017-10941</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10940.json">CVE-2017-10940</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10956.json">CVE-2017-10956</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10951.json">CVE-2017-10951</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10947.json">CVE-2017-10947</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10946.json">CVE-2017-10946</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/10xxx/CVE-2017-10950.json">CVE-2017-10950</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17652.json">CVE-2017-17652</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17412.json">CVE-2017-17412</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17424.json">CVE-2017-17424</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17408.json">CVE-2017-17408</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17409.json">CVE-2017-17409</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17425.json">CVE-2017-17425</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17653.json">CVE-2017-17653</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17422.json">CVE-2017-17422</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17658.json">CVE-2017-17658</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17418.json">CVE-2017-17418</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17654.json">CVE-2017-17654</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17414.json">CVE-2017-17414</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17415.json">CVE-2017-17415</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17655.json">CVE-2017-17655</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17419.json">CVE-2017-17419</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17659.json">CVE-2017-17659</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17423.json">CVE-2017-17423</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17420.json">CVE-2017-17420</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17416.json">CVE-2017-17416</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17656.json">CVE-2017-17656</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17657.json">CVE-2017-17657</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17417.json">CVE-2017-17417</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17421.json">CVE-2017-17421</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17406.json">CVE-2017-17406</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17410.json">CVE-2017-17410</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17411.json">CVE-2017-17411</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/17xxx/CVE-2017-17407.json">CVE-2017-17407</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16604.json">CVE-2017-16604</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16595.json">CVE-2017-16595</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16583.json">CVE-2017-16583</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16608.json">CVE-2017-16608</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16576.json">CVE-2017-16576</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16599.json">CVE-2017-16599</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16577.json">CVE-2017-16577</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16598.json">CVE-2017-16598</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16609.json">CVE-2017-16609</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16582.json">CVE-2017-16582</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16594.json">CVE-2017-16594</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16605.json">CVE-2017-16605</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16589.json">CVE-2017-16589</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16602.json">CVE-2017-16602</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16593.json">CVE-2017-16593</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16585.json">CVE-2017-16585</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16584.json">CVE-2017-16584</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16592.json">CVE-2017-16592</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16603.json">CVE-2017-16603</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16588.json">CVE-2017-16588</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16571.json">CVE-2017-16571</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16572.json">CVE-2017-16572</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16587.json">CVE-2017-16587</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16591.json">CVE-2017-16591</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16600.json">CVE-2017-16600</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16601.json">CVE-2017-16601</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16590.json">CVE-2017-16590</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16586.json">CVE-2017-16586</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16573.json">CVE-2017-16573</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16610.json">CVE-2017-16610</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16581.json">CVE-2017-16581</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16597.json">CVE-2017-16597</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16578.json">CVE-2017-16578</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16606.json">CVE-2017-16606</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16574.json">CVE-2017-16574</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16575.json">CVE-2017-16575</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16607.json">CVE-2017-16607</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16596.json">CVE-2017-16596</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16579.json">CVE-2017-16579</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2017/16xxx/CVE-2017-16580.json">CVE-2017-16580</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11620.json">CVE-2018-11620</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11616.json">CVE-2018-11616</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11617.json">CVE-2018-11617</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11621.json">CVE-2018-11621</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11622.json">CVE-2018-11622</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11618.json">CVE-2018-11618</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11614.json">CVE-2018-11614</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11615.json">CVE-2018-11615</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11619.json">CVE-2018-11619</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/11xxx/CVE-2018-11623.json">CVE-2018-11623</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14279.json">CVE-2018-14279</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14296.json">CVE-2018-14296</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14280.json">CVE-2018-14280</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14306.json">CVE-2018-14306</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14243.json">CVE-2018-14243</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14310.json">CVE-2018-14310</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14255.json">CVE-2018-14255</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14275.json">CVE-2018-14275</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14263.json">CVE-2018-14263</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14259.json">CVE-2018-14259</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14258.json">CVE-2018-14258</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14262.json">CVE-2018-14262</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14274.json">CVE-2018-14274</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14311.json">CVE-2018-14311</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14254.json">CVE-2018-14254</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14307.json">CVE-2018-14307</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14242.json">CVE-2018-14242</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14281.json">CVE-2018-14281</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14278.json">CVE-2018-14278</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14297.json">CVE-2018-14297</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14273.json">CVE-2018-14273</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14265.json">CVE-2018-14265</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14320.json">CVE-2018-14320</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14249.json">CVE-2018-14249</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14290.json">CVE-2018-14290</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14269.json">CVE-2018-14269</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14286.json">CVE-2018-14286</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14245.json">CVE-2018-14245</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14316.json">CVE-2018-14316</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14253.json">CVE-2018-14253</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14317.json">CVE-2018-14317</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14252.json">CVE-2018-14252</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14301.json">CVE-2018-14301</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14244.json">CVE-2018-14244</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14268.json">CVE-2018-14268</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14287.json">CVE-2018-14287</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14291.json">CVE-2018-14291</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14248.json">CVE-2018-14248</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14264.json">CVE-2018-14264</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14272.json">CVE-2018-14272</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14318.json">CVE-2018-14318</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14288.json">CVE-2018-14288</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14267.json">CVE-2018-14267</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14271.json">CVE-2018-14271</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14251.json">CVE-2018-14251</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14314.json">CVE-2018-14314</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14247.json">CVE-2018-14247</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14302.json">CVE-2018-14302</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14284.json">CVE-2018-14284</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14292.json">CVE-2018-14292</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14293.json">CVE-2018-14293</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14285.json">CVE-2018-14285</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14246.json">CVE-2018-14246</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14303.json">CVE-2018-14303</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14250.json">CVE-2018-14250</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14315.json">CVE-2018-14315</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14270.json">CVE-2018-14270</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14289.json">CVE-2018-14289</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14266.json">CVE-2018-14266</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14257.json">CVE-2018-14257</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14312.json">CVE-2018-14312</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14241.json">CVE-2018-14241</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14304.json">CVE-2018-14304</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14282.json">CVE-2018-14282</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14294.json">CVE-2018-14294</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14308.json">CVE-2018-14308</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14261.json">CVE-2018-14261</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14298.json">CVE-2018-14298</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14277.json">CVE-2018-14277</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14299.json">CVE-2018-14299</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14276.json">CVE-2018-14276</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14260.json">CVE-2018-14260</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14309.json">CVE-2018-14309</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14283.json">CVE-2018-14283</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14305.json">CVE-2018-14305</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14256.json">CVE-2018-14256</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/14xxx/CVE-2018-14313.json">CVE-2018-14313</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9951.json">CVE-2018-9951</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9947.json">CVE-2018-9947</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9984.json">CVE-2018-9984</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9967.json">CVE-2018-9967</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9971.json">CVE-2018-9971</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9970.json">CVE-2018-9970</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9946.json">CVE-2018-9946</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9950.json">CVE-2018-9950</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9936.json">CVE-2018-9936</a>
<a href="https://github.com/CVEProject/cve-schema/tree/master/schema/v5.0/support/v5ReviewSet/2018/9xxx/CVE-2018-9961.json">CVE-2018-9961</a>