-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathnode.openvex.json
More file actions
3290 lines (3290 loc) · 130 KB
/
node.openvex.json
File metadata and controls
3290 lines (3290 loc) · 130 KB
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
{
"@context": "https://openvex.dev/ns/v0.2.0",
"@id": "https://openvex.dev/docs/public/vex-8caa8dd4e2a846e4ca18a414c13d83f52d3f18435cab4bf7e0a3ac2cec66c24f",
"author": "Node.js Security WG",
"role": "Project",
"timestamp": "2026-04-08T21:27:16.982925688Z",
"version": 1,
"statements": [
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2015-3193",
"name": "CVE-2015-3193",
"description": "An attack may be possible against a Node.js TLS server using DHE key exchange.\nDetails are available at \u003chttp://openssl.org/news/secadv/20151203.txt\u003e.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v5.1.1"
},
{
"@id": "pkg:nodejs/node@v4.2.3"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2015-3194",
"name": "CVE-2015-3194",
"description": "A potential denial-of-service vector for Node.js TLS servers using client\ncertificate authentication; TLS clients are also impacted. Details are available\nat \u003chttp://openssl.org/news/secadv/20151203.txt\u003e.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v5.1.1"
},
{
"@id": "pkg:nodejs/node@v4.2.3"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2015-6764",
"name": "CVE-2015-6764",
"description": "Backport fix for CVE-2015-6764, a bug in v8's `JSON.stringify()` that can result\nin out-of-bounds reads for arrays.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v5.1.1"
},
{
"@id": "pkg:nodejs/node@v4.2.3"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2015-7384",
"name": "CVE-2015-7384",
"description": "out-of-order 'finish' event bug in pipelining can abort execution"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.1.2"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2015-8027",
"name": "CVE-2015-8027",
"description": "A bug whereby an HTTP socket may no longer have a parser associated with it but\na pipelined request attempts to trigger a pause or resume on the non-existent\nparser, a potential denial-of-service vulnerability.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v5.1.1"
},
{
"@id": "pkg:nodejs/node@v4.2.3"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-0702",
"name": "CVE-2016-0702",
"description": "Fix a defect that makes the _[CacheBleed\nAttack](https://ssrg.nicta.com.au/projects/TS/cachebleed/)_ possible. This\ndefect enables attackers to execute side-channel attacks leading to the\npotential recovery of entire RSA private keys. It only affects the Intel Sandy\nBridge (and possibly older) microarchitecture when using hyper-threading. Newer\nmicroarchitectures, including Haswell, are unaffected.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.3.2"
},
{
"@id": "pkg:nodejs/node@v5.7.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-0797",
"name": "CVE-2016-0797",
"description": "Fix a defect that can cause memory corruption in certain very rare cases\nrelating to the internal `BN_hex2bn()` and `BN_dec2bn()` functions. It is\nbelieved that Node.js is not invoking the code paths that use these functions so\npractical attacks via Node.js using this defect are _unlikely_ to be possible.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.3.2"
},
{
"@id": "pkg:nodejs/node@v5.7.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-1669",
"name": "CVE-2016-1669",
"description": "Under certain conditions, V8 may improperly expand memory allocations in the\nZone::New function. This could potentially be used to cause a Denial of Service\nvia buffer overflow or as a trigger for a remote code execution.\n\nAlthough this bug is marked as high severity in the corresponding Chromium\nrelease (50.0.2661.102), our assessment is that this is low severity for\nNode.js users due to the level of difficulty in making use of this\nvulnerability. However, users are encouraged to upgrade their Node.js\ninstallation to ensure they are properly protected.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.4.6"
},
{
"@id": "pkg:nodejs/node@v5.12.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-2086",
"name": "CVE-2016-2086",
"description": "Fix defects in HTTP header parsing for requests and responses that\ncan allow request smuggling (CVE-2016-2086).\n\nHTTP header parsing now aligns more closely with the HTTP spec\nincluding restricting the acceptable characters.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v5.6.0"
},
{
"@id": "pkg:nodejs/node@v4.3.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-2105",
"name": "CVE-2016-2105",
"description": "An overflow can occur in the OpenSSL EVP_EncodeUpdate() function which is used\nfor Base64 encoding of binary data. An attacker must be able to supply large\namounts of input data in order to cause an overflow.\n\nNode.js uses the EVP_EncodeUpdate() internally during calls to\ncrypto.Certificate#exportPublicKey() for SPKAC Certificate Signing\nRequests. User-supplied data must be passed to this method for\napplications to be vulnerable. This method has been available since\nNode.js v0.12.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.4.4"
},
{
"@id": "pkg:nodejs/node@v5.11.1"
},
{
"@id": "pkg:nodejs/node@v6.1.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-2107",
"name": "CVE-2016-2107",
"description": "A man-in-the-middle (MITM) attacker may be able to execute a padding oracle\nattack to decrypt traffic when a connection uses an AES-CBC cipher and the\nserver runs on an Intel CPU supporting AES-NI. This is a common configuration\nfor TLS servers.\n\nThe OpenSSL project has labelled this vulnerability high severity.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.4.4"
},
{
"@id": "pkg:nodejs/node@v5.11.1"
},
{
"@id": "pkg:nodejs/node@v6.1.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-2178",
"name": "CVE-2016-2178",
"description": "A flaw in the OpenSSL DSA implementation means that a non-constant time codepath\nis followed for certain operations. This has been demonstrated through a\ncache-timing attack to be sufficient for an attacker to recover the private DSA\nkey.\n\nThis is very low severity for Node.js users due to the difficulty in taking\nadvantage of this attack and because DSA is very rarely used.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-2183",
"name": "CVE-2016-2183",
"description": "SWEET32 is a new attack on older block cipher algorithms that use a block size\nof 64 bits.\n\nAs mitigation, OpenSSL has moved DES-based ciphers from the HIGH to MEDIUM\ngroup. As Node.js includes HIGH, but not MEDIUM, in its default suite, affected\nciphers are no longer included unless the default suite is not used. Node's\ndefault TLS cipher suite can be found in the API documentation.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-2216",
"name": "CVE-2016-2216",
"description": "Fix defects in HTTP header parsing for requests and responses that\ncan allow response splitting (CVE-2016-2216).\n\nHTTP header parsing now aligns more closely with the HTTP spec\nincluding restricting the acceptable characters.\n\nIntroduce new `--security-revert={cvenum}` command line flag for selective\nreversion of specific CVE fixes allow the fix for CVE-2016-2216 to be\nselectively reverted using `--security-revert=CVE-2016-2216`.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v5.6.0"
},
{
"@id": "pkg:nodejs/node@v4.3.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-5172",
"name": "CVE-2016-5172",
"description": "The V8 parser mishandled scopes, potentially allowing an attacker to obtain\nsensitive information from arbitrary memory locations via crafted JavaScript\ncode. This vulnerability would require an attacker to be able to execute\narbitrary JavaScript code in a Node.js process.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.9.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-5180",
"name": "CVE-2016-5180",
"description": "A security vulnerability has been discovered in the c-ares library that is\nbundled with all versions of Node.js. Due to the difficulty of triggering and\nmaking use of this vulnerability we currently consider this a low-severity\nsecurity flaw for Node.js users.\n\nMore information at https://c-ares.haxx.se/adv_20160929.html\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v0.10.48"
},
{
"@id": "pkg:nodejs/node@v0.12.17"
},
{
"@id": "pkg:nodejs/node@v4.6.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-5325",
"name": "CVE-2016-5325",
"description": "**http**: Properly validate for allowable characters in the `reason` argument in\n`ServerResponse#writeHead()`. Fixes a possible response splitting attack vector.\nThis introduces a new case where `throw` may occur when configuring HTTP\nresponses, users should already be adopting try/catch here.\n\nThis is a low severity security defect that that may make HTTP response\nsplitting possible under certain circumstances. If user-input is passed to the\nreason argument to writeHead() on an HTTP response, a new-line character may be\nused to inject additional responses.\n\nThe fix for this defect introduces a new case where throw may occur when\nconfiguring HTTP responses. Users should already be adopting try/catch here.\n\nCommon Vulnerability Scoring System (CVSS) v3 Base Score:\n\n\tMetric\tScore\n\tBase Score:\t4.8 (Medium)\n\tBase Vector:\tCVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N\n\tAttack Vector:\tNetwork (AV:N)\n\tAttack Complexity:\tHigh (AC:H)\n\tPrivileges Required:\tNone (PR:N)\n\tUser Interaction:\tNone (UI:N)\n\tScope of Impact:\tUnchanged (S:U)\n\tConfidentiality Impact:\tLow (C:L)\n\tIntegrity Impact:\tLow (I:L)\n\tAvailability Impact:\tNone (A:N)\n\nRefer to the\n[CVSS v3 Specification](https://www.first.org/cvss/specification-document)\nfor details on the meanings and application of the vector components.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-6303",
"name": "CVE-2016-6303",
"description": "An overflow can occur in MDC2_Update() under certain circumstances resulting in\nan out of bounds (OOB) error. This attack is impractical on most platforms due\nto the size of data required to trigger the OOB error.\n\nNode.js is impacted by this flaw but due to the impracticalities of exploiting\nit and the very low usage of of MDC-2, it is very low severity for Node.js\nusers.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-6304",
"name": "CVE-2016-6304",
"description": "A malicious client can exhaust a server's memory, resulting in a denial of\nservice (DoS) by sending very large OCSP Status Request extensions in a single\nsession.\n\nThis flaw is labelled high severity due to the ease of use for a DoS attack and\nNode.js servers using TLS are vulnerable.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-6306",
"name": "CVE-2016-6306",
"description": "Some missing message length checks can result in out of bounds (OOB) reads of up\nto 2 bytes beyond an allocated buffer. There is a theoretical denial of service\n(DoS) risk. This only impacts a client or a server which enables client\nauthentication.\n\nNode.js is impacted by this low severity flaw.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-7055",
"name": "CVE-2016-7055",
"description": "Some calculations, when run on an Intel Broadwell or later CPU, can produce in\nerroneous results. This flaw has been previously discussed by the Node.js team\non GitHub. It is not believed that practical attacks can be crafted to exploit\nthis vulnerability except in very specific circumstances. Therefore this is a\nlow severity flaw.\n\nAll active versions of Node.js are affected, but the severity is very low for\nNode.js users.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.7.3"
},
{
"@id": "pkg:nodejs/node@v6.9.5"
},
{
"@id": "pkg:nodejs/node@v7.5.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-7099",
"name": "CVE-2016-7099",
"description": "Fix invalid wildcard certificate validation check whereby a TLS server may be\nable to serve an invalid wildcard certificate for its hostname due to improper\nvalidation of `*.` in the wildcard string. \n\nThis is a high severity defect that would allow a malicious TLS server to serve\nan invalid wildcard certificate for its hostname and be improperly validated by\na Node.js client. This is due to a flaw in the validation of *. in the wildcard\nname string.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v6.7.0"
},
{
"@id": "pkg:nodejs/node@v4.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-9551",
"name": "CVE-2016-9551",
"description": "Please be aware that Node.js v7.2.0 was released today and includes a small\nsecurity update arising from libuv: https://nodejs.org/en/blog/release/v7.2.0/\n\nlibuv v1.10.1 reverts a change that was introduced in v1.10.0, included in\nNode.js v7.1.0. The reverted code was found to contain a potential buffer\noverflow in output written to the console. We are not aware of any exploit of\nthis flaw and it only impacts Windows 10 (November update and later). This flaw\nhas been assigned the identifier CVE-2016-9551 and was originally discovered and\nreported by Hitesh Kanwathirtha of Microsoft.\n\nUsers of the v7 release line running on Windows 10 should upgrade to Node.js\nv7.2.0 at their earliest convenience.\n\nNo other version of Node.js is known to be impacted by this flaw.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v7.2.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-9840",
"name": "CVE-2016-9840",
"description": "An upgrade to zlib 1.2.11 to fix a number of low severity CVEs\nthat were present in zlib 1.2.8.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.8.2"
},
{
"@id": "pkg:nodejs/node@v6.10.2"
},
{
"@id": "pkg:nodejs/node@v7.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-9841",
"name": "CVE-2016-9841",
"description": "An upgrade to zlib 1.2.11 to fix a number of low severity CVEs\nthat were present in zlib 1.2.8.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.8.2"
},
{
"@id": "pkg:nodejs/node@v6.10.2"
},
{
"@id": "pkg:nodejs/node@v7.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-9842",
"name": "CVE-2016-9842",
"description": "An upgrade to zlib 1.2.11 to fix a number of low severity CVEs\nthat were present in zlib 1.2.8.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.8.2"
},
{
"@id": "pkg:nodejs/node@v6.10.2"
},
{
"@id": "pkg:nodejs/node@v7.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2016-9843",
"name": "CVE-2016-9843",
"description": "An upgrade to zlib 1.2.11 to fix a number of low severity CVEs\nthat were present in zlib 1.2.8.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.8.2"
},
{
"@id": "pkg:nodejs/node@v6.10.2"
},
{
"@id": "pkg:nodejs/node@v7.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-1000381",
"name": "CVE-2017-1000381",
"description": "The c-ares function ares_parse_naptr_reply(), which is used for parsing NAPTR\nresponses, could be triggered to read memory outside of the given input buffer\nif the passed in DNS response packet was crafted in a particular way.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v8.1.4"
},
{
"@id": "pkg:nodejs/node@v7.10.1"
},
{
"@id": "pkg:nodejs/node@v4.8.4"
},
{
"@id": "pkg:nodejs/node@v6.11.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-14849",
"name": "CVE-2017-14849",
"description": "Node.js version 8.5.0 included a change which caused a security vulnerability in the checks on paths made by some community modules. As a result, an attacker may be able to access file system paths other than those intended."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.6.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-14919",
"name": "CVE-2017-14919",
"description": "Node.js was susceptible to a remote DoS attack due to a change that came in as part of zlib v1.2.9. In zlib v1.2.9 8 became an invalid value for the windowBits parameter and Node's zlib module will crash or throw an exception (depending on the version) if you call zlib.createDeflateRaw({windowBits: 8})."
},
"products": [
{
"@id": "pkg:nodejs/node@v4.8.5"
},
{
"@id": "pkg:nodejs/node@v6.11.5"
},
{
"@id": "pkg:nodejs/node@v8.8.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-15896",
"name": "CVE-2017-15896",
"description": "Node.js was affected by OpenSSL vulnerability CVE-2017-3737 in regards to the use of SSL_read() due to TLS handshake failure. The result was that an active network attacker could send application data to Node.js using the TLS or HTTP2 modules in a way that bypassed TLS authentication and encryption."
},
"products": [
{
"@id": "pkg:nodejs/node@v4.8.7"
},
{
"@id": "pkg:nodejs/node@v6.12.2"
},
{
"@id": "pkg:nodejs/node@v8.9.3"
},
{
"@id": "pkg:nodejs/node@v9.2.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-15897",
"name": "CVE-2017-15897",
"description": "Node.js had a bug in versions 8.X and 9.X which caused buffers to not be initialized when the encoding for the fill value did not match the encoding specified. For example, 'Buffer.alloc(0x100, \"This is not correctly encoded\", \"hex\");' The buffer implementation was updated such that the buffer will be initialized to all zeros in these cases."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.9.3"
},
{
"@id": "pkg:nodejs/node@v9.2.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-3731",
"name": "CVE-2017-3731",
"description": "This is a moderate severity flaw in OpenSSL. By default, Node.js disables RC4 so\nmost users are not affected. As RC4 can be enabled programmatically, it is\npossible for a Node.js developer to craft code that may be vulnerable to this\nflaw. Any user activating RC4 in their codebase should prioritise this update.\n\nAll active versions of Node.js are affected, but the severity is very low for\nmost users.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.7.3"
},
{
"@id": "pkg:nodejs/node@v6.9.5"
},
{
"@id": "pkg:nodejs/node@v7.5.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2017-3732",
"name": "CVE-2017-3732",
"description": "As noted by the OpenSSL team, the likelihood of being able to craft a practical\nattack that uses this flaw is very low. In addition, Node.js enables\nSSL_OP_SINGLE_DH_USE, further decreasing the chance of a successful exploit of\nthis vulnerability in a Node.js service.\n\nAll active versions of Node.js are affected, but the severity is very low for\nNode.js users.\n\n"
},
"products": [
{
"@id": "pkg:nodejs/node@v4.7.3"
},
{
"@id": "pkg:nodejs/node@v6.9.5"
},
{
"@id": "pkg:nodejs/node@v7.5.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-12115",
"name": "CVE-2018-12115",
"description": "When used with UCS-2 encoding (recognized by Node.js under the names `'ucs2'`, `'ucs-2'`, `'utf16le'` and `'utf-16le'`), `Buffer#write()` can be abused to write outside of the bounds of a single `Buffer`. Writes that start from the second-to-last position of a buffer cause a miscalculation of the maximum length of the input bytes to be written."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.14.4"
},
{
"@id": "pkg:nodejs/node@v8.11.4"
},
{
"@id": "pkg:nodejs/node@v\u003e= 10.9.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-12116",
"name": "CVE-2018-12116",
"description": "HTTP request splitting: If Node.js can be convinced to use unsanitized user-provided Unicode data for the `path` option of an HTTP request, then data can be provided which will trigger a second, unexpected, and user-defined HTTP request to made to the same server."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.15.0"
},
{
"@id": "pkg:nodejs/node@v8.14.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-12120",
"name": "CVE-2018-12120",
"description": "Debugger port 5858 listens on any interface by default: When the debugger is enabled with `node --debug` or `node debug`, it listens to port 5858 on all interfaces by default. This may allow remote computers to attach to the debug port and evaluate arbitrary JavaScript. The default interface is now localhost. It has always been possible to start the debugger on a specific interface, such as `node --debug=localhost`. The debugger was removed in Node.js 8 and replaced with the inspector, so no versions from 8 and later are vulnerable."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.15.0"
},
{
"@id": "pkg:nodejs/node@v8.14.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-12121",
"name": "CVE-2018-12121",
"description": "Denial of Service with large HTTP headers: By using a combination of many requests with maximum sized headers (almost 80 KB per connection), and carefully timed completion of the headers, it is possible to cause the HTTP server to abort from heap allocation failure. Attack potential is mitigated by the use of a load balancer or other proxy layer."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.15.0"
},
{
"@id": "pkg:nodejs/node@v8.14.0"
},
{
"@id": "pkg:nodejs/node@v10.14.0"
},
{
"@id": "pkg:nodejs/node@v11.3.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-12122",
"name": "CVE-2018-12122",
"description": "Slowloris HTTP Denial of Service: An attacker can cause a Denial of Service (DoS) by sending headers very slowly keeping HTTP or HTTPS connections and associated resources alive for a long period of time."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.15.0"
},
{
"@id": "pkg:nodejs/node@v8.14.0"
},
{
"@id": "pkg:nodejs/node@v10.14.0"
},
{
"@id": "pkg:nodejs/node@v11.3.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-12123",
"name": "CVE-2018-12123",
"description": "Hostname spoofing in URL parser for javascript protocol: If a Node.js application is using url.parse() to determine the URL hostname, that hostname can be spoofed by using a mixed case \"javascript:\" (e.g. \"javAscript:\") protocol (other protocols are not affected). If security decisions are made about the URL based on the hostname, they may be incorrect."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.15.0"
},
{
"@id": "pkg:nodejs/node@v8.14.0"
},
{
"@id": "pkg:nodejs/node@v10.14.0"
},
{
"@id": "pkg:nodejs/node@v11.3.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7158",
"name": "CVE-2018-7158",
"description": "The `'path'` module in the Node.js 4.x release line contains a potential regular expression denial of service (ReDoS) vector. The code in question was replaced in Node.js 6.x and later so this vulnerability only impacts all versions of Node.js 4.x. The regular expression, `splitPathRe`, used within the `'path'` module for the various path parsing functions, including `path.dirname()`, `path.extname()` and `path.parse()` was structured in such a way as to allow an attacker to craft a string, that when passed through one of these functions, could take a significant amount of time to evaluate, potentially leading to a full denial of service."
},
"products": [
{
"@id": "pkg:nodejs/node@v4.9.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7159",
"name": "CVE-2018-7159",
"description": "The HTTP parser in all current versions of Node.js ignores spaces in the `Content-Length` header, allowing input such as `Content-Length: 1 2` to be interpreted as having a value of `12`. The HTTP specification does not allow for spaces in the `Content-Length` value and the Node.js HTTP parser has been brought into line on this particular difference. The security risk of this flaw to Node.js users is considered to be VERY LOW as it is difficult, and may be impossible, to craft an attack that makes use of this flaw in a way that could not already be achieved by supplying an incorrect value for `Content-Length`. Vulnerabilities may exist in user-code that make incorrect assumptions about the potential accuracy of this value compared to the actual length of the data supplied. Node.js users crafting lower-level HTTP utilities are advised to re-check the length of any input supplied after parsing is complete."
},
"products": [
{
"@id": "pkg:nodejs/node@v4.9.0"
},
{
"@id": "pkg:nodejs/node@v6.14.0"
},
{
"@id": "pkg:nodejs/node@v8.11.0"
},
{
"@id": "pkg:nodejs/node@v9.10.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7160",
"name": "CVE-2018-7160",
"description": "The Node.js inspector, in 6.x and later is vulnerable to a DNS rebinding attack which could be exploited to perform remote code execution. An attack is possible from malicious websites open in a web browser on the same computer, or another computer with network access to the computer running the Node.js process. A malicious website could use a DNS rebinding attack to trick the web browser to bypass same-origin-policy checks and to allow HTTP connections to localhost or to hosts on the local network. If a Node.js process with the debug port active is running on localhost or on a host on the local network, the malicious website could connect to it as a debugger, and get full code execution access."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.14.0"
},
{
"@id": "pkg:nodejs/node@v8.11.0"
},
{
"@id": "pkg:nodejs/node@v9.10.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7161",
"name": "CVE-2018-7161",
"description": "All versions of 8.x and later are vulnerable and the severity is HIGH. An attacker can cause a denial of service (DoS) by causing a node server providing an http2 server to crash. This can be accomplished by interacting with the http2 server in a manner that triggers a cleanup bug where objects are used in native code after they are no longer available. This has been addressed by updating the http2 implementation. Thanks to Jordan Zebor at F5 Networks for reporting this issue."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.11.3"
},
{
"@id": "pkg:nodejs/node@v9.11.2"
},
{
"@id": "pkg:nodejs/node@v10.4.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7162",
"name": "CVE-2018-7162",
"description": "All versions of 9.x and later are vulnerable and the severity is HIGH. An attacker can cause a denial of service (DoS) by causing a node process which provides an http server supporting TLS server to crash. This can be accomplished by sending duplicate/unexpected messages during the handshake. This vulnerability has been addressed by updating the TLS implementation. Thanks to Jordan Zebor at F5 Networks all of his help investigating this issue with the Node.js team."
},
"products": [
{
"@id": "pkg:nodejs/node@v9.11.2"
},
{
"@id": "pkg:nodejs/node@v10.4.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7164",
"name": "CVE-2018-7164",
"description": "Versions 9.7.0 and later are vulnerable and the severity is MEDIUM. A bug introduced in 9.7.0 increases the memory consumed when reading from the network into JavaScript using the net.Socket object directly as a stream. An attacker could use this cause a denial of service by sending tiny chunks of data in short succession. This vulnerability was restored by reverting to the prior behaviour."
},
"products": [
{
"@id": "pkg:nodejs/node@v9.11.2"
},
{
"@id": "pkg:nodejs/node@v10.4.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7166",
"name": "CVE-2018-7166",
"description": "An argument processing flaw can cause `Buffer.alloc()` to return uninitialized memory. This method is intended to be safe and only return initialized, or cleared, memory. The third argument specifying `encoding` can be passed as a number, this is misinterpreted by `Buffer's` internal \"fill\" method as the `start` to a fill operation. This flaw may be abused where `Buffer.alloc()` arguments are derived from user input to return uncleared memory blocks that may contain sensitive information."
},
"products": [
{
"@id": "pkg:nodejs/node@v\u003e= 10.9.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2018-7167",
"name": "CVE-2018-7167",
"description": "Calling Buffer.fill() or Buffer.alloc() with some parameters can lead to a hang which could result in a Denial of Service."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.14.3"
},
{
"@id": "pkg:nodejs/node@v8.11.3"
},
{
"@id": "pkg:nodejs/node@v9.11.2"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-15604",
"name": "CVE-2019-15604",
"description": "Remotely trigger an assertion on a TLS server with a malformed certificate string"
},
"products": [
{
"@id": "pkg:nodejs/node@v10.19.0"
},
{
"@id": "pkg:nodejs/node@v12.15.0"
},
{
"@id": "pkg:nodejs/node@v13.8.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-15605",
"name": "CVE-2019-15605",
"description": "HTTP request smuggling using malformed Transfer-Encoding header"
},
"products": [
{
"@id": "pkg:nodejs/node@v10.19.0"
},
{
"@id": "pkg:nodejs/node@v12.15.0"
},
{
"@id": "pkg:nodejs/node@v13.8.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-15606",
"name": "CVE-2019-15606",
"description": "HTTP header values do not have trailing OWS trimmed"
},
"products": [
{
"@id": "pkg:nodejs/node@v10.19.0"
},
{
"@id": "pkg:nodejs/node@v12.15.0"
},
{
"@id": "pkg:nodejs/node@v13.8.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-5737",
"name": "CVE-2019-5737",
"description": "An attacker can cause a Denial of Service (DoS) by establishing an HTTP or HTTPS connection in keep-alive mode and by sending headers very slowly thereby keeping the connection and associated resources alive for a long period of time. Attack potential is mitigated by the use of a load balancer or other proxy layer. This vulnerability is an extension of CVE-2018-12121, addressed in November and impacts all active release lines including 6, 8, 10 and 11."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.17.0"
},
{
"@id": "pkg:nodejs/node@v8.15.1"
},
{
"@id": "pkg:nodejs/node@v10.15.2"
},
{
"@id": "pkg:nodejs/node@v11.10.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-5739",
"name": "CVE-2019-5739",
"description": "Keep-alive HTTP and HTTPS connections can remain open and inactive for up to 2 minutes in Node.js 6.16.0 and earlier. Node.js 8.0.0 introduced a dedicated server.keepAliveTimeout which defaults to 5 seconds. The behavior in Node.js 6.16.0 and earlier is a potential Denial of Service (DoS) attack vector. Node.js 6.17.0 introduces server.keepAliveTimeout and the 5-second default."
},
"products": [
{
"@id": "pkg:nodejs/node@v6.17.0"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-9511",
"name": "CVE-2019-9511",
"description": "Netflix has discovered several resource exhaustion vectors affecting a variety of third-party HTTP/2 implementations. These attack vectors can be used to launch DoS attacks against servers that support HTTP/2 communication. Netflix worked with Google and CERT/CC to coordinate disclosure to the Internet community."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.16.1"
},
{
"@id": "pkg:nodejs/node@v10.16.3"
},
{
"@id": "pkg:nodejs/node@v12.8.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-9512",
"name": "CVE-2019-9512",
"description": "Netflix has discovered several resource exhaustion vectors affecting a variety of third-party HTTP/2 implementations. These attack vectors can be used to launch DoS attacks against servers that support HTTP/2 communication. Netflix worked with Google and CERT/CC to coordinate disclosure to the Internet community."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.16.1"
},
{
"@id": "pkg:nodejs/node@v10.16.3"
},
{
"@id": "pkg:nodejs/node@v12.8.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-9513",
"name": "CVE-2019-9513",
"description": "Netflix has discovered several resource exhaustion vectors affecting a variety of third-party HTTP/2 implementations. These attack vectors can be used to launch DoS attacks against servers that support HTTP/2 communication. Netflix worked with Google and CERT/CC to coordinate disclosure to the Internet community."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.16.1"
},
{
"@id": "pkg:nodejs/node@v10.16.3"
},
{
"@id": "pkg:nodejs/node@v12.8.1"
}
],
"status": "fixed"
},
{
"vulnerability": {
"@id": "https://www.cve.org/CVERecord?id=CVE-2019-9514",
"name": "CVE-2019-9514",
"description": "Netflix has discovered several resource exhaustion vectors affecting a variety of third-party HTTP/2 implementations. These attack vectors can be used to launch DoS attacks against servers that support HTTP/2 communication. Netflix worked with Google and CERT/CC to coordinate disclosure to the Internet community."
},
"products": [
{
"@id": "pkg:nodejs/node@v8.16.1"
},
{
"@id": "pkg:nodejs/node@v10.16.3"