-
Notifications
You must be signed in to change notification settings - Fork 0
/
Go.json
12929 lines (12929 loc) · 594 KB
/
Go.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"CVE-2012-2666": {
"CVE-ID": "CVE-2012-2666",
"NVD": {
"Descriptions": "golang/go in 1.0.2 fixes all.bash on shared machines. dotest() in src/pkg/debug/gosym/pclntab_test.go creates a temporary file with predicable name and executes it as shell script.",
"Cvss2_BaseScore": 7.5,
"Cvss3_BaseScore": 9.8,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/a:golang:go:1.0.2",
"FormattedString": "cpe:2.3:a:golang:go:1.0.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
}
]
}
},
"CVE-2014-7189": {
"CVE-ID": "CVE-2014-7189",
"NVD": {
"Descriptions": "crpyto/tls in Go 1.1 before 1.3.2, when SessionTicketsDisabled is enabled, allows man-in-the-middle attackers to spoof clients via unspecified vectors.",
"Cvss2_BaseScore": 4.3,
"Cvss3_BaseScore": 0,
"Cvss2_VectorString": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
"Cvss3_VectorString": "",
"CPEs": [
{
"URI": "cpe:/a:golang:go:1.3.1",
"FormattedString": "cpe:2.3:a:golang:go:1.3.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.3",
"FormattedString": "cpe:2.3:a:golang:go:1.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.2.2",
"FormattedString": "cpe:2.3:a:golang:go:1.2.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.2.1",
"FormattedString": "cpe:2.3:a:golang:go:1.2.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.2",
"FormattedString": "cpe:2.3:a:golang:go:1.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.1.2",
"FormattedString": "cpe:2.3:a:golang:go:1.1.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.1.1",
"FormattedString": "cpe:2.3:a:golang:go:1.1.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.1",
"FormattedString": "cpe:2.3:a:golang:go:1.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
}
]
}
},
"CVE-2015-5739": {
"CVE-ID": "CVE-2015-5739",
"NVD": {
"Descriptions": "The net/http library in net/textproto/reader.go in Go before 1.4.3 does not properly parse HTTP header keys, which allows remote attackers to conduct HTTP request smuggling attacks via a space instead of a hyphen, as demonstrated by \"Content Length\" instead of \"Content-Length.\"",
"Cvss2_BaseScore": 7.5,
"Cvss3_BaseScore": 9.8,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/o:redhat:enterprise_linux_server_tus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_tus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_tus:7.3",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_tus:7.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_tus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_tus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.5",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.5:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.4",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.4:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.3",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.4",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.4:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.3",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server:7.0",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server:7.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:22",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:22:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:21",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:21:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": "1.4.2"
}
]
},
"Official": {
"1.4.3": {
"source": {
"12741": "https://github.com/golang/go/issues/12741"
}
}
}
},
"CVE-2015-5740": {
"CVE-ID": "CVE-2015-5740",
"NVD": {
"Descriptions": "The net/http library in net/http/transfer.go in Go before 1.4.3 does not properly parse HTTP headers, which allows remote attackers to conduct HTTP request smuggling attacks via a request with two Content-length headers.",
"Cvss2_BaseScore": 7.5,
"Cvss3_BaseScore": 9.8,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/o:redhat:enterprise_linux_server_tus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_tus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_tus:7.3",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_tus:7.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_tus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_tus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.5",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.5:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.4",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.4:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.3",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.4",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.4:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.3",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server:7.0",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server:7.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:22",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:22:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:21",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:21:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": "1.4.2"
}
]
},
"Official": {
"1.4.3": {
"source": {
"12741": "https://github.com/golang/go/issues/12741"
}
}
}
},
"CVE-2015-5741": {
"CVE-ID": "CVE-2015-5741",
"NVD": {
"Descriptions": "The net/http library in net/http/transfer.go in Go before 1.4.3 does not properly parse HTTP headers, which allows remote attackers to conduct HTTP request smuggling attacks via a request that contains Content-Length and Transfer-Encoding header fields.",
"Cvss2_BaseScore": 7.5,
"Cvss3_BaseScore": 9.8,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/o:redhat:enterprise_linux:7.0",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux:7.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:redhat:openstack:8",
"FormattedString": "cpe:2.3:a:redhat:openstack:8:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:redhat:openstack:7.0",
"FormattedString": "cpe:2.3:a:redhat:openstack:7.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "1.4.3",
"VersionEndIncluding": ""
}
]
},
"Official": {
"1.4.3": {
"source": {
"12741": "https://github.com/golang/go/issues/12741"
}
}
}
},
"CVE-2015-8618": {
"CVE-ID": "CVE-2015-8618",
"NVD": {
"Descriptions": "The Int.Exp Montgomery code in the math/big library in Go 1.5.x before 1.5.3 mishandles carry propagation and produces incorrect output, which makes it easier for attackers to obtain private RSA keys via unspecified vectors.",
"Cvss2_BaseScore": 5,
"Cvss3_BaseScore": 7.5,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:P/I:N/A:N",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"CPEs": [
{
"URI": "cpe:/o:opensuse:leap:42.1",
"FormattedString": "cpe:2.3:o:opensuse:leap:42.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.5.2",
"FormattedString": "cpe:2.3:a:golang:go:1.5.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.5.1",
"FormattedString": "cpe:2.3:a:golang:go:1.5.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.5",
"FormattedString": "cpe:2.3:a:golang:go:1.5:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
}
]
},
"Official": {
"1.6": {
"source": {
"13515": "https://github.com/golang/go/issues/13515"
}
}
}
},
"CVE-2016-3958": {
"CVE-ID": "CVE-2016-3958",
"NVD": {
"Descriptions": "Untrusted search path vulnerability in Go before 1.5.4 and 1.6.x before 1.6.1 on Windows allows local users to gain privileges via a Trojan horse DLL in the current working directory, related to use of the LoadLibrary function.",
"Cvss2_BaseScore": 7.2,
"Cvss3_BaseScore": 7.8,
"Cvss2_VectorString": "AV:L/AC:L/Au:N/C:C/I:C/A:C",
"Cvss3_VectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/a:golang:go:1.6",
"FormattedString": "cpe:2.3:a:golang:go:1.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "1.5",
"VersionEndExcluding": "1.5.4",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "1.6",
"VersionEndExcluding": "1.6.1",
"VersionEndIncluding": ""
}
]
},
"Official": {
"1.6.1": {
"source": {
"14959": "https://github.com/golang/go/issues/14959"
}
}
}
},
"CVE-2016-3959": {
"CVE-ID": "CVE-2016-3959",
"NVD": {
"Descriptions": "The Verify function in crypto/dsa/dsa.go in Go before 1.5.4 and 1.6.x before 1.6.1 does not properly check parameters passed to the big integer library, which might allow remote attackers to cause a denial of service (infinite loop) via a crafted public key to a program that uses HTTPS client certificates or SSH server libraries.",
"Cvss2_BaseScore": 5,
"Cvss3_BaseScore": 7.5,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"CPEs": [
{
"URI": "cpe:/o:opensuse:leap:42.1",
"FormattedString": "cpe:2.3:o:opensuse:leap:42.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:24",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:24:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:23",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:23:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:22",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:22:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.6",
"FormattedString": "cpe:2.3:a:golang:go:1.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": "1.5"
}
]
},
"Official": {
"1.6.1": {
"source": {
"15184": "https://github.com/golang/go/issues/15184"
}
}
}
},
"CVE-2016-5386": {
"CVE-ID": "CVE-2016-5386",
"NVD": {
"Descriptions": "The net/http package in Go through 1.6 does not attempt to address RFC 3875 section 4.1.18 namespace conflicts and therefore does not protect CGI applications from the presence of untrusted client data in the HTTP_PROXY environment variable, which might allow remote attackers to redirect a CGI application's outbound HTTP traffic to an arbitrary proxy server via a crafted Proxy header in an HTTP request, aka an \"httpoxy\" issue.",
"Cvss2_BaseScore": 6.8,
"Cvss3_BaseScore": 8.1,
"Cvss2_VectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/o:redhat:enterprise_linux_server_eus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_eus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.2",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server:7.0",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server:7.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:oracle:linux:7",
"FormattedString": "cpe:2.3:o:oracle:linux:7:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:24",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:24:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:23",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:23:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.7:rc1",
"FormattedString": "cpe:2.3:a:golang:go:1.7:rc1:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "1.0",
"VersionEndExcluding": "1.6.3",
"VersionEndIncluding": ""
}
]
},
"Official": {
"1.6.3": {
"source": {
"16405": "https://github.com/golang/go/issues/16405"
}
}
}
},
"CVE-2017-1000097": {
"CVE-ID": "CVE-2017-1000097",
"NVD": {
"Descriptions": "On Darwin, user's trust preferences for root certificates were not honored. If the user had a root certificate loaded in their Keychain that was explicitly not trusted, a Go program would still verify a connection using that root certificate.",
"Cvss2_BaseScore": 5,
"Cvss3_BaseScore": 7.5,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
"Cvss3_VectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"CPEs": [
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "1.6.4",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "1.7",
"VersionEndExcluding": "1.7.4",
"VersionEndIncluding": ""
}
]
},
"Official": {
"1.7.4": {
"source": {
"18141": "https://github.com/golang/go/issues/18141"
}
}
}
},
"CVE-2017-1000098": {
"CVE-ID": "CVE-2017-1000098",
"NVD": {
"Descriptions": "The net/http package's Request.ParseMultipartForm method starts writing to temporary files once the request body size surpasses the given \"maxMemory\" limit. It was possible for an attacker to generate a multipart request crafted such that the server ran out of file descriptors.",
"Cvss2_BaseScore": 5,
"Cvss3_BaseScore": 7.5,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
"Cvss3_VectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"CPEs": [
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "1.6.4",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "1.7",
"VersionEndExcluding": "1.7.4",
"VersionEndIncluding": ""
}
]
},
"Official": {
"1.7.4": {
"source": {
"17965": "https://github.com/golang/go/issues/17965"
}
}
}
},
"CVE-2017-15041": {
"CVE-ID": "CVE-2017-15041",
"NVD": {
"Descriptions": "Go before 1.8.4 and 1.9.x before 1.9.1 allows \"go get\" remote command execution. Using custom domains, it is possible to arrange things so that example.com/pkg1 points to a Subversion repository but example.com/pkg1/pkg2 points to a Git repository. If the Subversion repository includes a Git checkout in its pkg2 directory and some other work is done to ensure the proper ordering of operations, \"go get\" can be tricked into reusing this Git checkout for the fetch of code from pkg2. If the Subversion repository's Git checkout has malicious commands in .git/hooks/, they will execute on the system running \"go get.\"",
"Cvss2_BaseScore": 7.5,
"Cvss3_BaseScore": 9.8,
"Cvss2_VectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/o:redhat:enterprise_linux_tus:7.7",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_tus:7.7:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_tus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_tus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.7",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.7:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server_aus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server_aus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_server:7.0",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_server:7.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_eus:7.7",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_eus:7.7:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:redhat:enterprise_linux_eus:7.6",
"FormattedString": "cpe:2.3:o:redhat:enterprise_linux_eus:7.6:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:debian:debian_linux:9.0",
"FormattedString": "cpe:2.3:o:debian:debian_linux:9.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:redhat:developer_tools:1.0",
"FormattedString": "cpe:2.3:a:redhat:developer_tools:1.0:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.9:-",
"FormattedString": "cpe:2.3:a:golang:go:1.9:-:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": "1.8.3"
}
]
},
"Official": {
"1.8.4": {
"source": {
"22125": "https://github.com/golang/go/issues/22125"
}
},
"1.9.1": {
"source": {
"22131": "https://github.com/golang/go/issues/22131"
}
}
}
},
"CVE-2017-15042": {
"CVE-ID": "CVE-2017-15042",
"NVD": {
"Descriptions": "An unintended cleartext issue exists in Go before 1.8.4 and 1.9.x before 1.9.1. RFC 4954 requires that, during SMTP, the PLAIN auth scheme must only be used on network connections secured with TLS. The original implementation of smtp.PlainAuth in Go 1.0 enforced this requirement, and it was documented to do so. In 2013, upstream issue #5184, this was changed so that the server may decide whether PLAIN is acceptable. The result is that if you set up a man-in-the-middle SMTP server that doesn't advertise STARTTLS and does advertise that PLAIN auth is OK, the smtp.PlainAuth implementation sends the username and password.",
"Cvss2_BaseScore": 4.3,
"Cvss3_BaseScore": 5.9,
"Cvss2_VectorString": "AV:N/AC:M/Au:N/C:P/I:N/A:N",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"CPEs": [
{
"URI": "cpe:/a:golang:go:1.9",
"FormattedString": "cpe:2.3:a:golang:go:1.9:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": "1.8.3"
}
]
},
"Official": {
"1.8.4": {
"source": {
"22134": "https://github.com/golang/go/issues/22134"
}
},
"1.9.1": {
"source": {
"22133": "https://github.com/golang/go/issues/22133"
}
}
}
},
"CVE-2017-8932": {
"CVE-ID": "CVE-2017-8932",
"NVD": {
"Descriptions": "A bug in the standard library ScalarMult implementation of curve P-256 for amd64 architectures in Go before 1.7.6 and 1.8.x before 1.8.2 causes incorrect results to be generated for specific input points. An adaptive attack can be mounted to progressively extract the scalar input to ScalarMult by submitting crafted points and observing failures to the derive correct output. This leads to a full key recovery attack against static ECDH, as used in popular JWT libraries.",
"Cvss2_BaseScore": 4.3,
"Cvss3_BaseScore": 5.9,
"Cvss2_VectorString": "AV:N/AC:M/Au:N/C:P/I:N/A:N",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"CPEs": [
{
"URI": "cpe:/o:opensuse:leap:42.2",
"FormattedString": "cpe:2.3:o:opensuse:leap:42.2:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:fedoraproject:fedora:25",
"FormattedString": "cpe:2.3:o:fedoraproject:fedora:25:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:novell:suse_package_hub_for_suse_linux_enterprise:12",
"FormattedString": "cpe:2.3:a:novell:suse_package_hub_for_suse_linux_enterprise:12:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.8.1",
"FormattedString": "cpe:2.3:a:golang:go:1.8.1:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go:1.8",
"FormattedString": "cpe:2.3:a:golang:go:1.8:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/a:golang:go",
"FormattedString": "cpe:2.3:a:golang:go:*:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": "1.7.5"
}
]
},
"Official": {
"1.8.2": {
"source": {
"20040": "https://github.com/golang/go/issues/20040"
}
}
}
},
"CVE-2018-16873": {
"CVE-ID": "CVE-2018-16873",
"NVD": {
"Descriptions": "In Go before 1.10.6 and 1.11.x before 1.11.3, the \"go get\" command is vulnerable to remote code execution when executed with the -u flag and the import path of a malicious Go package, or a package that imports it directly or indirectly. Specifically, it is only vulnerable in GOPATH mode, but not in module mode (the distinction is documented at https://golang.org/cmd/go/#hdr-Module_aware_go_get). Using custom domains, it's possible to arrange things so that a Git repository is cloned to a folder named \".git\" by using a vanity import path that ends with \"/.git\". If the Git repository root contains a \"HEAD\" file, a \"config\" file, an \"objects\" directory, a \"refs\" directory, with some work to ensure the proper ordering of operations, \"go get -u\" can be tricked into considering the parent directory as a repository root, and running Git commands on it. That will use the \"config\" file in the original Git repository root for its configuration, and if that config file contains malicious commands, they will execute on the system running \"go get -u\".",
"Cvss2_BaseScore": 6.8,
"Cvss3_BaseScore": 7.5,
"Cvss2_VectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
"Cvss3_VectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"CPEs": [
{
"URI": "cpe:/o:suse:linux_enterprise_server:12:-",
"FormattedString": "cpe:2.3:o:suse:linux_enterprise_server:12:-:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},
{
"URI": "cpe:/o:opensuse:leap:42.3",
"FormattedString": "cpe:2.3:o:opensuse:leap:42.3:*:*:*:*:*:*:*",
"VersionStartExcluding": "",
"VersionStartIncluding": "",
"VersionEndExcluding": "",
"VersionEndIncluding": ""
},