forked from ag-grid/ag-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosv-scanner.toml
More file actions
496 lines (373 loc) · 14.1 KB
/
osv-scanner.toml
File metadata and controls
496 lines (373 loc) · 14.1 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
# we ignore all octokit packages because we dont have any incoming/user driven requests to it and only
# use to create and upload releases
[[PackageOverrides]]
name = "octokit"
ignore = true
[[PackageOverrides]]
name = "@octokit/endpoint"
ignore = true
[[PackageOverrides]]
name = "@octokit/app"
ignore = true
[[PackageOverrides]]
name = "@octokit/core"
ignore = true
[[PackageOverrides]]
name = "@octokit/oauth-app"
ignore = true
[[PackageOverrides]]
name = "@octokit/plugin-paginate-graphql"
ignore = true
[[PackageOverrides]]
name = "@octokit/plugin-paginate-rest"
ignore = true
[[PackageOverrides]]
name = "@octokit/plugin-rest-endpoint-methods"
ignore = true
[[PackageOverrides]]
name = "@octokit/plugin-retry"
ignore = true
[[PackageOverrides]]
name = "@octokit/plugin-throttling"
ignore = true
[[PackageOverrides]]
name = "@octokit/request-error"
ignore = true
[[PackageOverrides]]
name = "@octokit/request"
ignore = true
[[PackageOverrides]]
name = "@octokit/types"
ignore = true
# We don't use vite to serve files outside of development
[[PackageOverrides]]
name = "vite"
ignore = true
# node-forge is only used for angular dev server
[[PackageOverrides]]
name = "node-forge"
ignore = true
[[IgnoredVulns]]
id = "GHSA-3xgq-45jj-v275"
reason = "cross-spawn is used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-593f-38f6-jp5m"
reason = "middleware is used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-x2rg-q646-7m2v"
reason = "middleware is used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-xvf7-4v9q-58w6"
reason = "We do not use form-data directly and where it is used is only for testing or examples"
[[IgnoredVulns]]
id = "GHSA-4r6h-8v6p-xvw6"
reason = "sheetjs is only used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-5pgg-2g8v-p4x9"
reason = "sheetjs is only used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-f886-m6hf-6m8v"
reason = "brace-expansion is only used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-fjxv-7rqg-78g4"
reason = "We do not use form-data directly and where it is used is only for testing or examples"
[[IgnoredVulns]]
id = "GHSA-4vvj-4cpr-p986"
reason = "Vulnerable versions are only used in webpack-dev-server which is not used in production code"
[[IgnoredVulns]]
id = "GHSA-mvw6-62qv-vmqf"
reason = "We do not use koa directly and where it is used is only for testing or dev use"
[[IgnoredVulns]]
id = "GHSA-jgmv-j7ww-jx2x"
reason = "We do not use koa directly and where it is used is only for testing or dev use"
[[IgnoredVulns]]
id = "GHSA-52f5-9888-hmc6"
reason = "Low risk and determined to not be exploitable in our use case"
[[IgnoredVulns]]
id = "GHSA-67mh-4wv8-2f99"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-3p68-rc4w-qgx5"
reason = "We only use axios for build and testing"
[[IgnoredVulns]]
id = "GHSA-fvcv-3m26-pcqx"
reason = "We only use axios for build and testing"
[[IgnoredVulns]]
id = "GHSA-qj83-cq47-w5f8"
reason = "We only use axios for build and testing"
[[IgnoredVulns]]
id = "GHSA-5j98-mcp5-4vw2"
reason = "glob not accessible to end user/external users"
[[IgnoredVulns]]
id = "GHSA-58c5-g7wp-6w37"
reason = "@angular/common is only used for dev/testing, or for libraries, it is not using angular http client"
[[IgnoredVulns]]
id = "GHSA-v4hv-rgfq-gp49"
reason = "@angular/common is only used for dev/testing, or for libraries, it is not used for SVG or MathML attributes"
[[IgnoredVulns]]
id = "GHSA-mh29-5h37-fv8m"
reason = "js-yaml is only used in development/testing - it's not used in the final production build"
[[IgnoredVulns]]
id = "GHSA-4fh9-h7wg-q85m"
reason = "mdast-util-to-hast is only used in dev files we control"
[[IgnoredVulns]]
id = "GHSA-6rw7-vpxm-498p"
reason = "qs is not used on the server"
[[IgnoredVulns]]
id = "GHSA-jrmj-c5cx-3cw6"
reason = "Angular version used determined by end user"
[[IgnoredVulns]]
id = "GHSA-36hm-qxxp-pg3m"
reason = "Preact not used directly and not accessible to end users/external users"
[[IgnoredVulns]]
id = "GHSA-8qq5-rm4j-mr97"
reason = "tar not used directly and not accessible to end users/external users"
[[IgnoredVulns]]
id = "GHSA-r6q2-hw4h-h46w"
reason = "tar not used directly and not accessible to end users/external users"
[[IgnoredVulns]]
id = "GHSA-7h2j-956f-4vf2"
reason = "braces-expansion not used directly and not accessible to end users/external users"
[[IgnoredVulns]]
id = "GHSA-34x7-hfp2-rc4v"
reason = "tar not used directly and not accessible to end users/external users"
[[IgnoredVulns]]
id = "GHSA-prjf-86w9-mfqv"
reason = "Downstream dependency of angular - the user would be responsible for XSS in the i18n pipeline"
[[IgnoredVulns]]
id = "GHSA-2g4f-4pwh-qvx6"
reason = "ajv is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-43fc-jf86-j433"
reason = "axios is only used during development"
[[IgnoredVulns]]
id = "GHSA-5rq4-664w-9x2c"
reason = "basic-ftp is used in dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-6v7q-wjvx-w8wg"
reason = "basic-ftp is used in dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-rp42-5vxx-qpwr"
reason = "basic-ftp is used in dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-7gcc-r8m5-44qm"
reason = "koa is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-23c5-xmqv-rm74"
reason = "minimatch is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-3ppc-4f35-3m26"
reason = "minimatch is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-7r86-cg39-jmmj"
reason = "minimatch is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-w7fw-mjwx-w883"
reason = "qs is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-mw96-cpmx-2vgc"
reason = "rollup is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-5c6j-r48x-rmvq"
reason = "serialize-javascript is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-83g3-92jg-28cx"
reason = "tar is used in build & dev - not included in final production build"
[[IgnoredVulns]]
id = "GHSA-wc8c-qw6v-h7f6"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-vpq2-c234-7xj6"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-33hq-fvwr-56pm"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-8qm3-746x-r74r"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-73rr-hh4g-fpgx"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-v2wj-7wpq-c8vv"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-5pq2-9x2x-5p6w"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-gq3j-xvxp-8hrf"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-p6xx-57qc-3wxr"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-q5qw-h33p-qvwr"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-wf6x-7x77-mvgw"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-xpqw-6gx7-v673"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-qffp-2rhf-9h96"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-qpx9-hpmf-5gmw"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-38r7-794h-5758"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-8fgc-7cc6-rx7x"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-g93w-mfhg-p222"
reason = "Downstream dependency of angular - the user would be responsible for XSS in the i18n pipeline"
[[IgnoredVulns]]
id = "GHSA-cfw5-2vxh-hr84"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-mwv9-gp5h-frr4"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-46wh-pxpv-q5gq"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-5v7r-6r5c-r473"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-j47w-4g3g-c36v"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-v8w9-8mx6-g223"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-9ppj-qmqm-q256"
reason = "tar not used directly and not accessible to end users/external users"
[[IgnoredVulns]]
id = "GHSA-92pp-h63x-v22m"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-wh4c-j3r5-mjhp"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-22cc-p3c6-wpvm"
reason = "h3 is used by astro during development and doesn't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-4hxc-9384-m385"
reason = "h3 is used by astro during development and doesn't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-72gr-qfp7-vwhw"
reason = "h3 is used by astro during development and doesn't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-wr4h-v87w-p3r7"
reason = "h3 is used by astro during development and doesn't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-737v-mqg7-c878"
reason = "Dev/build deps that don't appear in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-39q2-94rc-95cp"
reason = "dompurify is only used in developer tools, and is not exposed to customers"
[[IgnoredVulns]]
id = "GHSA-cj63-jhhr-wcxv"
reason = "dompurify is only used in developer tools, and is not exposed to customers"
[[IgnoredVulns]]
id = "GHSA-cjmm-f4jc-qw8r"
reason = "dompurify is only used in developer tools, and is not exposed to customers"
[[IgnoredVulns]]
id = "GHSA-h8r8-wccr-v5f2"
reason = "dompurify is only used in developer tools, and is not exposed to customers"
[[IgnoredVulns]]
id = "GHSA-38f7-945m-qr2g"
reason = "effect is only used in development"
[[IgnoredVulns]]
id = "GHSA-rf6f-7fwh-wjgh"
reason = "flatted is only used in development"
[[IgnoredVulns]]
id = "GHSA-r4q5-vmmm-2653"
reason = "follow-redirects is only used in development"
[[IgnoredVulns]]
id = "GHSA-2qvq-rjwj-gvw9"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-2w6w-674q-4c4q"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-3mfm-83xf-c92r"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-442j-39wm-28r2"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-7rx3-28cr-v5wh"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-9cx6-37pm-9jff"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-xhpv-hc6g-r9c6"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-xjpj-3mr7-gcpf"
reason = "handlebars is only used in test and dev"
[[IgnoredVulns]]
id = "GHSA-26pp-8wgv-hjvm"
reason = "hono is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-458j-xx4x-4375"
reason = "hono is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-r5rp-j6wh-rvv4"
reason = "hono is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-wmmm-f939-6g9c"
reason = "hono is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-xf4j-xp2r-rqqx"
reason = "hono is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-xpcf-pg52-r92g"
reason = "hono is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-37ch-88jc-xwx2"
reason = "path-to-regexp is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-27v5-c462-wpq7"
reason = "path-to-regexp is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-j3q9-mxjg-w52f"
reason = "path-to-regexp is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-3v7f-55p6-f55p"
reason = "picomatch is only used in testing and dev tools"
[[IgnoredVulns]]
id = "GHSA-c2c7-rcm5-vvqj"
reason = "picomatch is only used in testing and dev tools"
[[IgnoredVulns]]
id = "GHSA-qj8w-gfj5-8c6v"
reason = "serialize-javascript is only used in testing and dev tools"
[[IgnoredVulns]]
id = "GHSA-v3rj-xjv7-4jmq"
reason = "smol-toml is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-677m-j7p3-52f9"
reason = "socket.io-parser is only used in testing tools"
[[IgnoredVulns]]
id = "GHSA-48c2-rrv3-qjmp"
reason = "yaml is only used in dev tools"
[[IgnoredVulns]]
id = "GHSA-2v35-w6hq-6mfw"
reason = "@xmldom/xmldom is used only at build time by @vusion/webfonts-generator for webfont generation - not included in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-f6ww-3ggp-fr8h"
reason = "@xmldom/xmldom is used only at build time by @vusion/webfonts-generator for webfont generation - not included in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-j759-j44w-7fr8"
reason = "@xmldom/xmldom is used only at build time by @vusion/webfonts-generator for webfont generation - not included in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-x6wf-f3px-wcqx"
reason = "@xmldom/xmldom is used only at build time by @vusion/webfonts-generator for webfont generation - not included in the libraries distributables"
[[IgnoredVulns]]
id = "GHSA-w5hq-g745-h8pq"
reason = "uuid is only used by dev/test tooling (jest-junit, jest-text-transformer, sockjs, request) - not included in the libraries distributables"