Lookup for vulnerabilities affecting packages.

GET /api/vulnerabilities/89280?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/89280?format=api",
    "vulnerability_id": "VCID-jt7q-nwep-wbfb",
    "summary": "Astro: Cache Poisoning due to incorrect error handling when if-match header is malformed\n### Summary\nRequesting a static JS/CSS resource from the `_astro` path with an incorrect or malformed `if-match` header returns a `500` error with a one-year cache lifetime instead of `412` in some cases. As a result, all subsequent requests to that file — regardless of the `if-match` header — will be served a 5xx error instead of the file until the cache expires.\n\nSending an incorrect or malformed `if-match` header should always return a `412` error without any cache headers, which is not the current behavior.\n\n### Affected Versions\n- `astro@5.14.1`\n- `@astrojs/node@9.4.4`\n\n### Proof of Concept\n\nRun the following command:\n\n```\ncurl -s -o /dev/null -D - <host location>/_astro/_slug_.UTbyeVfw.css -H \"if-match: xxx\"\n```\n\nIf a 5xx error is not returned, inspect the resources via the browser's web inspector and select another CSS/JS file to request until a 5xx error is returned. The behavior generally defaults to a 5xx response. Note that all static files are immutable, so the cache must be purged or disabled to reproduce reliably.\n\nA response similar to the following is expected from CloudFront:\n\n```\nHTTP/2 500 \ncontent-type: text/html\ncontent-length: 166541\ndate: Thu, 09 Apr 2026 12:53:08 GMT\nlast-modified: Wed, 21 Jan 2026 13:40:08 GMT\netag: \"a68349e96c2faf8861c330aeb548441a\"\nx-amz-server-side-encryption: AES256\naccept-ranges: bytes\nserver: AmazonS3\nx-cache: Error from cloudfront\nvia: 1.1 3591be88662e5675a9dc1cc4e0a9c392.cloudfront.net (CloudFront)\nx-amz-cf-pop: ZRH55-P2\nx-amz-cf-id: Rg--RIYCKcA55GZqZXdvu-VTvpxBFFVzV4LBIcKq5pB_hktcrhYbKg==\n```\n\nThe above is not the real server output but the AWS error response triggered when the pods return a 5xx. Below is the output of the same `curl` command issued directly against a pod in Kubernetes:\n\n```\n❯ curl -s -o /dev/null -D - -H \"Host: tagesanzeiger.ch\" 127.0.0.1:3333/_astro/InstallPrompt.astro_astro_type_script_index_0_lang.C0M4llHG.js -H \"if-match: xxx\"\n\nHTTP/1.1 500 Internal Server Error\nCache-Control: public, max-age=31536000, immutable\nAccept-Ranges: bytes\nLast-Modified: Tue, 07 Apr 2026 07:08:03 GMT\nETag: W/\"560-19d66c50c38\"\nContent-Type: text/javascript; charset=utf-8\nDate: Tue, 07 Apr 2026 08:23:54 GMT\nConnection: keep-alive\nKeep-Alive: timeout=5\nTransfer-Encoding: chunked\n```\n\nThis demonstrates that the pod itself returns a `5xx` error instead of `412`. In addition, the response includes a `Cache-Control: public, max-age=31536000, immutable` header.\n\nBecause the testing setup configures `if-match` as part of the cache key, the exploit no longer affects the production application. Prior to that change, the CDN Point of Presence would become cache-poisoned, and any client visiting the affected pages without cached files through the same PoP would receive broken pages. This was reproduced by creating test URLs and visiting them in a browser only after triggering the exploit. The exploited resources returned `5xx` errors instead of the original CSS/JS content, breaking the application.\n\n### Details\nThe findings were analyzed with an LLM, which identified the following file as the likely source: [serve-static.ts](https://github.com/withastro/astro/blob/main/packages/integrations/node/src/serve-static.ts)\n\n```js\n// Lines 129-153\n\nlet forwardError = false;\n\nstream.on('error', (err) => {\n    if (forwardError) {\n        console.error(err.toString());\n        res.writeHead(500);\n        res.end('Internal server error');\n        return;\n    }\n    // File not found, forward to the SSR handler\n    ssr();\n});\nstream.on('headers', (_res: ServerResponse) => {\n    // assets in dist/_astro are hashed and should get the immutable header\n    if (normalizedPathname.startsWith(`/${app.manifest.assetsDir}/`)) {\n        // This is the \"far future\" cache header, used for static files whose name includes their digest hash.\n        // 1 year (31,536,000 seconds) is convention.\n        // Taken from https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control#immutable\n        _res.setHeader('Cache-Control', 'public, max-age=31536000, immutable');\n    }\n});\nstream.on('file', () => {\n    forwardError = true;\n});\nstream.pipe(res);\n```\n\nLLM analysis:\n\n> `send` handles conditional request headers such as `If-Match` internally. When a file is found but the precondition fails (ETag mismatch), `send`:\n>\n> 1. Emits `file` (the file exists) → `forwardError = true`\n> 2. Emits `headers` → `Cache-Control: public, max-age=31536000, immutable` is set on `res`\n> 3. Emits `error` with a `PreconditionFailedError` (status 412)\n>\n> However, the error handler does not inspect the error's status code:\n>\n> ```js\n> stream.on('error', (err) => {\n>     if (forwardError) {\n>         console.error(err.toString());\n>         res.writeHead(500);   // ← always 500, regardless of the actual error\n>         res.end('Internal server error');\n>         return;\n>     }\n>     ssr();\n> });\n> ```\n>\n> Because `Cache-Control` was already set during the `headers` event, the response is sent as:\n>\n> ```\n> HTTP/1.1 500 Internal Server Error\n> Cache-Control: public, max-age=31536000, immutable\n> ```\n\n\n### Impact\n**Cache Poisoning** — An attacker can force edge servers to cache an error page instead of the actual content, rendering one or more assets unavailable to legitimate users until the cache expires.",
    "aliases": [
        {
            "alias": "CVE-2026-41322"
        },
        {
            "alias": "GHSA-c57f-mm3j-27q9"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/110333?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.5",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.5"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843037?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-adapter-sessions-20250207124921",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-adapter-sessions-20250207124921"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843038?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-add-stable-20231208215901",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-add-stable-20231208215901"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843039?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-cloudcannon-fix-20230306211609",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-cloudcannon-fix-20230306211609"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843040?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-collections-20221215161753",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-collections-20221215161753"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843041?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221118232407",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221118232407"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843042?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221118233302",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221118233302"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843043?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221129235256",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221129235256"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843044?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221130135236",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221130135236"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843045?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221205202838",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221205202838"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843046?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221207142945",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221207142945"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843047?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-content-schemas-20221209180144",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-content-schemas-20221209180144"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843048?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-edge-middleware-verification-20240205180401",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-edge-middleware-verification-20240205180401"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843049?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-edge-nested-20240223135627",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-edge-nested-20240223135627"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843050?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-error-overlay-20221130171441",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-error-overlay-20221130171441"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843051?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-error-overlay-20221203190718",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-error-overlay-20221203190718"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843052?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-experimental-assets-20230307131344",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-experimental-assets-20230307131344"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843053?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-experimental-container-20240613104104",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-experimental-container-20240613104104"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843054?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-fixwin-20221216184820",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-fixwin-20221216184820"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843055?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-imgcache-20220929145446",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-imgcache-20220929145446"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843056?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-isr-20240110194136",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-isr-20240110194136"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843057?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-isr-20240125224234",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-isr-20240125224234"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843058?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-join-base-20221208170900",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-join-base-20221208170900"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843059?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-loaders-20230222215040",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-loaders-20230222215040"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843060?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-middleware-20230405160200",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-middleware-20230405160200"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843061?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-node-standalone-20221011210529",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-node-standalone-20221011210529"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843062?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-node-trailing-slash-20240118204342",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-node-trailing-slash-20240118204342"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843063?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-prerender-20221209214618",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-prerender-20221209214618"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843064?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-prerender-20221209224429",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-prerender-20221209224429"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843065?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-prerender-20221215200617",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-prerender-20221215200617"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843066?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-prerender-20221215222121",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-prerender-20221215222121"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843067?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-rc-20220721064837",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-rc-20220721064837"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843068?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-rc-20220722032928",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-rc-20220722032928"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843069?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-rc-20220725043302",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-rc-20220725043302"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843070?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-rc-20220726043527",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-rc-20220726043527"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843071?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-server-islands-20240621194657",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-server-islands-20240621194657"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843072?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-server-islands-20240703133809",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-server-islands-20240703133809"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843073?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-server-islands-20240709194928",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-server-islands-20240709194928"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843074?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.0-toolbar-absolute-paths-20240126155246",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.0-toolbar-absolute-paths-20240126155246"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843075?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.2-next.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.2-next.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843076?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843077?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843078?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843079?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843080?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843081?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843082?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843083?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.1.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.1.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843084?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843085?format=api",
            "purl": "pkg:npm/%40astrojs/node@0.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@0.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843086?format=api",
            "purl": "pkg:npm/%40astrojs/node@1.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@1.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843087?format=api",
            "purl": "pkg:npm/%40astrojs/node@1.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@1.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843088?format=api",
            "purl": "pkg:npm/%40astrojs/node@1.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@1.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843089?format=api",
            "purl": "pkg:npm/%40astrojs/node@2.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@2.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843090?format=api",
            "purl": "pkg:npm/%40astrojs/node@2.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@2.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843091?format=api",
            "purl": "pkg:npm/%40astrojs/node@2.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@2.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843092?format=api",
            "purl": "pkg:npm/%40astrojs/node@3.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@3.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843093?format=api",
            "purl": "pkg:npm/%40astrojs/node@3.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@3.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843094?format=api",
            "purl": "pkg:npm/%40astrojs/node@3.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@3.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843095?format=api",
            "purl": "pkg:npm/%40astrojs/node@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843096?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.0-beta.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.0-beta.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843097?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.0-beta.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.0-beta.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843098?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843099?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843100?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843101?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843102?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843103?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843104?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843105?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843106?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843107?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.1.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.1.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843108?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843109?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843110?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843111?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843112?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843113?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843114?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843115?format=api",
            "purl": "pkg:npm/%40astrojs/node@5.3.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@5.3.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843116?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.0-beta.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.0-beta.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843117?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.0-rc.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.0-rc.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843118?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843119?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843120?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843121?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843122?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843123?format=api",
            "purl": "pkg:npm/%40astrojs/node@6.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@6.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843124?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.0-beta.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.0-beta.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843125?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.0-beta.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.0-beta.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843126?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843127?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843128?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843129?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843130?format=api",
            "purl": "pkg:npm/%40astrojs/node@7.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@7.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843131?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843132?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843133?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843134?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843135?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843136?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843137?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843138?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843139?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.2.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.2.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843140?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843141?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843142?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843143?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843144?format=api",
            "purl": "pkg:npm/%40astrojs/node@8.3.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@8.3.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843145?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.0-alpha.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.0-alpha.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843146?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.0-alpha.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.0-alpha.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843147?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.0-beta.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.0-beta.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843148?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.0-beta.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.0-beta.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74253?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843149?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843150?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843151?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843152?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                },
                {
                    "vulnerability": "VCID-qcs7-nt67-7qe5"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/86140?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843153?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843154?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.1.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.1.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843155?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843156?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843157?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843158?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843159?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843160?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843161?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/843162?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mhk4-vf4t-47g7"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/86109?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968752?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968753?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968754?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968755?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968756?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.4.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.4.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968757?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968758?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968759?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/968760?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-b47j-p5et-rfem"
                },
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-ecmk-efnj-nbfq"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                },
                {
                    "vulnerability": "VCID-mu7k-psez-uudf"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/74205?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.5.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.5.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992798?format=api",
            "purl": "pkg:npm/%40astrojs/node@9.5.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@9.5.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992799?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-alpha.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-alpha.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992800?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-alpha.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-alpha.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992801?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-alpha.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-alpha.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992802?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992803?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992804?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992805?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992806?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992807?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992808?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992809?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992810?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.8",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.8"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/992811?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0-beta.9",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-c6g3-td4y-gbgj"
                },
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0-beta.9"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/113791?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1043761?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1043762?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1043763?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1043764?format=api",
            "purl": "pkg:npm/%40astrojs/node@10.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-jt7q-nwep-wbfb"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/%2540astrojs/node@10.0.4"
        }
    ],
    "references": [
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-41322",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00056",
                    "scoring_system": "epss",
                    "scoring_elements": "0.17763",
                    "published_at": "2026-06-05T12:55:00Z"
                },
                {
                    "value": "0.00056",
                    "scoring_system": "epss",
                    "scoring_elements": "0.17647",
                    "published_at": "2026-06-08T12:55:00Z"
                },
                {
                    "value": "0.00056",
                    "scoring_system": "epss",
                    "scoring_elements": "0.17722",
                    "published_at": "2026-06-07T12:55:00Z"
                },
                {
                    "value": "0.00056",
                    "scoring_system": "epss",
                    "scoring_elements": "0.17756",
                    "published_at": "2026-06-06T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-41322"
        },
        {
            "reference_url": "https://github.com/withastro/astro",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/withastro/astro"
        },
        {
            "reference_url": "https://github.com/withastro/astro/security/advisories/GHSA-c57f-mm3j-27q9",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-04-25T01:48:09Z/"
                }
            ],
            "url": "https://github.com/withastro/astro/security/advisories/GHSA-c57f-mm3j-27q9"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41322",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41322"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-c57f-mm3j-27q9",
            "reference_id": "GHSA-c57f-mm3j-27q9",
            "reference_type": "",
            "scores": [
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-c57f-mm3j-27q9"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 525,
            "name": "Use of Web Browser Cache Containing Sensitive Information",
            "description": "The web application does not use an appropriate caching policy that specifies the extent to which each web page and associated form fields should be cached."
        },
        {
            "cwe_id": 937,
            "name": "OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities",
            "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."
        },
        {
            "cwe_id": 1035,
            "name": "OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities",
            "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."
        }
    ],
    "exploits": [],
    "severity_range_score": "4.0 - 6.9",
    "exploitability": "0.5",
    "weighted_severity": "6.2",
    "risk_score": 3.1,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-jt7q-nwep-wbfb"
}