Lookup for vulnerabilities affecting packages.

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

{
    "url": "http://public2.vulnerablecode.io/api/vulnerabilities/21713?format=api",
    "vulnerability_id": "VCID-pxq3-b7gn-3yah",
    "summary": "qs's arrayLimit bypass in comma parsing allows denial of service\n### Summary\nThe `arrayLimit` option in qs does not enforce limits for comma-separated values when `comma: true` is enabled, allowing attackers to cause denial-of-service via memory exhaustion. This is a bypass of the array limit enforcement, similar to the bracket notation bypass addressed in GHSA-6rw7-vpxm-498p (CVE-2025-15284).\n\n### Details\nWhen the `comma` option is set to `true` (not the default, but configurable in applications), qs allows parsing comma-separated strings as arrays (e.g., `?param=a,b,c` becomes `['a', 'b', 'c']`). However, the limit check for `arrayLimit` (default: 20) and the optional throwOnLimitExceeded occur after the comma-handling logic in `parseArrayValue`, enabling a bypass. This permits creation of arbitrarily large arrays from a single parameter, leading to excessive memory allocation.\n\n**Vulnerable code** (lib/parse.js: lines ~40-50):\n```js\nif (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {\n    return val.split(',');\n}\n\nif (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {\n    throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');\n}\n\nreturn val;\n```\nThe `split(',')` returns the array immediately, skipping the subsequent limit check. Downstream merging via `utils.combine` does not prevent allocation, even if it marks overflows for sparse arrays.This discrepancy allows attackers to send a single parameter with millions of commas (e.g., `?param=,,,,,,,,...`), allocating massive arrays in memory without triggering limits. It bypasses the intent of `arrayLimit`, which is enforced correctly for indexed (`a[0]=`) and bracket (`a[]=`) notations (the latter fixed in v6.14.1 per GHSA-6rw7-vpxm-498p).\n\n### PoC\n**Test 1 - Basic bypass:**\n```\nnpm install qs\n```\n\n```js\nconst qs = require('qs');\n\nconst payload = 'a=' + ','.repeat(25);  // 26 elements after split (bypasses arrayLimit: 5)\nconst options = { comma: true, arrayLimit: 5, throwOnLimitExceeded: true };\n\ntry {\n  const result = qs.parse(payload, options);\n  console.log(result.a.length);  // Outputs: 26 (bypass successful)\n} catch (e) {\n  console.log('Limit enforced:', e.message);  // Not thrown\n}\n```\n**Configuration:**\n- `comma: true`\n- `arrayLimit: 5`\n- `throwOnLimitExceeded: true`\n\nExpected: Throws \"Array limit exceeded\" error.\nActual: Parses successfully, creating an array of length 26.\n\n\n### Impact\nDenial of Service (DoS) via memory exhaustion.\n\n### Suggested Fix\nMove the `arrayLimit` check before the comma split in `parseArrayValue`, and enforce it on the resulting array length. Use `currentArrayLength` (already calculated upstream) for consistency with bracket notation fixes.\n\n**Current code** (lib/parse.js: lines ~40-50):\n```js\nif (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {\n    return val.split(',');\n}\n\nif (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {\n    throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');\n}\n\nreturn val;\n```\n\n**Fixed code:**\n```js\nif (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) {\n    const splitArray = val.split(',');\n    if (splitArray.length > options.arrayLimit - currentArrayLength) {  // Check against remaining limit\n        if (options.throwOnLimitExceeded) {\n            throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');\n        } else {\n            // Optionally convert to object or truncate, per README\n            return splitArray.slice(0, options.arrayLimit - currentArrayLength);\n        }\n    }\n    return splitArray;\n}\n\nif (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {\n    throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');\n}\n\nreturn val;\n```\nThis aligns behavior with indexed and bracket notations, reuses `currentArrayLength`, and respects `throwOnLimitExceeded`. Update README to note the consistent enforcement.",
    "aliases": [
        {
            "alias": "CVE-2026-2391"
        },
        {
            "alias": "GHSA-w7fw-mjwx-w883"
        }
    ],
    "fixed_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1041982?format=api",
            "purl": "pkg:deb/debian/node-qs@6.15.0%2Bds%2B~6.15.0-1?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.15.0%252Bds%252B~6.15.0-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1072649?format=api",
            "purl": "pkg:deb/debian/node-qs@6.15.0%2Bds%2B~6.15.0-2?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.15.0%252Bds%252B~6.15.0-2%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1103634?format=api",
            "purl": "pkg:deb/debian/node-qs@6.15.0%2Bds%2B~6.15.0-3",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.15.0%252Bds%252B~6.15.0-3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1103011?format=api",
            "purl": "pkg:deb/debian/node-qs@6.15.0%2Bds%2B~6.15.0-3?distro=trixie",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.15.0%252Bds%252B~6.15.0-3%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/64159?format=api",
            "purl": "pkg:npm/qs@6.14.2",
            "is_vulnerable": false,
            "affected_by_vulnerabilities": [],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.14.2"
        }
    ],
    "affected_packages": [
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932548?format=api",
            "purl": "pkg:deb/debian/node-qs@6.9.4%2Bds-1%2Bdeb11u1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.9.4%252Bds-1%252Bdeb11u1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054155?format=api",
            "purl": "pkg:deb/debian/node-qs@6.9.4%2Bds-1%2Bdeb11u1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.9.4%252Bds-1%252Bdeb11u1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054156?format=api",
            "purl": "pkg:deb/debian/node-qs@6.11.0%2Bds%2B~6.9.7-3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.11.0%252Bds%252B~6.9.7-3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932546?format=api",
            "purl": "pkg:deb/debian/node-qs@6.11.0%2Bds%2B~6.9.7-3?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.11.0%252Bds%252B~6.9.7-3%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932550?format=api",
            "purl": "pkg:deb/debian/node-qs@6.13.0%2Bds%2B~6.9.16-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.13.0%252Bds%252B~6.9.16-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/1054158?format=api",
            "purl": "pkg:deb/debian/node-qs@6.13.0%2Bds%2B~6.9.16-1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.13.0%252Bds%252B~6.9.16-1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/932549?format=api",
            "purl": "pkg:deb/debian/node-qs@6.14.1%2Bds%2B~6.14.0-1?distro=trixie",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-qs@6.14.1%252Bds%252B~6.14.0-1%3Fdistro=trixie"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150609?format=api",
            "purl": "pkg:npm/qs@0.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150610?format=api",
            "purl": "pkg:npm/qs@0.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150611?format=api",
            "purl": "pkg:npm/qs@0.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150612?format=api",
            "purl": "pkg:npm/qs@0.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150613?format=api",
            "purl": "pkg:npm/qs@0.0.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150614?format=api",
            "purl": "pkg:npm/qs@0.0.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150615?format=api",
            "purl": "pkg:npm/qs@0.0.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.0.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150616?format=api",
            "purl": "pkg:npm/qs@0.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150617?format=api",
            "purl": "pkg:npm/qs@0.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150618?format=api",
            "purl": "pkg:npm/qs@0.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150619?format=api",
            "purl": "pkg:npm/qs@0.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150620?format=api",
            "purl": "pkg:npm/qs@0.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150621?format=api",
            "purl": "pkg:npm/qs@0.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150622?format=api",
            "purl": "pkg:npm/qs@0.4.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.4.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150623?format=api",
            "purl": "pkg:npm/qs@0.4.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.4.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150624?format=api",
            "purl": "pkg:npm/qs@0.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150625?format=api",
            "purl": "pkg:npm/qs@0.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150626?format=api",
            "purl": "pkg:npm/qs@0.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150627?format=api",
            "purl": "pkg:npm/qs@0.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150628?format=api",
            "purl": "pkg:npm/qs@0.5.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150629?format=api",
            "purl": "pkg:npm/qs@0.5.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150630?format=api",
            "purl": "pkg:npm/qs@0.5.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.5.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150631?format=api",
            "purl": "pkg:npm/qs@0.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150632?format=api",
            "purl": "pkg:npm/qs@0.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150633?format=api",
            "purl": "pkg:npm/qs@0.6.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150634?format=api",
            "purl": "pkg:npm/qs@0.6.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150635?format=api",
            "purl": "pkg:npm/qs@0.6.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150636?format=api",
            "purl": "pkg:npm/qs@0.6.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/150637?format=api",
            "purl": "pkg:npm/qs@0.6.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-21ct-wppz-5yav"
                },
                {
                    "vulnerability": "VCID-5aq9-t9ja-kbat"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-hau3-t73v-a7dv"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                },
                {
                    "vulnerability": "VCID-xtsp-7ejg-cqck"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@0.6.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/20762?format=api",
            "purl": "pkg:npm/qs@1.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162822?format=api",
            "purl": "pkg:npm/qs@1.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24348?format=api",
            "purl": "pkg:npm/qs@1.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24349?format=api",
            "purl": "pkg:npm/qs@1.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162823?format=api",
            "purl": "pkg:npm/qs@1.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24350?format=api",
            "purl": "pkg:npm/qs@1.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24367?format=api",
            "purl": "pkg:npm/qs@1.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@1.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343114?format=api",
            "purl": "pkg:npm/qs@2.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343115?format=api",
            "purl": "pkg:npm/qs@2.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343116?format=api",
            "purl": "pkg:npm/qs@2.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343117?format=api",
            "purl": "pkg:npm/qs@2.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343118?format=api",
            "purl": "pkg:npm/qs@2.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343119?format=api",
            "purl": "pkg:npm/qs@2.2.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.2.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343120?format=api",
            "purl": "pkg:npm/qs@2.2.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.2.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343121?format=api",
            "purl": "pkg:npm/qs@2.2.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.2.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343122?format=api",
            "purl": "pkg:npm/qs@2.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24351?format=api",
            "purl": "pkg:npm/qs@2.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162824?format=api",
            "purl": "pkg:npm/qs@2.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24352?format=api",
            "purl": "pkg:npm/qs@2.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24353?format=api",
            "purl": "pkg:npm/qs@2.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162825?format=api",
            "purl": "pkg:npm/qs@2.4.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.4.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24354?format=api",
            "purl": "pkg:npm/qs@2.4.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@2.4.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24355?format=api",
            "purl": "pkg:npm/qs@3.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@3.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24356?format=api",
            "purl": "pkg:npm/qs@3.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@3.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24357?format=api",
            "purl": "pkg:npm/qs@4.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@4.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162826?format=api",
            "purl": "pkg:npm/qs@5.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@5.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162827?format=api",
            "purl": "pkg:npm/qs@5.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@5.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162828?format=api",
            "purl": "pkg:npm/qs@5.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@5.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24358?format=api",
            "purl": "pkg:npm/qs@5.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@5.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24359?format=api",
            "purl": "pkg:npm/qs@6.0.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.0.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162829?format=api",
            "purl": "pkg:npm/qs@6.0.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.0.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162830?format=api",
            "purl": "pkg:npm/qs@6.0.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.0.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24360?format=api",
            "purl": "pkg:npm/qs@6.0.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.0.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24368?format=api",
            "purl": "pkg:npm/qs@6.0.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.0.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24361?format=api",
            "purl": "pkg:npm/qs@6.1.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.1.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24362?format=api",
            "purl": "pkg:npm/qs@6.1.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.1.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24369?format=api",
            "purl": "pkg:npm/qs@6.1.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.1.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24363?format=api",
            "purl": "pkg:npm/qs@6.2.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.2.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/162831?format=api",
            "purl": "pkg:npm/qs@6.2.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.2.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24364?format=api",
            "purl": "pkg:npm/qs@6.2.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.2.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24370?format=api",
            "purl": "pkg:npm/qs@6.2.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.2.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81194?format=api",
            "purl": "pkg:npm/qs@6.2.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.2.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24365?format=api",
            "purl": "pkg:npm/qs@6.3.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.3.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24366?format=api",
            "purl": "pkg:npm/qs@6.3.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-3nf9-4fhn-fkg9"
                },
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.3.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/24371?format=api",
            "purl": "pkg:npm/qs@6.3.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.3.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81193?format=api",
            "purl": "pkg:npm/qs@6.3.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.3.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144831?format=api",
            "purl": "pkg:npm/qs@6.4.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.4.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81192?format=api",
            "purl": "pkg:npm/qs@6.4.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.4.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144829?format=api",
            "purl": "pkg:npm/qs@6.5.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.5.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343123?format=api",
            "purl": "pkg:npm/qs@6.5.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.5.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343124?format=api",
            "purl": "pkg:npm/qs@6.5.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.5.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81191?format=api",
            "purl": "pkg:npm/qs@6.5.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.5.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144833?format=api",
            "purl": "pkg:npm/qs@6.6.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.6.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81190?format=api",
            "purl": "pkg:npm/qs@6.6.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.6.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144832?format=api",
            "purl": "pkg:npm/qs@6.7.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.7.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343125?format=api",
            "purl": "pkg:npm/qs@6.7.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.7.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343126?format=api",
            "purl": "pkg:npm/qs@6.7.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.7.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81189?format=api",
            "purl": "pkg:npm/qs@6.7.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.7.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144830?format=api",
            "purl": "pkg:npm/qs@6.8.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.8.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343127?format=api",
            "purl": "pkg:npm/qs@6.8.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.8.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343128?format=api",
            "purl": "pkg:npm/qs@6.8.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.8.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81188?format=api",
            "purl": "pkg:npm/qs@6.8.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.8.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144828?format=api",
            "purl": "pkg:npm/qs@6.9.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343129?format=api",
            "purl": "pkg:npm/qs@6.9.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343130?format=api",
            "purl": "pkg:npm/qs@6.9.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343131?format=api",
            "purl": "pkg:npm/qs@6.9.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343132?format=api",
            "purl": "pkg:npm/qs@6.9.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343133?format=api",
            "purl": "pkg:npm/qs@6.9.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343134?format=api",
            "purl": "pkg:npm/qs@6.9.6",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.6"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81187?format=api",
            "purl": "pkg:npm/qs@6.9.7",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.9.7"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/144834?format=api",
            "purl": "pkg:npm/qs@6.10.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.10.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343135?format=api",
            "purl": "pkg:npm/qs@6.10.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.10.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/343136?format=api",
            "purl": "pkg:npm/qs@6.10.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-bcuh-2e2c-53gy"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.10.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/81186?format=api",
            "purl": "pkg:npm/qs@6.10.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.10.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867822?format=api",
            "purl": "pkg:npm/qs@6.10.4",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.10.4"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867823?format=api",
            "purl": "pkg:npm/qs@6.10.5",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.10.5"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867824?format=api",
            "purl": "pkg:npm/qs@6.11.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.11.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867825?format=api",
            "purl": "pkg:npm/qs@6.11.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.11.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867826?format=api",
            "purl": "pkg:npm/qs@6.11.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.11.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867827?format=api",
            "purl": "pkg:npm/qs@6.12.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.12.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867828?format=api",
            "purl": "pkg:npm/qs@6.12.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.12.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867829?format=api",
            "purl": "pkg:npm/qs@6.12.2",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.12.2"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867830?format=api",
            "purl": "pkg:npm/qs@6.12.3",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.12.3"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867831?format=api",
            "purl": "pkg:npm/qs@6.13.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.13.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867832?format=api",
            "purl": "pkg:npm/qs@6.13.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.13.1"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/867833?format=api",
            "purl": "pkg:npm/qs@6.14.0",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-9ykq-nq81-4fcp"
                },
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.14.0"
        },
        {
            "url": "http://public2.vulnerablecode.io/api/packages/67182?format=api",
            "purl": "pkg:npm/qs@6.14.1",
            "is_vulnerable": true,
            "affected_by_vulnerabilities": [
                {
                    "vulnerability": "VCID-pxq3-b7gn-3yah"
                }
            ],
            "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/qs@6.14.1"
        }
    ],
    "references": [
        {
            "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-2391.json",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "5.3",
                    "scoring_system": "cvssv3",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L"
                }
            ],
            "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-2391.json"
        },
        {
            "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-2391",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "0.0005",
                    "scoring_system": "epss",
                    "scoring_elements": "0.15459",
                    "published_at": "2026-05-07T12:55:00Z"
                },
                {
                    "value": "0.0005",
                    "scoring_system": "epss",
                    "scoring_elements": "0.15339",
                    "published_at": "2026-05-05T12:55:00Z"
                },
                {
                    "value": "0.0005",
                    "scoring_system": "epss",
                    "scoring_elements": "0.15468",
                    "published_at": "2026-04-29T12:55:00Z"
                },
                {
                    "value": "0.0005",
                    "scoring_system": "epss",
                    "scoring_elements": "0.15484",
                    "published_at": "2026-04-21T12:55:00Z"
                },
                {
                    "value": "0.0005",
                    "scoring_system": "epss",
                    "scoring_elements": "0.15525",
                    "published_at": "2026-04-24T12:55:00Z"
                },
                {
                    "value": "0.0005",
                    "scoring_system": "epss",
                    "scoring_elements": "0.15523",
                    "published_at": "2026-04-26T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18264",
                    "published_at": "2026-04-13T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18517",
                    "published_at": "2026-04-04T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18227",
                    "published_at": "2026-04-07T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.1831",
                    "published_at": "2026-04-08T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18363",
                    "published_at": "2026-04-11T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18316",
                    "published_at": "2026-04-12T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18208",
                    "published_at": "2026-04-16T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18462",
                    "published_at": "2026-04-02T12:55:00Z"
                },
                {
                    "value": "0.00058",
                    "scoring_system": "epss",
                    "scoring_elements": "0.18221",
                    "published_at": "2026-04-18T12:55:00Z"
                }
            ],
            "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-2391"
        },
        {
            "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-2391",
            "reference_id": "",
            "reference_type": "",
            "scores": [],
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-2391"
        },
        {
            "reference_url": "https://github.com/ljharb/qs",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "3.7",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "LOW",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/ljharb/qs"
        },
        {
            "reference_url": "https://github.com/ljharb/qs/commit/f6a7abff1f13d644db9b05fe4f2c98ada6bf8482",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "3.7",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "6.3",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N"
                },
                {
                    "value": "LOW",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-12T15:00:21Z/"
                }
            ],
            "url": "https://github.com/ljharb/qs/commit/f6a7abff1f13d644db9b05fe4f2c98ada6bf8482"
        },
        {
            "reference_url": "https://github.com/ljharb/qs/security/advisories/GHSA-w7fw-mjwx-w883",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "3.7",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "LOW",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                },
                {
                    "value": "6.3",
                    "scoring_system": "cvssv4",
                    "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N"
                },
                {
                    "value": "LOW",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                },
                {
                    "value": "Track",
                    "scoring_system": "ssvc",
                    "scoring_elements": "SSVCv2/E:P/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-12T15:00:21Z/"
                }
            ],
            "url": "https://github.com/ljharb/qs/security/advisories/GHSA-w7fw-mjwx-w883"
        },
        {
            "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2391",
            "reference_id": "",
            "reference_type": "",
            "scores": [
                {
                    "value": "3.7",
                    "scoring_system": "cvssv3.1",
                    "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L"
                },
                {
                    "value": "LOW",
                    "scoring_system": "generic_textual",
                    "scoring_elements": ""
                }
            ],
            "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2391"
        },
        {
            "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127940",
            "reference_id": "1127940",
            "reference_type": "",
            "scores": [],
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127940"
        },
        {
            "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439353",
            "reference_id": "2439353",
            "reference_type": "",
            "scores": [],
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439353"
        },
        {
            "reference_url": "https://github.com/advisories/GHSA-w7fw-mjwx-w883",
            "reference_id": "GHSA-w7fw-mjwx-w883",
            "reference_type": "",
            "scores": [
                {
                    "value": "LOW",
                    "scoring_system": "cvssv3.1_qr",
                    "scoring_elements": ""
                }
            ],
            "url": "https://github.com/advisories/GHSA-w7fw-mjwx-w883"
        }
    ],
    "weaknesses": [
        {
            "cwe_id": 20,
            "name": "Improper Input Validation",
            "description": "The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly."
        },
        {
            "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."
        },
        {
            "cwe_id": 179,
            "name": "Incorrect Behavior Order: Early Validation",
            "description": "The product validates input before applying protection mechanisms that modify the input, which could allow an attacker to bypass the validation via dangerous inputs that only arise after the modification."
        }
    ],
    "exploits": [],
    "severity_range_score": "0.1 - 6.3",
    "exploitability": "0.5",
    "weighted_severity": "5.7",
    "risk_score": 2.9,
    "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-pxq3-b7gn-3yah"
}