-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauditjs.json
1272 lines (1272 loc) · 80.2 KB
/
auditjs.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
{
"affected": [
{
"coordinates": "pkg:npm/[email protected]",
"description": "Git log parser for Node.JS",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "a49aa690-87d8-404f-b41a-202b88cb0674",
"title": "CWE-78: Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')",
"description": "The software constructs all or part of an OS command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended OS command when it is sent to a downstream component.",
"cvssScore": 8.8,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/a49aa690-87d8-404f-b41a-202b88cb0674?component-type=npm&component-name=gitlog&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "7b682dd5-ef07-459c-be11-50ec76c9eba2",
"title": "[CVE-2021-32640] ws is an open source WebSocket client and server library for Node.js. A speciall...",
"description": "ws is an open source WebSocket client and server library for Node.js. A specially crafted value of the `Sec-Websocket-Protocol` header can be used to significantly slow down a ws server. The vulnerability has been fixed in [email protected] (https://github.com/websockets/ws/commit/00c425ec77993773d823f018f64a5c44e17023ff). In vulnerable versions of ws, the issue can be mitigated by reducing the maximum allowed length of the request headers using the [`--max-http-header-size=size`](https://nodejs.org/api/cli.html#cli_max_http_header_size_size) and/or the [`maxHeaderSize`](https://nodejs.org/api/http.html#http_http_createserver_options_requestlistener) options.",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"cve": "CVE-2021-32640",
"reference": "https://ossindex.sonatype.org/vulnerability/7b682dd5-ef07-459c-be11-50ec76c9eba2?component-type=npm&component-name=ws&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Tool for transforming styles with JS plugins",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "e3f310ed-219c-4087-aa58-8425b13c3ec5",
"title": "CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "The software does not properly restrict the size or amount of resources that are requested or influenced by an actor, which can be used to consume more resources than intended.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/e3f310ed-219c-4087-aa58-8425b13c3ec5?component-type=npm&component-name=postcss&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "e0905398-4778-4da0-a4ab-42ed4e0bdb73",
"title": "[CVE-2021-23364] The package browserslist from 4.0.0 and before 4.16.5 are vulnerable to Regular ...",
"description": "The package browserslist from 4.0.0 and before 4.16.5 are vulnerable to Regular Expression Denial of Service (ReDoS) during parsing of queries.",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"cve": "CVE-2021-23364",
"reference": "https://ossindex.sonatype.org/vulnerability/e0905398-4778-4da0-a4ab-42ed4e0bdb73?component-type=npm&component-name=browserslist&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "92bbcbaf-097a-43f9-855e-2052e38930db",
"title": "[CVE-2021-27290] ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression whic...",
"description": "ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression which is vulnerable to a denial of service. Malicious SRIs could take an extremely long time to process, leading to denial of service. This issue only affects consumers using the strict option.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-27290",
"reference": "https://ossindex.sonatype.org/vulnerability/92bbcbaf-097a-43f9-855e-2052e38930db?component-type=npm&component-name=ssri&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Extract the non-magic parent path from a glob string.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "64cd5f21-8af4-4eae-ac7d-a53241ea693a",
"title": "CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "The software does not properly restrict the size or amount of resources that are requested or influenced by an actor, which can be used to consume more resources than intended.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/64cd5f21-8af4-4eae-ac7d-a53241ea693a?component-type=npm&component-name=glob-parent&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Regular expression for matching ANSI escape codes",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2021-1169",
"title": "[sonatype-2021-1169] Unknown",
"description": "ansi-regex - Regular Expression Denial of Service (ReDoS) [CVE-2021-3807]\n\nansi-regex - Regular Expression Denial of Service (ReDoS) [CVE-2021-3807]",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-3807",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-1169?component-type=npm&component-name=ansi-regex&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Wrap words to a specified length.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2023-26115",
"title": "[CVE-2023-26115] CWE-1333",
"description": "word-wrap - Regular Expression Denial of Service (ReDoS)",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"cve": "CVE-2023-26115",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2023-26115?component-type=npm&component-name=word-wrap&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Fast CSS Selectors API Engine",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2022-3565",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 6.2,
"cvssVector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2022-3565"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "JavaScript micro templates.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-3777",
"title": "[CVE-2021-3777] CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "nodejs-tmpl is vulnerable to Inefficient Regular Expression Complexity",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-3777",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3777?component-type=npm&component-name=tmpl&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "JSON for humans.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-46175",
"title": "[CVE-2022-46175] CWE-1321",
"description": "JSON5 is an extension to the popular JSON file format that aims to be easier to write and maintain by hand (e.g. for config files). The `parse` method of the JSON5 library before and including versions 1.0.1 and 2.2.1 does not restrict parsing of keys named `__proto__`, allowing specially crafted strings to pollute the prototype of the resulting object. This vulnerability pollutes the prototype of the object returned by `JSON5.parse` and not the global Object prototype, which is the commonly understood definition of Prototype Pollution. However, polluting the prototype of a single object can have significant security impact for an application if the object is later used in trusted operations. This vulnerability could allow an attacker to set arbitrary and unexpected keys on the object returned from `JSON5.parse`. The actual impact will depend on how applications utilize the returned object and how they filter unwanted keys, but could include denial of service, cross-site scripting, elevation of privilege, and in extreme cases, remote code execution. `JSON5.parse` should restrict parsing of `__proto__` keys when parsing JSON strings to objects. As a point of reference, the `JSON.parse` method included in JavaScript ignores `__proto__` keys. Simply changing `JSON5.parse` to `JSON.parse` in the examples above mitigates this vulnerability. This vulnerability is patched in json5 versions 1.0.2, 2.2.2, and later.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-46175 for details",
"cvssScore": 8.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-46175",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-46175?component-type=npm&component-name=json5&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "parse argument options",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-44906",
"title": "[CVE-2021-44906] CWE-1321",
"description": "Minimist <=1.2.5 is vulnerable to Prototype Pollution via file index.js, function setKey() (lines 69-95).",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-44906",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-44906?component-type=npm&component-name=minimist&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "a glob matcher in javascript",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2021-4879",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-4879"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "A light-weight module that brings window.fetch to node.js",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-0235",
"title": "[CVE-2022-0235] CWE-200: Information Exposure",
"description": "node-fetch is vulnerable to Exposure of Sensitive Information to an Unauthorized Actor",
"cvssScore": 6.1,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"cve": "CVE-2022-0235",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0235?component-type=npm&component-name=node-fetch&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "sonatype-2022-3677",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 3.7,
"cvssVector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2022-3677"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Higher-order functions and common patterns for asynchronous code",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-43138",
"title": "[CVE-2021-43138] CWE-1321",
"description": "In Async before 2.6.4 and 3.x before 3.2.2, a malicious user can obtain privileges via the mapValues() method, aka lib/internal/iterator.js createObjectIterator prototype pollution.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2021-43138 for details",
"cvssScore": 7.8,
"cvssVector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-43138",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-43138?component-type=npm&component-name=async&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Similar to String#trim() but removes only newlines",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-23425",
"title": "[CVE-2021-23425] CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "All versions of package trim-off-newlines are vulnerable to Regular Expression Denial of Service (ReDoS) via string processing.",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"cve": "CVE-2021-23425",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-23425?component-type=npm&component-name=trim-off-newlines&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "istanbul reports",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2021-4715",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 4.7,
"cvssVector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-4715"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Delete nested properties from an object using dot notation.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2021-0459",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 9.4,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-0459"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "tar for node",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-37712",
"title": "[CVE-2021-37712] CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')",
"description": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be modified by a symbolic link is not extracted. This is, in part, achieved by ensuring that extracted directories are not symlinks. Additionally, in order to prevent unnecessary stat calls to determine whether a given path is a directory, paths are cached when directories are created. This logic was insufficient when extracting tar files that contained both a directory and a symlink with names containing unicode values that normalized to the same value. Additionally, on Windows systems, long path portions would resolve to the same file system entities as their 8.3 \"short path\" counterparts. A specially crafted tar archive could thus include a directory with one form of the path, followed by a symbolic link with a different string that resolves to the same file system entity, followed by a file using the first form. By first creating a directory, and then replacing that directory with a symlink that had a different apparent name that resolved to the same entry in the filesystem, it was thus possible to bypass node-tar symlink checks on directories, essentially allowing an untrusted tar file to symlink into an arbitrary location and subsequently extracting arbitrary files into that location, thus allowing arbitrary file creation and overwrite. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. If this is not possible, a workaround is available in the referenced GHSA-qq89-hq3f-393p.",
"cvssScore": 8.6,
"cvssVector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H",
"cve": "CVE-2021-37712",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-37712?component-type=npm&component-name=tar&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2021-37713",
"title": "[CVE-2021-37713] CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')",
"description": "The npm package \"tar\" (aka node-tar) before versions 4.4.18, 5.0.10, and 6.1.9 has an arbitrary file creation/overwrite and arbitrary code execution vulnerability. node-tar aims to guarantee that any file whose location would be outside of the extraction target directory is not extracted. This is, in part, accomplished by sanitizing absolute paths of entries within the archive, skipping archive entries that contain `..` path portions, and resolving the sanitized paths against the extraction target directory. This logic was insufficient on Windows systems when extracting tar files that contained a path that was not an absolute path, but specified a drive letter different from the extraction target, such as `C:some\\path`. If the drive letter does not match the extraction target, for example `D:\\extraction\\dir`, then the result of `path.resolve(extractionDirectory, entryPath)` would resolve against the current working directory on the `C:` drive, rather than the extraction target directory. Additionally, a `..` portion of the path could occur immediately after the drive letter, such as `C:../foo`, and was not properly sanitized by the logic that checked for `..` within the normalized and split portions of the path. This only affects users of `node-tar` on Windows systems. These issues were addressed in releases 4.4.18, 5.0.10 and 6.1.9. The v3 branch of node-tar has been deprecated and did not receive patches for these issues. If you are still using a v3 release we recommend you update to a more recent version of node-tar. There is no reasonable way to work around this issue without performing the same path normalization procedures that node-tar now does. Users are encouraged to upgrade to the latest patched versions of node-tar, rather than attempt to sanitize paths themselves.",
"cvssScore": 8.6,
"cvssVector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H",
"cve": "CVE-2021-37713",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-37713?component-type=npm&component-name=tar&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "performant nth-check parser & compiler",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-3803",
"title": "[CVE-2021-3803] CWE-1333",
"description": "nth-check is vulnerable to Inefficient Regular Expression Complexity",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-3803",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3803?component-type=npm&component-name=nth-check&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Standard library",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2023-0962",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2023-0962"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "utils for webpack loaders",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-37599",
"title": "[CVE-2022-37599] CWE-Other",
"description": "A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the resourcePath variable in interpolateName.js.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-37599",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37599?component-type=npm&component-name=loader-utils&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-37601",
"title": "[CVE-2022-37601] CWE-1321",
"description": "Prototype pollution vulnerability in function parseQuery in parseQuery.js in webpack loader-utils 2.0.0 via the name variable in parseQuery.js.",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-37601",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37601?component-type=npm&component-name=loader-utils&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-37603",
"title": "[CVE-2022-37603] CWE-Other",
"description": "A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the url variable in interpolateName.js.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-37603",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37603?component-type=npm&component-name=loader-utils&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "A better decodeURIComponent",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-38900",
"title": "[CVE-2022-38900] CWE-20: Improper Input Validation",
"description": "decode-uri-component 0.2.0 is vulnerable to Improper Input Validation resulting in DoS.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-38900",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-38900?component-type=npm&component-name=decode-uri-component&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "W3C compliant EventSource client for Node.js and browser (polyfill)",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-1650",
"title": "[CVE-2022-1650] CWE-200: Information Exposure",
"description": "Exposure of Sensitive Information to an Unauthorized Actor in GitHub repository eventsource/eventsource prior to v2.0.2.",
"cvssScore": 9.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N",
"cve": "CVE-2022-1650",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-1650?component-type=npm&component-name=eventsource&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Small footprint URL parser that works seamlessly across Node.js and browser environments",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-0512",
"title": "[CVE-2022-0512] CWE-639: Authorization Bypass Through User-Controlled Key",
"description": "Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.6.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-0512 for details",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"cve": "CVE-2022-0512",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0512?component-type=npm&component-name=url-parse&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-0639",
"title": "[CVE-2022-0639] CWE-639: Authorization Bypass Through User-Controlled Key",
"description": "Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.7.",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"cve": "CVE-2022-0639",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0639?component-type=npm&component-name=url-parse&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-0686",
"title": "[CVE-2022-0686] CWE-639: Authorization Bypass Through User-Controlled Key",
"description": "Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.8.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-0686 for details",
"cvssScore": 9.1,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"cve": "CVE-2022-0686",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0686?component-type=npm&component-name=url-parse&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-0691",
"title": "[CVE-2022-0691] CWE-639: Authorization Bypass Through User-Controlled Key",
"description": "Authorization Bypass Through User-Controlled Key in NPM url-parse prior to 1.5.9.",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-0691",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0691?component-type=npm&component-name=url-parse&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "HTTP and HTTPS modules that follow redirects.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-0155",
"title": "[CVE-2022-0155] CWE-359: Exposure of Private Information ('Privacy Violation')",
"description": "follow-redirects is vulnerable to Exposure of Private Personal Information to an Unauthorized Actor",
"cvssScore": 6.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N",
"cve": "CVE-2022-0155",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0155?component-type=npm&component-name=follow-redirects&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-0536",
"title": "[CVE-2022-0536] CWE-200: Information Exposure",
"description": "Exposure of Sensitive Information to an Unauthorized Actor in NPM follow-redirects prior to 1.14.8.",
"cvssScore": 5.9,
"cvssVector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"cve": "CVE-2022-0536",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0536?component-type=npm&component-name=follow-redirects&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "JSON Schema validation and specifications",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-3918",
"title": "[CVE-2021-3918] CWE-1321",
"description": "json-schema is vulnerable to Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution')",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-3918",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3918?component-type=npm&component-name=json-schema&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Create your next immutable state by mutating the current one",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-23436",
"title": "[CVE-2021-23436] CWE-843: Access of Resource Using Incompatible Type ('Type Confusion')",
"description": "This affects the package immer before 9.0.6. A type confusion vulnerability can lead to a bypass of CVE-2020-28477 when the user-provided keys used in the path parameter are arrays. In particular, this bypass is possible because the condition (p === \"__proto__\" || p === \"constructor\") in applyPatches_ returns false if p is ['__proto__'] (or ['constructor']). The === operator (strict equality operator) returns false if the operands have different type.",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-23436",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-23436?component-type=npm&component-name=immer&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2021-3757",
"title": "[CVE-2021-3757] CWE-1321",
"description": "immer is vulnerable to Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution')",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-3757",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3757?component-type=npm&component-name=immer&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Process execution for humans",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2019-0206",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2019-0206"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Simplified HTTP request client.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2023-28155",
"title": "[CVE-2023-28155] CWE-918: Server-Side Request Forgery (SSRF)",
"description": "** UNSUPPORTED WHEN ASSIGNED ** The Request package through 2.88.1 for Node.js allows a bypass of SSRF mitigations via an attacker-controller server that does a cross-protocol redirect (HTTP to HTTPS, or HTTPS to HTTP). NOTE: This vulnerability only affects products that are no longer supported by the maintainer.",
"cvssScore": 6.1,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"cve": "CVE-2023-28155",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2023-28155?component-type=npm&component-name=request&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "sonatype-2017-0655",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 5.9,
"cvssVector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2017-0655"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-24999",
"title": "[CVE-2022-24999] CWE-1321",
"description": "qs before 6.10.3, as used in Express before 4.17.3 and other products, allows attackers to cause a Node process hang for an Express application because an __ proto__ key can be used. In many typical Express use cases, an unauthenticated remote attacker can place the attack payload in the query string of the URL that is used to visit the application, such as a[__proto__]=b&a[__proto__]&a[length]=100000000. The fix was backported to qs 6.9.7, 6.8.3, 6.7.3, 6.6.1, 6.5.3, 6.4.1, 6.3.3, and 6.2.4 (and therefore Express 4.17.3, which has \"deps: [email protected]\" in its release description, is not vulnerable).\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-24999 for details",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-24999",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-24999?component-type=npm&component-name=qs&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-0122",
"title": "[CVE-2022-0122] CWE-601: URL Redirection to Untrusted Site ('Open Redirect')",
"description": "forge is vulnerable to URL Redirection to Untrusted Site",
"cvssScore": 6.1,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"cve": "CVE-2022-0122",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-0122?component-type=npm&component-name=node-forge&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-24771",
"title": "[CVE-2022-24771] CWE-347: Improper Verification of Cryptographic Signature",
"description": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"cve": "CVE-2022-24771",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-24771?component-type=npm&component-name=node-forge&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-24772",
"title": "[CVE-2022-24772] CWE-347: Improper Verification of Cryptographic Signature",
"description": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code does not check for tailing garbage bytes after decoding a `DigestInfo` ASN.1 structure. This can allow padding bytes to be removed and garbage data added to forge a signature when a low public exponent is being used. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"cve": "CVE-2022-24772",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-24772?component-type=npm&component-name=node-forge&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-24773",
"title": "[CVE-2022-24773] CWE-347: Improper Verification of Cryptographic Signature",
"description": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. Prior to version 1.3.0, RSA PKCS#1 v1.5 signature verification code does not properly check `DigestInfo` for a proper ASN.1 structure. This can lead to successful verification with signatures that contain invalid structures but a valid digest. The issue has been addressed in `node-forge` version 1.3.0. There are currently no known workarounds.",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"cve": "CVE-2022-24773",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-24773?component-type=npm&component-name=node-forge&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "sonatype-2022-0218",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2022-0218"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Lightweight, beautiful and user-friendly prompts",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-3868",
"title": "[CVE-2021-3868] CWE-1333",
"description": "** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: The CNA or individual who requested this candidate did not associate it with any vulnerability during 2021. Notes: none.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-3868",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3868?component-type=npm&component-name=prompts&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-24999",
"title": "[CVE-2022-24999] CWE-1321",
"description": "qs before 6.10.3, as used in Express before 4.17.3 and other products, allows attackers to cause a Node process hang for an Express application because an __ proto__ key can be used. In many typical Express use cases, an unauthenticated remote attacker can place the attack payload in the query string of the URL that is used to visit the application, such as a[__proto__]=b&a[__proto__]&a[length]=100000000. The fix was backported to qs 6.9.7, 6.8.3, 6.7.3, 6.6.1, 6.5.3, 6.4.1, 6.3.3, and 6.2.4 (and therefore Express 4.17.3, which has \"deps: [email protected]\" in its release description, is not vulnerable).\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-24999 for details",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-24999",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-24999?component-type=npm&component-name=qs&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "React is a JavaScript library for building user interfaces.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2017-0717",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 4.7,
"cvssVector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2017-0717"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Remove Markdown formatting from text",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2019-0106",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2019-0106"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "quote and parse shell commands",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-42740",
"title": "[CVE-2021-42740] CWE-77: Improper Neutralization of Special Elements used in a Command ('Command Injection')",
"description": "The shell-quote package before 1.7.3 for Node.js allows command injection. An attacker can inject unescaped shell metacharacters through a regex designed to support Windows drive letters. If the output of this package is passed to a real shell as a quoted argument to a command with exec(), an attacker can inject arbitrary commands. This is because the Windows drive letter regex character class is {A-z] instead of the correct {A-Za-z]. Several shell metacharacters exist in the space between capital letter Z and lower case letter a, such as the backtick character.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2021-42740 for details",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-42740",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-42740?component-type=npm&component-name=shell-quote&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-32796",
"title": "[CVE-2021-32796] CWE-116: Improper Encoding or Escaping of Output",
"description": "xmldom is an open source pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module. xmldom versions 0.6.0 and older do not correctly escape special characters when serializing elements removed from their ancestor. This may lead to unexpected syntactic changes during XML processing in some downstream applications. This issue has been resolved in version 0.7.0. As a workaround downstream applications can validate the input and reject the maliciously crafted documents.",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"cve": "CVE-2021-32796",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-32796?component-type=npm&component-name=xmldom&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-37616",
"title": "[CVE-2022-37616] CWE-1321",
"description": "A prototype pollution vulnerability exists in the function copy in dom.js in the xmldom (published as @xmldom/xmldom) package before 0.8.3 for Node.js via the p variable. NOTE: the vendor states \"we are in the process of marking this report as invalid\"; however, some third parties takes the position that \"A prototype injection/Prototype pollution is not just when global objects are polluted with recursive merge or deep cloning but also when a target object is polluted.\"",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-37616",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37616?component-type=npm&component-name=xmldom&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-39353",
"title": "[CVE-2022-39353] CWE-1288 CWE-20",
"description": "xmldom is a pure JavaScript W3C standard-based (XML DOM Level 2 Core) `DOMParser` and `XMLSerializer` module. xmldom parses XML that is not well-formed because it contains multiple top level elements, and adds all root nodes to the `childNodes` collection of the `Document`, without reporting any error or throwing. This breaks the assumption that there is only a single root node in the tree, which led to issuance of CVE-2022-39299 as it is a potential issue for dependents. Update to @xmldom/xmldom@~0.7.7, @xmldom/xmldom@~0.8.4 (dist-tag latest) or @xmldom/xmldom@>=0.9.0-beta.4 (dist-tag next). As a workaround, please one of the following approaches depending on your use case: instead of searching for elements in the whole DOM, only search in the `documentElement`or reject a document with a document that has more then 1 `childNode`.",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-39353",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-39353?component-type=npm&component-name=xmldom&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "An elegant lib that converts the chalked (ANSI) text to HTML.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-23424",
"title": "[CVE-2021-23424] CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "This affects all versions of package ansi-html. If an attacker provides a malicious string, it will get stuck processing the input for an extremely long time.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-23424",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-23424?component-type=npm&component-name=ansi-html&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "A well-tested CSS minifier",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2021-1523",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-1523"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-25858",
"title": "[CVE-2022-25858] CWE-1333",
"description": "The package terser before 4.8.1, from 5.0.0 and before 5.14.2 are vulnerable to Regular Expression Denial of Service (ReDoS) due to insecure usage of regular expressions.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-25858 for details",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-25858",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-25858?component-type=npm&component-name=terser&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Tool for transforming styles with JS plugins",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "sonatype-2021-0563",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 6.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-0563"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "a CSS selector parser",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-21222",
"title": "[CVE-2022-21222] CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "The package css-what before 2.1.3 are vulnerable to Regular Expression Denial of Service (ReDoS) due to the usage of insecure regular expression in the re_attr variable of index.js. The exploitation of this vulnerability could be triggered via the parse function.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-21222 for details",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-21222",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-21222?component-type=npm&component-name=css-what&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "performant nth-check parser & compiler",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-3803",
"title": "[CVE-2021-3803] CWE-1333",
"description": "nth-check is vulnerable to Inefficient Regular Expression Complexity",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-3803",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3803?component-type=npm&component-name=nth-check&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Fast, unopinionated, minimalist web framework",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-24999",
"title": "[CVE-2022-24999] CWE-1321",
"description": "qs before 6.10.3, as used in Express before 4.17.3 and other products, allows attackers to cause a Node process hang for an Express application because an __ proto__ key can be used. In many typical Express use cases, an unauthenticated remote attacker can place the attack payload in the query string of the URL that is used to visit the application, such as a[__proto__]=b&a[__proto__]&a[length]=100000000. The fix was backported to qs 6.9.7, 6.8.3, 6.7.3, 6.6.1, 6.5.3, 6.4.1, 6.3.3, and 6.2.4 (and therefore Express 4.17.3, which has \"deps: [email protected]\" in its release description, is not vulnerable).\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-24999 for details",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-24999",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-24999?component-type=npm&component-name=express&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "sonatype-2021-0078",
"title": "1 vulnerability found",
"description": "1 non-CVE vulnerability found. To see more details, please create a free account at https://ossindex.sonatype.org/ and request for this information using your registered account",
"cvssScore": 5.9,
"cvssVector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"reference": "https://ossindex.sonatype.org/vulnerability/sonatype-2021-0078"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Port of Log4js to work with node.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-21704",
"title": "[CVE-2022-21704] CWE-276: Incorrect Default Permissions",
"description": "log4js-node is a port of log4js to node.js. In affected versions default file permissions for log files created by the file, fileSync and dateFile appenders are world-readable (in unix). This could cause problems if log files contain sensitive information. This would affect any users that have not supplied their own permissions for the files via the mode parameter in the config. Users are advised to update.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-21704 for details",
"cvssScore": 5.5,
"cvssVector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"cve": "CVE-2022-21704",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-21704?component-type=npm&component-name=log4js&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "file streams that roll over when size limits, or dates are reached",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-21704",
"title": "[CVE-2022-21704] CWE-276: Incorrect Default Permissions",
"description": "log4js-node is a port of log4js to node.js. In affected versions default file permissions for log files created by the file, fileSync and dateFile appenders are world-readable (in unix). This could cause problems if log files contain sensitive information. This would affect any users that have not supplied their own permissions for the files via the mode parameter in the config. Users are advised to update.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-21704 for details",
"cvssScore": 5.5,
"cvssVector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"cve": "CVE-2022-21704",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-21704?component-type=npm&component-name=streamroller&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-23364",
"title": "[CVE-2021-23364] CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')",
"description": "The package browserslist from 4.0.0 and before 4.16.5 are vulnerable to Regular Expression Denial of Service (ReDoS) during parsing of queries.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2021-23364 for details",
"cvssScore": 5.3,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"cve": "CVE-2021-23364",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-23364?component-type=npm&component-name=browserslist&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Create your next immutable state by mutating the current one",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-23436",
"title": "[CVE-2021-23436] CWE-843: Access of Resource Using Incompatible Type ('Type Confusion')",
"description": "This affects the package immer before 9.0.6. A type confusion vulnerability can lead to a bypass of CVE-2020-28477 when the user-provided keys used in the path parameter are arrays. In particular, this bypass is possible because the condition (p === \"__proto__\" || p === \"constructor\") in applyPatches_ returns false if p is ['__proto__'] (or ['constructor']). The === operator (strict equality operator) returns false if the operands have different type.",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-23436",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-23436?component-type=npm&component-name=immer&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2021-3757",
"title": "[CVE-2021-3757] CWE-1321",
"description": "immer is vulnerable to Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution')",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2021-3757",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3757?component-type=npm&component-name=immer&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Lightweight, beautiful and user-friendly prompts",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2021-3868",
"title": "[CVE-2021-3868] CWE-1333",
"description": "** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: none. Reason: The CNA or individual who requested this candidate did not associate it with any vulnerability during 2021. Notes: none.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2021-3868",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2021-3868?component-type=npm&component-name=prompts&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "utils for webpack loaders",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-37599",
"title": "[CVE-2022-37599] CWE-Other",
"description": "A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the resourcePath variable in interpolateName.js.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-37599",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37599?component-type=npm&component-name=loader-utils&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-37601",
"title": "[CVE-2022-37601] CWE-1321",
"description": "Prototype pollution vulnerability in function parseQuery in parseQuery.js in webpack loader-utils 2.0.0 via the name variable in parseQuery.js.",
"cvssScore": 9.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-37601",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37601?component-type=npm&component-name=loader-utils&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
},
{
"id": "CVE-2022-37603",
"title": "[CVE-2022-37603] CWE-Other",
"description": "A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the url variable in interpolateName.js.",
"cvssScore": 7.5,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"cve": "CVE-2022-37603",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-37603?component-type=npm&component-name=loader-utils&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "JSON for humans.",
"reference": "https://ossindex.sonatype.org/component/pkg:npm/[email protected]?utm_source=auditjs&utm_medium=integration&utm_content=4.0.28",
"vulnerabilities": [
{
"id": "CVE-2022-46175",
"title": "[CVE-2022-46175] CWE-1321",
"description": "JSON5 is an extension to the popular JSON file format that aims to be easier to write and maintain by hand (e.g. for config files). The `parse` method of the JSON5 library before and including versions 1.0.1 and 2.2.1 does not restrict parsing of keys named `__proto__`, allowing specially crafted strings to pollute the prototype of the resulting object. This vulnerability pollutes the prototype of the object returned by `JSON5.parse` and not the global Object prototype, which is the commonly understood definition of Prototype Pollution. However, polluting the prototype of a single object can have significant security impact for an application if the object is later used in trusted operations. This vulnerability could allow an attacker to set arbitrary and unexpected keys on the object returned from `JSON5.parse`. The actual impact will depend on how applications utilize the returned object and how they filter unwanted keys, but could include denial of service, cross-site scripting, elevation of privilege, and in extreme cases, remote code execution. `JSON5.parse` should restrict parsing of `__proto__` keys when parsing JSON strings to objects. As a point of reference, the `JSON.parse` method included in JavaScript ignores `__proto__` keys. Simply changing `JSON5.parse` to `JSON.parse` in the examples above mitigates this vulnerability. This vulnerability is patched in json5 versions 1.0.2, 2.2.2, and later.\n\nSonatype's research suggests that this CVE's details differ from those defined at NVD. See https://ossindex.sonatype.org/vulnerability/CVE-2022-46175 for details",
"cvssScore": 8.8,
"cvssVector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"cve": "CVE-2022-46175",
"reference": "https://ossindex.sonatype.org/vulnerability/CVE-2022-46175?component-type=npm&component-name=json5&utm_source=auditjs&utm_medium=integration&utm_content=4.0.28"
}
]
},
{
"coordinates": "pkg:npm/[email protected]",
"description": "Regular expression for matching ANSI escape codes",