Vulnerability Instance
Lookup for vulnerabilities affecting packages.
GET /api/vulnerabilities/89506?format=api
{ "url": "http://public2.vulnerablecode.io/api/vulnerabilities/89506?format=api", "vulnerability_id": "VCID-a7rh-r1sn-2udh", "summary": "ApostropheCMS: User Enumeration via Timing Side Channel in Password Reset Endpoint\n## Summary\n\nThe password reset endpoint (`/api/v1/@apostrophecms/login/reset-request`) exhibits a measurable timing side channel that allows unauthenticated attackers to enumerate valid usernames and email addresses. When a user is not found, the handler returns after a fixed 2-second artificial delay, but when a valid user is found, it performs database writes and SMTP operations with no equivalent delay normalization, producing a distinguishable timing profile.\n\n## Details\n\nThe `resetRequest` handler in `modules/@apostrophecms/login/index.js` attempts to obscure the user-not-found path with an artificial delay, but fails to normalize the timing of the user-found path:\n\n**User not found — fixed 2000ms delay** (`index.js:309-314`):\n```javascript\nif (!user) {\n await wait(); // wait = (t = 2000) => Promise.delay(t)\n self.apos.util.error(\n `Reset password request error - the user ${email} doesn\\`t exist.`\n );\n return;\n}\n```\n\n**User found — variable-duration DB + SMTP operations, no artificial delay** (`index.js:323-355`):\n```javascript\nconst reset = self.apos.util.generateId();\nuser.passwordReset = reset;\nuser.passwordResetAt = new Date();\nawait self.apos.user.update(req, user, { permissions: false });\n// ... URL construction ...\nawait self.email(req, 'passwordResetEmail', {\n user,\n url: parsed.toString(),\n site\n}, {\n to: user.email,\n subject: req.t('apostrophe:passwordResetRequest', { site })\n});\n```\n\nThe user-found path includes a MongoDB `update()` call and an SMTP `email()` send, which together produce response times that differ measurably from the fixed 2000ms delay. Depending on SMTP server latency, responses for valid users will either be noticeably faster (local/fast SMTP) or slower (remote SMTP) than the constant 2-second delay for invalid users.\n\nAdditionally, the `getPasswordResetUser` method (`index.js:664-666`) accepts both username and email via an `$or` query, enabling enumeration of both identifiers:\n```javascript\nconst criteriaOr = [\n { username: email },\n { email }\n];\n```\n\nThere is no rate limiting on the reset endpoint. The `checkLoginAttempts` throttle (`index.js:978`) is only applied to the login flow, allowing unlimited rapid probing of the reset endpoint.\n\n## PoC\n\n**Prerequisites:** An Apostrophe instance with `passwordReset: true` enabled in `@apostrophecms/login` configuration.\n\n**Step 1 — Baseline invalid user timing:**\n```bash\nfor i in $(seq 1 10); do\n curl -s -o /dev/null -w \"%{time_total}\\n\" \\\n -X POST http://localhost:3000/api/v1/@apostrophecms/login/reset-request \\\n -H \"Content-Type: application/json\" \\\n -d '{\"email\": \"nonexistent-user-'$i'@example.com\"}'\ndone\n# Expected: all responses cluster tightly around 2.0xx seconds\n```\n\n**Step 2 — Test known valid user:**\n```bash\nfor i in $(seq 1 10); do\n curl -s -o /dev/null -w \"%{time_total}\\n\" \\\n -X POST http://localhost:3000/api/v1/@apostrophecms/login/reset-request \\\n -H \"Content-Type: application/json\" \\\n -d '{\"email\": \"admin\"}'\ndone\n# Expected: response times differ from 2.0s baseline (faster with local SMTP, slower with remote SMTP)\n```\n\n**Step 3 — Statistical comparison:**\nThe two distributions will show a measurable divergence. With a local mail server, valid-user responses typically complete in <500ms. With a remote SMTP server, valid-user responses may take 3-5+ seconds. Either way, the timing is distinguishable from the fixed 2000ms invalid-user delay.\n\n## Impact\n\n- **Account enumeration:** An unauthenticated attacker can determine whether a given username or email address has an account in the Apostrophe instance.\n- **Credential stuffing preparation:** Confirmed valid accounts can be targeted with credential stuffing attacks using breached password databases.\n- **Phishing targeting:** Knowledge of valid accounts enables targeted phishing campaigns against confirmed users.\n- **No rate limiting:** The absence of throttling on the reset endpoint allows high-speed automated enumeration.\n- **Mitigating factor:** The `passwordReset` option defaults to `false` (`index.js:62`), so only instances that explicitly enable password reset are affected.\n\n## Recommended Fix\n\nNormalize all code paths to a constant minimum duration, ensuring the response time does not leak whether a user was found:\n\n```javascript\nasync resetRequest(req) {\n const MIN_RESPONSE_TIME = 2000;\n const startTime = Date.now();\n const site = (req.headers.host || '').replace(/:\\d+$/, '');\n const email = self.apos.launder.string(req.body.email);\n if (!email.length) {\n throw self.apos.error('invalid', req.t('apostrophe:loginResetEmailRequired'));\n }\n let user;\n try {\n user = await self.getPasswordResetUser(req.body.email);\n } catch (e) {\n self.apos.util.error(e);\n }\n if (!user) {\n self.apos.util.error(\n `Reset password request error - the user ${email} doesn\\`t exist.`\n );\n } else if (!user.email) {\n self.apos.util.error(\n `Reset password request error - the user ${user.username} doesn\\`t have an email.`\n );\n } else {\n const reset = self.apos.util.generateId();\n user.passwordReset = reset;\n user.passwordResetAt = new Date();\n await self.apos.user.update(req, user, { permissions: false });\n let port = (req.headers.host || '').split(':')[1];\n if (!port || [ '80', '443' ].includes(port)) {\n port = '';\n } else {\n port = `:${port}`;\n }\n const parsed = new URL(\n req.absoluteUrl,\n self.apos.baseUrl\n ? undefined\n : `${req.protocol}://${req.hostname}${port}`\n );\n parsed.pathname = self.login();\n parsed.search = '?';\n parsed.searchParams.append('reset', reset);\n parsed.searchParams.append('email', user.email);\n try {\n await self.email(req, 'passwordResetEmail', {\n user,\n url: parsed.toString(),\n site\n }, {\n to: user.email,\n subject: req.t('apostrophe:passwordResetRequest', { site })\n });\n } catch (err) {\n self.apos.util.error(`Error while sending email to ${user.email}`, err);\n }\n }\n // Pad all paths to a constant minimum duration\n const elapsed = Date.now() - startTime;\n if (elapsed < MIN_RESPONSE_TIME) {\n await Promise.delay(MIN_RESPONSE_TIME - elapsed);\n }\n},\n```\n\nAdditionally, consider applying rate limiting to the `reset-request` endpoint to prevent high-speed enumeration attempts.", "aliases": [ { "alias": "CVE-2026-33877" }, { "alias": "GHSA-mj7r-x3h3-7rmr" } ], "fixed_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/110566?format=api", "purl": "pkg:npm/apostrophe@4.29.0", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.29.0" } ], "affected_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/267830?format=api", "purl": "pkg:npm/apostrophe@0.3.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/267831?format=api", "purl": "pkg:npm/apostrophe@0.3.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/267832?format=api", "purl": "pkg:npm/apostrophe@0.3.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/267833?format=api", "purl": "pkg:npm/apostrophe@0.3.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/267834?format=api", "purl": "pkg:npm/apostrophe@0.3.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/267835?format=api", "purl": "pkg:npm/apostrophe@0.3.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/267836?format=api", "purl": "pkg:npm/apostrophe@0.3.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/267837?format=api", "purl": "pkg:npm/apostrophe@0.3.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/267838?format=api", "purl": "pkg:npm/apostrophe@0.3.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/267839?format=api", "purl": "pkg:npm/apostrophe@0.3.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/267840?format=api", "purl": "pkg:npm/apostrophe@0.3.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/267841?format=api", "purl": "pkg:npm/apostrophe@0.3.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/267842?format=api", "purl": "pkg:npm/apostrophe@0.3.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/267843?format=api", "purl": "pkg:npm/apostrophe@0.3.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/267844?format=api", "purl": "pkg:npm/apostrophe@0.3.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/267845?format=api", "purl": "pkg:npm/apostrophe@0.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/267846?format=api", "purl": "pkg:npm/apostrophe@0.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/267847?format=api", "purl": "pkg:npm/apostrophe@0.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/267848?format=api", "purl": "pkg:npm/apostrophe@0.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/267849?format=api", "purl": "pkg:npm/apostrophe@0.4.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/267850?format=api", "purl": "pkg:npm/apostrophe@0.4.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/267851?format=api", "purl": "pkg:npm/apostrophe@0.4.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/267852?format=api", "purl": "pkg:npm/apostrophe@0.4.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/267853?format=api", "purl": "pkg:npm/apostrophe@0.4.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/267854?format=api", "purl": "pkg:npm/apostrophe@0.4.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/267855?format=api", "purl": "pkg:npm/apostrophe@0.4.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/267856?format=api", "purl": "pkg:npm/apostrophe@0.4.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/267857?format=api", "purl": "pkg:npm/apostrophe@0.4.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/267858?format=api", "purl": "pkg:npm/apostrophe@0.4.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/267859?format=api", "purl": "pkg:npm/apostrophe@0.4.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/267860?format=api", "purl": "pkg:npm/apostrophe@0.4.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/267861?format=api", "purl": "pkg:npm/apostrophe@0.4.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/267862?format=api", "purl": "pkg:npm/apostrophe@0.4.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/267863?format=api", "purl": "pkg:npm/apostrophe@0.4.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/267864?format=api", "purl": "pkg:npm/apostrophe@0.4.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/267866?format=api", "purl": "pkg:npm/apostrophe@0.4.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/267868?format=api", "purl": "pkg:npm/apostrophe@0.4.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/267870?format=api", "purl": "pkg:npm/apostrophe@0.4.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/267872?format=api", "purl": "pkg:npm/apostrophe@0.4.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/267874?format=api", "purl": "pkg:npm/apostrophe@0.4.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/267876?format=api", "purl": "pkg:npm/apostrophe@0.4.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/267878?format=api", "purl": "pkg:npm/apostrophe@0.4.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/267880?format=api", "purl": "pkg:npm/apostrophe@0.4.27", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.27" }, { "url": "http://public2.vulnerablecode.io/api/packages/267882?format=api", "purl": "pkg:npm/apostrophe@0.4.28", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.28" }, { "url": "http://public2.vulnerablecode.io/api/packages/267883?format=api", "purl": "pkg:npm/apostrophe@0.4.29", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.29" }, { "url": "http://public2.vulnerablecode.io/api/packages/267884?format=api", "purl": "pkg:npm/apostrophe@0.4.30", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.30" }, { "url": "http://public2.vulnerablecode.io/api/packages/267885?format=api", "purl": "pkg:npm/apostrophe@0.4.31", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.31" }, { "url": "http://public2.vulnerablecode.io/api/packages/267886?format=api", "purl": "pkg:npm/apostrophe@0.4.32", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.32" }, { "url": "http://public2.vulnerablecode.io/api/packages/267887?format=api", "purl": "pkg:npm/apostrophe@0.4.33", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.33" }, { "url": "http://public2.vulnerablecode.io/api/packages/267888?format=api", "purl": "pkg:npm/apostrophe@0.4.34", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.34" }, { "url": "http://public2.vulnerablecode.io/api/packages/267889?format=api", "purl": "pkg:npm/apostrophe@0.4.35", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.35" }, { "url": "http://public2.vulnerablecode.io/api/packages/267890?format=api", "purl": "pkg:npm/apostrophe@0.4.36", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.36" }, { "url": "http://public2.vulnerablecode.io/api/packages/267891?format=api", "purl": "pkg:npm/apostrophe@0.4.37", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.37" }, { "url": "http://public2.vulnerablecode.io/api/packages/267892?format=api", "purl": "pkg:npm/apostrophe@0.4.38", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.38" }, { "url": "http://public2.vulnerablecode.io/api/packages/267893?format=api", "purl": "pkg:npm/apostrophe@0.4.39", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.39" }, { "url": "http://public2.vulnerablecode.io/api/packages/267894?format=api", "purl": "pkg:npm/apostrophe@0.4.40", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.40" }, { "url": "http://public2.vulnerablecode.io/api/packages/267895?format=api", "purl": "pkg:npm/apostrophe@0.4.41", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.41" }, { "url": "http://public2.vulnerablecode.io/api/packages/267896?format=api", "purl": "pkg:npm/apostrophe@0.4.42", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.42" }, { "url": "http://public2.vulnerablecode.io/api/packages/267897?format=api", "purl": "pkg:npm/apostrophe@0.4.43", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.43" }, { "url": "http://public2.vulnerablecode.io/api/packages/267898?format=api", "purl": "pkg:npm/apostrophe@0.4.44", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.44" }, { "url": "http://public2.vulnerablecode.io/api/packages/267899?format=api", "purl": "pkg:npm/apostrophe@0.4.45", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.45" }, { "url": "http://public2.vulnerablecode.io/api/packages/267900?format=api", "purl": "pkg:npm/apostrophe@0.4.46", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.46" }, { "url": "http://public2.vulnerablecode.io/api/packages/267901?format=api", "purl": "pkg:npm/apostrophe@0.4.47", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.47" }, { "url": "http://public2.vulnerablecode.io/api/packages/267902?format=api", "purl": "pkg:npm/apostrophe@0.4.48", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.48" }, { "url": "http://public2.vulnerablecode.io/api/packages/267903?format=api", "purl": "pkg:npm/apostrophe@0.4.49", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.49" }, { "url": "http://public2.vulnerablecode.io/api/packages/267904?format=api", "purl": "pkg:npm/apostrophe@0.4.50", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.50" }, { "url": "http://public2.vulnerablecode.io/api/packages/267905?format=api", "purl": "pkg:npm/apostrophe@0.4.51", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.51" }, { "url": "http://public2.vulnerablecode.io/api/packages/267906?format=api", "purl": "pkg:npm/apostrophe@0.4.52", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.52" }, { "url": "http://public2.vulnerablecode.io/api/packages/267907?format=api", "purl": "pkg:npm/apostrophe@0.4.53", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.53" }, { "url": "http://public2.vulnerablecode.io/api/packages/267908?format=api", "purl": "pkg:npm/apostrophe@0.4.54", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.54" }, { "url": "http://public2.vulnerablecode.io/api/packages/267909?format=api", "purl": "pkg:npm/apostrophe@0.4.55", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.55" }, { "url": "http://public2.vulnerablecode.io/api/packages/267910?format=api", "purl": "pkg:npm/apostrophe@0.4.56", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.56" }, { "url": "http://public2.vulnerablecode.io/api/packages/267911?format=api", "purl": "pkg:npm/apostrophe@0.4.57", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.57" }, { "url": "http://public2.vulnerablecode.io/api/packages/267912?format=api", "purl": "pkg:npm/apostrophe@0.4.58", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.58" }, { "url": "http://public2.vulnerablecode.io/api/packages/267913?format=api", "purl": "pkg:npm/apostrophe@0.4.59", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.59" }, { "url": "http://public2.vulnerablecode.io/api/packages/267914?format=api", "purl": "pkg:npm/apostrophe@0.4.60", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.60" }, { "url": "http://public2.vulnerablecode.io/api/packages/267915?format=api", "purl": "pkg:npm/apostrophe@0.4.61", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.61" }, { "url": "http://public2.vulnerablecode.io/api/packages/267916?format=api", "purl": "pkg:npm/apostrophe@0.4.62", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.62" }, { "url": "http://public2.vulnerablecode.io/api/packages/267917?format=api", "purl": "pkg:npm/apostrophe@0.4.63", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.63" }, { "url": "http://public2.vulnerablecode.io/api/packages/267918?format=api", "purl": "pkg:npm/apostrophe@0.4.64", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.64" }, { "url": "http://public2.vulnerablecode.io/api/packages/267919?format=api", "purl": "pkg:npm/apostrophe@0.4.65", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.65" }, { "url": "http://public2.vulnerablecode.io/api/packages/267920?format=api", "purl": "pkg:npm/apostrophe@0.4.66", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.66" }, { "url": "http://public2.vulnerablecode.io/api/packages/267921?format=api", "purl": "pkg:npm/apostrophe@0.4.67", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.67" }, { "url": "http://public2.vulnerablecode.io/api/packages/267922?format=api", "purl": "pkg:npm/apostrophe@0.4.68", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.68" }, { "url": "http://public2.vulnerablecode.io/api/packages/267923?format=api", "purl": "pkg:npm/apostrophe@0.4.69", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.69" }, { "url": "http://public2.vulnerablecode.io/api/packages/267924?format=api", "purl": "pkg:npm/apostrophe@0.4.70", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.70" }, { "url": "http://public2.vulnerablecode.io/api/packages/267925?format=api", "purl": "pkg:npm/apostrophe@0.4.71", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.71" }, { "url": "http://public2.vulnerablecode.io/api/packages/267926?format=api", "purl": "pkg:npm/apostrophe@0.4.72", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.72" }, { "url": "http://public2.vulnerablecode.io/api/packages/267927?format=api", "purl": "pkg:npm/apostrophe@0.4.73", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.73" }, { "url": "http://public2.vulnerablecode.io/api/packages/267928?format=api", "purl": "pkg:npm/apostrophe@0.4.74", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.74" }, { "url": "http://public2.vulnerablecode.io/api/packages/267929?format=api", "purl": "pkg:npm/apostrophe@0.4.75", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.75" }, { "url": "http://public2.vulnerablecode.io/api/packages/267930?format=api", "purl": "pkg:npm/apostrophe@0.4.76", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.76" }, { "url": "http://public2.vulnerablecode.io/api/packages/267931?format=api", "purl": "pkg:npm/apostrophe@0.4.77", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.77" }, { "url": "http://public2.vulnerablecode.io/api/packages/267932?format=api", "purl": "pkg:npm/apostrophe@0.4.78", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.78" }, { "url": "http://public2.vulnerablecode.io/api/packages/267933?format=api", "purl": "pkg:npm/apostrophe@0.4.79", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.79" }, { "url": "http://public2.vulnerablecode.io/api/packages/267934?format=api", "purl": "pkg:npm/apostrophe@0.4.80", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.80" }, { "url": "http://public2.vulnerablecode.io/api/packages/267935?format=api", "purl": "pkg:npm/apostrophe@0.4.81", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.81" }, { "url": "http://public2.vulnerablecode.io/api/packages/267936?format=api", "purl": "pkg:npm/apostrophe@0.4.82", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.82" }, { "url": "http://public2.vulnerablecode.io/api/packages/267937?format=api", "purl": "pkg:npm/apostrophe@0.4.83", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.83" }, { "url": "http://public2.vulnerablecode.io/api/packages/267938?format=api", "purl": "pkg:npm/apostrophe@0.4.84", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.84" }, { "url": "http://public2.vulnerablecode.io/api/packages/267939?format=api", "purl": "pkg:npm/apostrophe@0.4.85", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.85" }, { "url": "http://public2.vulnerablecode.io/api/packages/267940?format=api", "purl": "pkg:npm/apostrophe@0.4.86", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.86" }, { "url": "http://public2.vulnerablecode.io/api/packages/267941?format=api", "purl": "pkg:npm/apostrophe@0.4.87", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.87" }, { "url": "http://public2.vulnerablecode.io/api/packages/267942?format=api", "purl": "pkg:npm/apostrophe@0.4.88", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.88" }, { "url": "http://public2.vulnerablecode.io/api/packages/267943?format=api", "purl": "pkg:npm/apostrophe@0.4.89", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.89" }, { "url": "http://public2.vulnerablecode.io/api/packages/267944?format=api", "purl": "pkg:npm/apostrophe@0.4.90", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.90" }, { "url": "http://public2.vulnerablecode.io/api/packages/267945?format=api", "purl": "pkg:npm/apostrophe@0.4.91", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.91" }, { "url": "http://public2.vulnerablecode.io/api/packages/267946?format=api", "purl": "pkg:npm/apostrophe@0.4.92", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.92" }, { "url": "http://public2.vulnerablecode.io/api/packages/267947?format=api", "purl": "pkg:npm/apostrophe@0.4.93", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.93" }, { "url": "http://public2.vulnerablecode.io/api/packages/267948?format=api", "purl": "pkg:npm/apostrophe@0.4.94", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.94" }, { "url": "http://public2.vulnerablecode.io/api/packages/267949?format=api", "purl": "pkg:npm/apostrophe@0.4.95", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.95" }, { "url": "http://public2.vulnerablecode.io/api/packages/267950?format=api", "purl": "pkg:npm/apostrophe@0.4.96", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.96" }, { "url": "http://public2.vulnerablecode.io/api/packages/267951?format=api", "purl": "pkg:npm/apostrophe@0.4.97", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.97" }, { "url": "http://public2.vulnerablecode.io/api/packages/267952?format=api", "purl": "pkg:npm/apostrophe@0.4.98", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.98" }, { "url": "http://public2.vulnerablecode.io/api/packages/267953?format=api", "purl": "pkg:npm/apostrophe@0.4.99", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.99" }, { "url": "http://public2.vulnerablecode.io/api/packages/267954?format=api", "purl": "pkg:npm/apostrophe@0.4.100", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.100" }, { "url": "http://public2.vulnerablecode.io/api/packages/267955?format=api", "purl": "pkg:npm/apostrophe@0.4.101", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.101" }, { "url": "http://public2.vulnerablecode.io/api/packages/267956?format=api", "purl": "pkg:npm/apostrophe@0.4.102", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.102" }, { "url": "http://public2.vulnerablecode.io/api/packages/267957?format=api", "purl": "pkg:npm/apostrophe@0.4.103", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.103" }, { "url": "http://public2.vulnerablecode.io/api/packages/267958?format=api", "purl": "pkg:npm/apostrophe@0.4.104", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.104" }, { "url": "http://public2.vulnerablecode.io/api/packages/267959?format=api", "purl": "pkg:npm/apostrophe@0.4.105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.105" }, { "url": "http://public2.vulnerablecode.io/api/packages/267960?format=api", "purl": "pkg:npm/apostrophe@0.4.106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.106" }, { "url": "http://public2.vulnerablecode.io/api/packages/267961?format=api", "purl": "pkg:npm/apostrophe@0.4.107", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.107" }, { "url": "http://public2.vulnerablecode.io/api/packages/267962?format=api", "purl": "pkg:npm/apostrophe@0.4.108", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.108" }, { "url": "http://public2.vulnerablecode.io/api/packages/267963?format=api", "purl": "pkg:npm/apostrophe@0.4.109", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.109" }, { "url": "http://public2.vulnerablecode.io/api/packages/267964?format=api", "purl": "pkg:npm/apostrophe@0.4.110", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.110" }, { "url": "http://public2.vulnerablecode.io/api/packages/267965?format=api", "purl": "pkg:npm/apostrophe@0.4.111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.111" }, { "url": "http://public2.vulnerablecode.io/api/packages/267966?format=api", "purl": "pkg:npm/apostrophe@0.4.112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.112" }, { "url": "http://public2.vulnerablecode.io/api/packages/267967?format=api", "purl": "pkg:npm/apostrophe@0.4.113", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.113" }, { "url": "http://public2.vulnerablecode.io/api/packages/267968?format=api", "purl": "pkg:npm/apostrophe@0.4.114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.114" }, { "url": "http://public2.vulnerablecode.io/api/packages/267969?format=api", "purl": "pkg:npm/apostrophe@0.4.115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.115" }, { "url": "http://public2.vulnerablecode.io/api/packages/267970?format=api", "purl": "pkg:npm/apostrophe@0.4.116", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.116" }, { "url": "http://public2.vulnerablecode.io/api/packages/267971?format=api", "purl": "pkg:npm/apostrophe@0.4.117", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.117" }, { "url": "http://public2.vulnerablecode.io/api/packages/267972?format=api", "purl": "pkg:npm/apostrophe@0.4.118", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.118" }, { "url": "http://public2.vulnerablecode.io/api/packages/267973?format=api", "purl": "pkg:npm/apostrophe@0.4.119", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.119" }, { "url": "http://public2.vulnerablecode.io/api/packages/267974?format=api", "purl": "pkg:npm/apostrophe@0.4.120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.120" }, { "url": "http://public2.vulnerablecode.io/api/packages/267975?format=api", "purl": "pkg:npm/apostrophe@0.4.121", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.121" }, { "url": "http://public2.vulnerablecode.io/api/packages/267976?format=api", "purl": "pkg:npm/apostrophe@0.4.122", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.122" }, { "url": "http://public2.vulnerablecode.io/api/packages/267977?format=api", "purl": "pkg:npm/apostrophe@0.4.123", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.123" }, { "url": "http://public2.vulnerablecode.io/api/packages/267978?format=api", "purl": "pkg:npm/apostrophe@0.4.124", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.124" }, { "url": "http://public2.vulnerablecode.io/api/packages/267979?format=api", "purl": "pkg:npm/apostrophe@0.4.125", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.125" }, { "url": "http://public2.vulnerablecode.io/api/packages/267980?format=api", "purl": "pkg:npm/apostrophe@0.4.126", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.126" }, { "url": "http://public2.vulnerablecode.io/api/packages/267981?format=api", "purl": "pkg:npm/apostrophe@0.4.127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.127" }, { "url": "http://public2.vulnerablecode.io/api/packages/267982?format=api", "purl": "pkg:npm/apostrophe@0.4.128", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.128" }, { "url": "http://public2.vulnerablecode.io/api/packages/267983?format=api", "purl": "pkg:npm/apostrophe@0.4.129", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.129" }, { "url": "http://public2.vulnerablecode.io/api/packages/267984?format=api", "purl": "pkg:npm/apostrophe@0.4.130", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.130" }, { "url": "http://public2.vulnerablecode.io/api/packages/267985?format=api", "purl": "pkg:npm/apostrophe@0.4.131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.131" }, { "url": "http://public2.vulnerablecode.io/api/packages/267986?format=api", "purl": "pkg:npm/apostrophe@0.4.132", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.132" }, { "url": "http://public2.vulnerablecode.io/api/packages/267987?format=api", "purl": "pkg:npm/apostrophe@0.4.133", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.133" }, { "url": "http://public2.vulnerablecode.io/api/packages/267988?format=api", "purl": "pkg:npm/apostrophe@0.4.134", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.134" }, { "url": "http://public2.vulnerablecode.io/api/packages/267989?format=api", "purl": "pkg:npm/apostrophe@0.4.135", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.135" }, { "url": "http://public2.vulnerablecode.io/api/packages/267990?format=api", "purl": "pkg:npm/apostrophe@0.4.136", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.136" }, { "url": "http://public2.vulnerablecode.io/api/packages/267991?format=api", "purl": "pkg:npm/apostrophe@0.4.137", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.137" }, { "url": "http://public2.vulnerablecode.io/api/packages/267992?format=api", "purl": "pkg:npm/apostrophe@0.4.138", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.138" }, { "url": "http://public2.vulnerablecode.io/api/packages/267993?format=api", "purl": "pkg:npm/apostrophe@0.4.139", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.139" }, { "url": "http://public2.vulnerablecode.io/api/packages/267994?format=api", "purl": "pkg:npm/apostrophe@0.4.140", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.140" }, { "url": "http://public2.vulnerablecode.io/api/packages/267995?format=api", "purl": "pkg:npm/apostrophe@0.4.142", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.142" }, { "url": "http://public2.vulnerablecode.io/api/packages/267996?format=api", "purl": "pkg:npm/apostrophe@0.4.143", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.143" }, { "url": "http://public2.vulnerablecode.io/api/packages/267997?format=api", "purl": "pkg:npm/apostrophe@0.4.144", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.144" }, { "url": "http://public2.vulnerablecode.io/api/packages/267998?format=api", "purl": "pkg:npm/apostrophe@0.4.145", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.145" }, { "url": "http://public2.vulnerablecode.io/api/packages/267999?format=api", "purl": "pkg:npm/apostrophe@0.4.146", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.146" }, { "url": "http://public2.vulnerablecode.io/api/packages/268000?format=api", "purl": "pkg:npm/apostrophe@0.4.147", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.147" }, { "url": "http://public2.vulnerablecode.io/api/packages/268001?format=api", "purl": "pkg:npm/apostrophe@0.4.148", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.148" }, { "url": "http://public2.vulnerablecode.io/api/packages/268002?format=api", "purl": "pkg:npm/apostrophe@0.4.149", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.149" }, { "url": "http://public2.vulnerablecode.io/api/packages/268003?format=api", "purl": "pkg:npm/apostrophe@0.4.152", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.152" }, { "url": "http://public2.vulnerablecode.io/api/packages/268004?format=api", "purl": "pkg:npm/apostrophe@0.4.154", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.154" }, { "url": "http://public2.vulnerablecode.io/api/packages/268005?format=api", "purl": "pkg:npm/apostrophe@0.4.155", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.155" }, { "url": "http://public2.vulnerablecode.io/api/packages/268006?format=api", "purl": "pkg:npm/apostrophe@0.4.156", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.156" }, { "url": "http://public2.vulnerablecode.io/api/packages/268007?format=api", "purl": "pkg:npm/apostrophe@0.4.157", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.157" }, { "url": "http://public2.vulnerablecode.io/api/packages/268008?format=api", "purl": "pkg:npm/apostrophe@0.4.158", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.158" }, { "url": "http://public2.vulnerablecode.io/api/packages/268009?format=api", "purl": "pkg:npm/apostrophe@0.4.159", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.159" }, { "url": "http://public2.vulnerablecode.io/api/packages/268010?format=api", "purl": "pkg:npm/apostrophe@0.4.160", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.160" }, { "url": "http://public2.vulnerablecode.io/api/packages/268011?format=api", "purl": "pkg:npm/apostrophe@0.4.161", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.161" }, { "url": "http://public2.vulnerablecode.io/api/packages/268012?format=api", "purl": "pkg:npm/apostrophe@0.4.162", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.162" }, { "url": "http://public2.vulnerablecode.io/api/packages/268013?format=api", "purl": "pkg:npm/apostrophe@0.4.163", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.163" }, { "url": "http://public2.vulnerablecode.io/api/packages/268014?format=api", "purl": "pkg:npm/apostrophe@0.4.164", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.164" }, { "url": "http://public2.vulnerablecode.io/api/packages/268015?format=api", "purl": "pkg:npm/apostrophe@0.4.165", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.165" }, { "url": "http://public2.vulnerablecode.io/api/packages/268016?format=api", "purl": "pkg:npm/apostrophe@0.4.166", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.166" }, { "url": "http://public2.vulnerablecode.io/api/packages/268017?format=api", "purl": "pkg:npm/apostrophe@0.4.167", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.167" }, { "url": "http://public2.vulnerablecode.io/api/packages/268018?format=api", "purl": "pkg:npm/apostrophe@0.4.168", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.168" }, { "url": "http://public2.vulnerablecode.io/api/packages/268019?format=api", "purl": "pkg:npm/apostrophe@0.4.169", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.169" }, { "url": "http://public2.vulnerablecode.io/api/packages/268020?format=api", "purl": "pkg:npm/apostrophe@0.4.170", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.170" }, { "url": "http://public2.vulnerablecode.io/api/packages/268021?format=api", "purl": "pkg:npm/apostrophe@0.4.171", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.171" }, { "url": "http://public2.vulnerablecode.io/api/packages/268022?format=api", "purl": "pkg:npm/apostrophe@0.4.172", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.172" }, { "url": "http://public2.vulnerablecode.io/api/packages/268023?format=api", "purl": "pkg:npm/apostrophe@0.4.173", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.173" }, { "url": "http://public2.vulnerablecode.io/api/packages/268024?format=api", "purl": "pkg:npm/apostrophe@0.4.174", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.174" }, { "url": "http://public2.vulnerablecode.io/api/packages/268025?format=api", "purl": "pkg:npm/apostrophe@0.4.175", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.175" }, { "url": "http://public2.vulnerablecode.io/api/packages/268026?format=api", "purl": "pkg:npm/apostrophe@0.4.176", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.176" }, { "url": "http://public2.vulnerablecode.io/api/packages/268027?format=api", "purl": "pkg:npm/apostrophe@0.4.177", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.177" }, { "url": "http://public2.vulnerablecode.io/api/packages/268028?format=api", "purl": "pkg:npm/apostrophe@0.4.179", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.179" }, { "url": "http://public2.vulnerablecode.io/api/packages/268029?format=api", "purl": "pkg:npm/apostrophe@0.4.180", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.180" }, { "url": "http://public2.vulnerablecode.io/api/packages/268030?format=api", "purl": "pkg:npm/apostrophe@0.4.181", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.181" }, { "url": "http://public2.vulnerablecode.io/api/packages/268031?format=api", "purl": "pkg:npm/apostrophe@0.4.182", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.182" }, { "url": "http://public2.vulnerablecode.io/api/packages/268032?format=api", "purl": "pkg:npm/apostrophe@0.4.183", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.183" }, { "url": "http://public2.vulnerablecode.io/api/packages/268033?format=api", "purl": "pkg:npm/apostrophe@0.4.184", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.184" }, { "url": "http://public2.vulnerablecode.io/api/packages/268034?format=api", "purl": "pkg:npm/apostrophe@0.4.185", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.185" }, { "url": "http://public2.vulnerablecode.io/api/packages/268035?format=api", "purl": "pkg:npm/apostrophe@0.4.186", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.186" }, { "url": "http://public2.vulnerablecode.io/api/packages/268036?format=api", "purl": "pkg:npm/apostrophe@0.4.187", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.187" }, { "url": "http://public2.vulnerablecode.io/api/packages/268037?format=api", "purl": "pkg:npm/apostrophe@0.4.188", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.188" }, { "url": "http://public2.vulnerablecode.io/api/packages/268038?format=api", "purl": "pkg:npm/apostrophe@0.4.189", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.189" }, { "url": "http://public2.vulnerablecode.io/api/packages/268039?format=api", "purl": "pkg:npm/apostrophe@0.4.190", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.190" }, { "url": "http://public2.vulnerablecode.io/api/packages/268040?format=api", "purl": "pkg:npm/apostrophe@0.4.191", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.191" }, { "url": "http://public2.vulnerablecode.io/api/packages/268041?format=api", "purl": "pkg:npm/apostrophe@0.4.192", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.192" }, { "url": "http://public2.vulnerablecode.io/api/packages/268042?format=api", "purl": "pkg:npm/apostrophe@0.4.194", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.194" }, { "url": "http://public2.vulnerablecode.io/api/packages/268043?format=api", "purl": "pkg:npm/apostrophe@0.4.195", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.195" }, { "url": "http://public2.vulnerablecode.io/api/packages/268044?format=api", "purl": "pkg:npm/apostrophe@0.4.196", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.196" }, { "url": "http://public2.vulnerablecode.io/api/packages/268045?format=api", "purl": "pkg:npm/apostrophe@0.4.197", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.197" }, { "url": "http://public2.vulnerablecode.io/api/packages/268046?format=api", "purl": "pkg:npm/apostrophe@0.4.198", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.198" }, { "url": "http://public2.vulnerablecode.io/api/packages/268047?format=api", "purl": "pkg:npm/apostrophe@0.4.199", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.199" }, { "url": "http://public2.vulnerablecode.io/api/packages/268048?format=api", "purl": "pkg:npm/apostrophe@0.4.200", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.200" }, { "url": "http://public2.vulnerablecode.io/api/packages/268049?format=api", "purl": "pkg:npm/apostrophe@0.4.201", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.201" }, { "url": "http://public2.vulnerablecode.io/api/packages/268050?format=api", "purl": "pkg:npm/apostrophe@0.4.202", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.202" }, { "url": "http://public2.vulnerablecode.io/api/packages/268051?format=api", "purl": "pkg:npm/apostrophe@0.4.203", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.203" }, { "url": "http://public2.vulnerablecode.io/api/packages/268052?format=api", "purl": "pkg:npm/apostrophe@0.4.204", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.204" }, { "url": "http://public2.vulnerablecode.io/api/packages/268053?format=api", "purl": "pkg:npm/apostrophe@0.4.205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.205" }, { "url": "http://public2.vulnerablecode.io/api/packages/268054?format=api", "purl": "pkg:npm/apostrophe@0.4.206", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.206" }, { "url": "http://public2.vulnerablecode.io/api/packages/268055?format=api", "purl": "pkg:npm/apostrophe@0.4.207", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.207" }, { "url": "http://public2.vulnerablecode.io/api/packages/268056?format=api", "purl": "pkg:npm/apostrophe@0.4.208", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.208" }, { "url": "http://public2.vulnerablecode.io/api/packages/268057?format=api", "purl": "pkg:npm/apostrophe@0.4.209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.209" }, { "url": "http://public2.vulnerablecode.io/api/packages/268058?format=api", "purl": "pkg:npm/apostrophe@0.4.210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.210" }, { "url": "http://public2.vulnerablecode.io/api/packages/268059?format=api", "purl": "pkg:npm/apostrophe@0.4.211", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.211" }, { "url": "http://public2.vulnerablecode.io/api/packages/268060?format=api", "purl": "pkg:npm/apostrophe@0.4.212", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.212" }, { "url": "http://public2.vulnerablecode.io/api/packages/268061?format=api", "purl": "pkg:npm/apostrophe@0.4.213", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.213" }, { "url": "http://public2.vulnerablecode.io/api/packages/268062?format=api", "purl": "pkg:npm/apostrophe@0.4.214", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.214" }, { "url": "http://public2.vulnerablecode.io/api/packages/268063?format=api", "purl": "pkg:npm/apostrophe@0.4.215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.215" }, { "url": "http://public2.vulnerablecode.io/api/packages/268064?format=api", "purl": "pkg:npm/apostrophe@0.4.216", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.216" }, { "url": "http://public2.vulnerablecode.io/api/packages/268065?format=api", "purl": "pkg:npm/apostrophe@0.4.217", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.217" }, { "url": "http://public2.vulnerablecode.io/api/packages/268066?format=api", "purl": "pkg:npm/apostrophe@0.4.218", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.218" }, { "url": "http://public2.vulnerablecode.io/api/packages/268067?format=api", "purl": "pkg:npm/apostrophe@0.4.219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.219" }, { "url": "http://public2.vulnerablecode.io/api/packages/268068?format=api", "purl": "pkg:npm/apostrophe@0.4.220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.220" }, { "url": "http://public2.vulnerablecode.io/api/packages/268069?format=api", "purl": "pkg:npm/apostrophe@0.4.221", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.221" }, { "url": "http://public2.vulnerablecode.io/api/packages/268070?format=api", "purl": "pkg:npm/apostrophe@0.4.222", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.222" }, { "url": "http://public2.vulnerablecode.io/api/packages/268071?format=api", "purl": "pkg:npm/apostrophe@0.4.223", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.223" }, { "url": "http://public2.vulnerablecode.io/api/packages/268072?format=api", "purl": "pkg:npm/apostrophe@0.4.224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.224" }, { "url": "http://public2.vulnerablecode.io/api/packages/268073?format=api", "purl": "pkg:npm/apostrophe@0.4.225", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.225" }, { "url": "http://public2.vulnerablecode.io/api/packages/268074?format=api", "purl": "pkg:npm/apostrophe@0.4.227", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.227" }, { "url": "http://public2.vulnerablecode.io/api/packages/268075?format=api", "purl": "pkg:npm/apostrophe@0.4.228", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.228" }, { "url": "http://public2.vulnerablecode.io/api/packages/268076?format=api", "purl": "pkg:npm/apostrophe@0.4.229", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.229" }, { "url": "http://public2.vulnerablecode.io/api/packages/268077?format=api", "purl": "pkg:npm/apostrophe@0.4.230", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.230" }, { "url": "http://public2.vulnerablecode.io/api/packages/268078?format=api", "purl": "pkg:npm/apostrophe@0.4.231", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.231" }, { "url": "http://public2.vulnerablecode.io/api/packages/268079?format=api", "purl": "pkg:npm/apostrophe@0.4.232", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.232" }, { "url": "http://public2.vulnerablecode.io/api/packages/268080?format=api", "purl": "pkg:npm/apostrophe@0.4.233", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.233" }, { "url": "http://public2.vulnerablecode.io/api/packages/268081?format=api", "purl": "pkg:npm/apostrophe@0.4.234", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.234" }, { "url": "http://public2.vulnerablecode.io/api/packages/268082?format=api", "purl": "pkg:npm/apostrophe@0.4.235", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.235" }, { "url": "http://public2.vulnerablecode.io/api/packages/268083?format=api", "purl": "pkg:npm/apostrophe@0.4.236", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.236" }, { "url": "http://public2.vulnerablecode.io/api/packages/268084?format=api", "purl": "pkg:npm/apostrophe@0.4.237", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.237" }, { "url": "http://public2.vulnerablecode.io/api/packages/268085?format=api", "purl": "pkg:npm/apostrophe@0.4.238", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.238" }, { "url": "http://public2.vulnerablecode.io/api/packages/268086?format=api", "purl": "pkg:npm/apostrophe@0.4.239", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.239" }, { "url": "http://public2.vulnerablecode.io/api/packages/268087?format=api", "purl": "pkg:npm/apostrophe@0.4.240", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.240" }, { "url": "http://public2.vulnerablecode.io/api/packages/268088?format=api", "purl": "pkg:npm/apostrophe@0.4.241", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.241" }, { "url": "http://public2.vulnerablecode.io/api/packages/268089?format=api", "purl": "pkg:npm/apostrophe@0.5.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268090?format=api", "purl": "pkg:npm/apostrophe@0.5.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268091?format=api", "purl": "pkg:npm/apostrophe@0.5.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268092?format=api", "purl": "pkg:npm/apostrophe@0.5.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/268093?format=api", "purl": "pkg:npm/apostrophe@0.5.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/268094?format=api", "purl": "pkg:npm/apostrophe@0.5.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/268095?format=api", "purl": "pkg:npm/apostrophe@0.5.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/268096?format=api", "purl": "pkg:npm/apostrophe@0.5.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/268097?format=api", "purl": "pkg:npm/apostrophe@0.5.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/268098?format=api", "purl": "pkg:npm/apostrophe@0.5.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/268099?format=api", "purl": "pkg:npm/apostrophe@0.5.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/268100?format=api", "purl": "pkg:npm/apostrophe@0.5.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/268101?format=api", "purl": "pkg:npm/apostrophe@0.5.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/268102?format=api", "purl": "pkg:npm/apostrophe@0.5.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/268103?format=api", "purl": "pkg:npm/apostrophe@0.5.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/268104?format=api", "purl": "pkg:npm/apostrophe@0.5.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/268105?format=api", "purl": "pkg:npm/apostrophe@0.5.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/268106?format=api", "purl": "pkg:npm/apostrophe@0.5.18", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.18" }, { "url": "http://public2.vulnerablecode.io/api/packages/268107?format=api", "purl": "pkg:npm/apostrophe@0.5.19", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.19" }, { "url": "http://public2.vulnerablecode.io/api/packages/268108?format=api", "purl": "pkg:npm/apostrophe@0.5.20", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.20" }, { "url": "http://public2.vulnerablecode.io/api/packages/268109?format=api", "purl": "pkg:npm/apostrophe@0.5.21", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.21" }, { "url": "http://public2.vulnerablecode.io/api/packages/268110?format=api", "purl": "pkg:npm/apostrophe@0.5.22", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.22" }, { "url": "http://public2.vulnerablecode.io/api/packages/268111?format=api", "purl": "pkg:npm/apostrophe@0.5.23", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.23" }, { "url": "http://public2.vulnerablecode.io/api/packages/268112?format=api", "purl": "pkg:npm/apostrophe@0.5.24", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.24" }, { "url": "http://public2.vulnerablecode.io/api/packages/268113?format=api", "purl": "pkg:npm/apostrophe@0.5.25", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.25" }, { "url": "http://public2.vulnerablecode.io/api/packages/268114?format=api", "purl": "pkg:npm/apostrophe@0.5.26", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.26" }, { "url": "http://public2.vulnerablecode.io/api/packages/268115?format=api", "purl": "pkg:npm/apostrophe@0.5.27", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.27" }, { "url": "http://public2.vulnerablecode.io/api/packages/268116?format=api", "purl": "pkg:npm/apostrophe@0.5.28", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.28" }, { "url": "http://public2.vulnerablecode.io/api/packages/268117?format=api", "purl": "pkg:npm/apostrophe@0.5.29", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.29" }, { "url": "http://public2.vulnerablecode.io/api/packages/268118?format=api", "purl": "pkg:npm/apostrophe@0.5.30", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.30" }, { "url": "http://public2.vulnerablecode.io/api/packages/268119?format=api", "purl": "pkg:npm/apostrophe@0.5.31", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.31" }, { "url": "http://public2.vulnerablecode.io/api/packages/268120?format=api", "purl": "pkg:npm/apostrophe@0.5.32", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.32" }, { "url": "http://public2.vulnerablecode.io/api/packages/268121?format=api", "purl": "pkg:npm/apostrophe@0.5.33", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.33" }, { "url": "http://public2.vulnerablecode.io/api/packages/268122?format=api", "purl": "pkg:npm/apostrophe@0.5.34", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.34" }, { "url": "http://public2.vulnerablecode.io/api/packages/268123?format=api", "purl": "pkg:npm/apostrophe@0.5.35", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.35" }, { "url": "http://public2.vulnerablecode.io/api/packages/268124?format=api", "purl": "pkg:npm/apostrophe@0.5.36", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.36" }, { "url": "http://public2.vulnerablecode.io/api/packages/268125?format=api", "purl": "pkg:npm/apostrophe@0.5.37", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.37" }, { "url": "http://public2.vulnerablecode.io/api/packages/268126?format=api", "purl": "pkg:npm/apostrophe@0.5.38", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.38" }, { "url": "http://public2.vulnerablecode.io/api/packages/268127?format=api", "purl": "pkg:npm/apostrophe@0.5.39", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.39" }, { "url": "http://public2.vulnerablecode.io/api/packages/268128?format=api", "purl": "pkg:npm/apostrophe@0.5.40", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.40" }, { "url": "http://public2.vulnerablecode.io/api/packages/268129?format=api", "purl": "pkg:npm/apostrophe@0.5.41", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.41" }, { "url": "http://public2.vulnerablecode.io/api/packages/268130?format=api", "purl": "pkg:npm/apostrophe@0.5.42", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.42" }, { "url": "http://public2.vulnerablecode.io/api/packages/268131?format=api", "purl": "pkg:npm/apostrophe@0.5.43", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.43" }, { "url": "http://public2.vulnerablecode.io/api/packages/268132?format=api", "purl": "pkg:npm/apostrophe@0.5.44", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.44" }, { "url": "http://public2.vulnerablecode.io/api/packages/268133?format=api", "purl": "pkg:npm/apostrophe@0.5.45", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.45" }, { "url": "http://public2.vulnerablecode.io/api/packages/268134?format=api", "purl": "pkg:npm/apostrophe@0.5.46", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.46" }, { "url": "http://public2.vulnerablecode.io/api/packages/268135?format=api", "purl": "pkg:npm/apostrophe@0.5.47", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.47" }, { "url": "http://public2.vulnerablecode.io/api/packages/268136?format=api", "purl": "pkg:npm/apostrophe@0.5.48", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.48" }, { "url": "http://public2.vulnerablecode.io/api/packages/268137?format=api", "purl": "pkg:npm/apostrophe@0.5.49", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.49" }, { "url": "http://public2.vulnerablecode.io/api/packages/268138?format=api", "purl": "pkg:npm/apostrophe@0.5.50", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.50" }, { "url": "http://public2.vulnerablecode.io/api/packages/268139?format=api", "purl": "pkg:npm/apostrophe@0.5.51", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.51" }, { "url": "http://public2.vulnerablecode.io/api/packages/268140?format=api", "purl": "pkg:npm/apostrophe@0.5.52", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.52" }, { "url": "http://public2.vulnerablecode.io/api/packages/268141?format=api", "purl": "pkg:npm/apostrophe@0.5.53", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.53" }, { "url": "http://public2.vulnerablecode.io/api/packages/268142?format=api", "purl": "pkg:npm/apostrophe@0.5.54", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.54" }, { "url": "http://public2.vulnerablecode.io/api/packages/268143?format=api", "purl": "pkg:npm/apostrophe@0.5.55", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.55" }, { "url": "http://public2.vulnerablecode.io/api/packages/268144?format=api", "purl": "pkg:npm/apostrophe@0.5.56", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.56" }, { "url": "http://public2.vulnerablecode.io/api/packages/268145?format=api", "purl": "pkg:npm/apostrophe@0.5.57", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.57" }, { "url": "http://public2.vulnerablecode.io/api/packages/268146?format=api", "purl": "pkg:npm/apostrophe@0.5.58", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.58" }, { "url": "http://public2.vulnerablecode.io/api/packages/268147?format=api", "purl": "pkg:npm/apostrophe@0.5.59", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.59" }, { "url": "http://public2.vulnerablecode.io/api/packages/268148?format=api", "purl": "pkg:npm/apostrophe@0.5.60", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.60" }, { "url": "http://public2.vulnerablecode.io/api/packages/268149?format=api", "purl": "pkg:npm/apostrophe@0.5.61", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.61" }, { "url": "http://public2.vulnerablecode.io/api/packages/268150?format=api", "purl": "pkg:npm/apostrophe@0.5.62", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.62" }, { "url": "http://public2.vulnerablecode.io/api/packages/268151?format=api", "purl": "pkg:npm/apostrophe@0.5.63", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.63" }, { "url": "http://public2.vulnerablecode.io/api/packages/268152?format=api", "purl": "pkg:npm/apostrophe@0.5.64", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.64" }, { "url": "http://public2.vulnerablecode.io/api/packages/268153?format=api", "purl": "pkg:npm/apostrophe@0.5.65", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.65" }, { "url": "http://public2.vulnerablecode.io/api/packages/268154?format=api", "purl": "pkg:npm/apostrophe@0.5.66", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.66" }, { "url": "http://public2.vulnerablecode.io/api/packages/268155?format=api", "purl": "pkg:npm/apostrophe@0.5.67", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.67" }, { "url": "http://public2.vulnerablecode.io/api/packages/268156?format=api", "purl": "pkg:npm/apostrophe@0.5.69", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.69" }, { "url": "http://public2.vulnerablecode.io/api/packages/268157?format=api", "purl": "pkg:npm/apostrophe@0.5.70", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.70" }, { "url": "http://public2.vulnerablecode.io/api/packages/268158?format=api", "purl": "pkg:npm/apostrophe@0.5.71", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.71" }, { "url": "http://public2.vulnerablecode.io/api/packages/268159?format=api", "purl": "pkg:npm/apostrophe@0.5.72", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.72" }, { "url": "http://public2.vulnerablecode.io/api/packages/268160?format=api", "purl": "pkg:npm/apostrophe@0.5.73", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.73" }, { "url": "http://public2.vulnerablecode.io/api/packages/268161?format=api", "purl": "pkg:npm/apostrophe@0.5.74", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.74" }, { "url": "http://public2.vulnerablecode.io/api/packages/268162?format=api", "purl": "pkg:npm/apostrophe@0.5.75", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.75" }, { "url": "http://public2.vulnerablecode.io/api/packages/268163?format=api", "purl": "pkg:npm/apostrophe@0.5.76", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.76" }, { "url": "http://public2.vulnerablecode.io/api/packages/268164?format=api", "purl": "pkg:npm/apostrophe@0.5.77", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.77" }, { "url": "http://public2.vulnerablecode.io/api/packages/268165?format=api", "purl": "pkg:npm/apostrophe@0.5.78", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.78" }, { "url": "http://public2.vulnerablecode.io/api/packages/268166?format=api", "purl": "pkg:npm/apostrophe@0.5.79", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.79" }, { "url": "http://public2.vulnerablecode.io/api/packages/268167?format=api", "purl": "pkg:npm/apostrophe@0.5.80", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.80" }, { "url": "http://public2.vulnerablecode.io/api/packages/268168?format=api", "purl": "pkg:npm/apostrophe@0.5.81", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.81" }, { "url": "http://public2.vulnerablecode.io/api/packages/268169?format=api", "purl": "pkg:npm/apostrophe@0.5.82", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.82" }, { "url": "http://public2.vulnerablecode.io/api/packages/268170?format=api", "purl": "pkg:npm/apostrophe@0.5.83", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.83" }, { "url": "http://public2.vulnerablecode.io/api/packages/268171?format=api", "purl": "pkg:npm/apostrophe@0.5.84", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.84" }, { "url": "http://public2.vulnerablecode.io/api/packages/268172?format=api", "purl": "pkg:npm/apostrophe@0.5.85", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.85" }, { "url": "http://public2.vulnerablecode.io/api/packages/268173?format=api", "purl": "pkg:npm/apostrophe@0.5.86", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.86" }, { "url": "http://public2.vulnerablecode.io/api/packages/268174?format=api", "purl": "pkg:npm/apostrophe@0.5.87", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.87" }, { "url": "http://public2.vulnerablecode.io/api/packages/268175?format=api", "purl": "pkg:npm/apostrophe@0.5.88", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.88" }, { "url": "http://public2.vulnerablecode.io/api/packages/268176?format=api", "purl": "pkg:npm/apostrophe@0.5.89", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.89" }, { "url": "http://public2.vulnerablecode.io/api/packages/268177?format=api", "purl": "pkg:npm/apostrophe@0.5.90", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.90" }, { "url": "http://public2.vulnerablecode.io/api/packages/268178?format=api", "purl": "pkg:npm/apostrophe@0.5.91", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.91" }, { "url": "http://public2.vulnerablecode.io/api/packages/268179?format=api", "purl": "pkg:npm/apostrophe@0.5.92", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.92" }, { "url": "http://public2.vulnerablecode.io/api/packages/268180?format=api", "purl": "pkg:npm/apostrophe@0.5.93", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.93" }, { "url": "http://public2.vulnerablecode.io/api/packages/268181?format=api", "purl": "pkg:npm/apostrophe@0.5.94", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.94" }, { "url": "http://public2.vulnerablecode.io/api/packages/268182?format=api", "purl": "pkg:npm/apostrophe@0.5.95", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.95" }, { "url": "http://public2.vulnerablecode.io/api/packages/268183?format=api", "purl": "pkg:npm/apostrophe@0.5.96", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.96" }, { "url": "http://public2.vulnerablecode.io/api/packages/268184?format=api", "purl": "pkg:npm/apostrophe@0.5.97", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.97" }, { "url": "http://public2.vulnerablecode.io/api/packages/268185?format=api", "purl": "pkg:npm/apostrophe@0.5.98", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.98" }, { "url": "http://public2.vulnerablecode.io/api/packages/268186?format=api", "purl": "pkg:npm/apostrophe@0.5.99", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.99" }, { "url": "http://public2.vulnerablecode.io/api/packages/268187?format=api", "purl": "pkg:npm/apostrophe@0.5.100", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.100" }, { "url": "http://public2.vulnerablecode.io/api/packages/268188?format=api", "purl": "pkg:npm/apostrophe@0.5.101", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.101" }, { "url": "http://public2.vulnerablecode.io/api/packages/268189?format=api", "purl": "pkg:npm/apostrophe@0.5.102", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.102" }, { "url": "http://public2.vulnerablecode.io/api/packages/268190?format=api", "purl": "pkg:npm/apostrophe@0.5.103", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.103" }, { "url": "http://public2.vulnerablecode.io/api/packages/268191?format=api", "purl": "pkg:npm/apostrophe@0.5.104", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.104" }, { "url": "http://public2.vulnerablecode.io/api/packages/268192?format=api", "purl": "pkg:npm/apostrophe@0.5.105", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.105" }, { "url": "http://public2.vulnerablecode.io/api/packages/268193?format=api", "purl": "pkg:npm/apostrophe@0.5.106", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.106" }, { "url": "http://public2.vulnerablecode.io/api/packages/268194?format=api", "purl": "pkg:npm/apostrophe@0.5.107", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.107" }, { "url": "http://public2.vulnerablecode.io/api/packages/268195?format=api", "purl": "pkg:npm/apostrophe@0.5.108", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.108" }, { "url": "http://public2.vulnerablecode.io/api/packages/268196?format=api", "purl": "pkg:npm/apostrophe@0.5.109", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.109" }, { "url": "http://public2.vulnerablecode.io/api/packages/268197?format=api", "purl": "pkg:npm/apostrophe@0.5.110", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.110" }, { "url": "http://public2.vulnerablecode.io/api/packages/268198?format=api", "purl": "pkg:npm/apostrophe@0.5.111", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.111" }, { "url": "http://public2.vulnerablecode.io/api/packages/268199?format=api", "purl": "pkg:npm/apostrophe@0.5.112", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.112" }, { "url": "http://public2.vulnerablecode.io/api/packages/268200?format=api", "purl": "pkg:npm/apostrophe@0.5.113", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.113" }, { "url": "http://public2.vulnerablecode.io/api/packages/268201?format=api", "purl": "pkg:npm/apostrophe@0.5.114", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.114" }, { "url": "http://public2.vulnerablecode.io/api/packages/268202?format=api", "purl": "pkg:npm/apostrophe@0.5.115", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.115" }, { "url": "http://public2.vulnerablecode.io/api/packages/268203?format=api", "purl": "pkg:npm/apostrophe@0.5.116", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.116" }, { "url": "http://public2.vulnerablecode.io/api/packages/268204?format=api", "purl": "pkg:npm/apostrophe@0.5.117", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.117" }, { "url": "http://public2.vulnerablecode.io/api/packages/268205?format=api", "purl": "pkg:npm/apostrophe@0.5.118", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.118" }, { "url": "http://public2.vulnerablecode.io/api/packages/268206?format=api", "purl": "pkg:npm/apostrophe@0.5.119", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.119" }, { "url": "http://public2.vulnerablecode.io/api/packages/268207?format=api", "purl": "pkg:npm/apostrophe@0.5.120", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.120" }, { "url": "http://public2.vulnerablecode.io/api/packages/268208?format=api", "purl": "pkg:npm/apostrophe@0.5.121", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.121" }, { "url": "http://public2.vulnerablecode.io/api/packages/268209?format=api", "purl": "pkg:npm/apostrophe@0.5.122", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.122" }, { "url": "http://public2.vulnerablecode.io/api/packages/268210?format=api", "purl": "pkg:npm/apostrophe@0.5.123", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.123" }, { "url": "http://public2.vulnerablecode.io/api/packages/268211?format=api", "purl": "pkg:npm/apostrophe@0.5.124", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.124" }, { "url": "http://public2.vulnerablecode.io/api/packages/268212?format=api", "purl": "pkg:npm/apostrophe@0.5.125", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.125" }, { "url": "http://public2.vulnerablecode.io/api/packages/268213?format=api", "purl": "pkg:npm/apostrophe@0.5.126", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.126" }, { "url": "http://public2.vulnerablecode.io/api/packages/268214?format=api", "purl": "pkg:npm/apostrophe@0.5.127", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.127" }, { "url": "http://public2.vulnerablecode.io/api/packages/268215?format=api", "purl": "pkg:npm/apostrophe@0.5.128", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.128" }, { "url": "http://public2.vulnerablecode.io/api/packages/268216?format=api", "purl": "pkg:npm/apostrophe@0.5.129", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.129" }, { "url": "http://public2.vulnerablecode.io/api/packages/268217?format=api", "purl": "pkg:npm/apostrophe@0.5.130", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.130" }, { "url": "http://public2.vulnerablecode.io/api/packages/268218?format=api", "purl": "pkg:npm/apostrophe@0.5.131", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.131" }, { "url": "http://public2.vulnerablecode.io/api/packages/268219?format=api", "purl": "pkg:npm/apostrophe@0.5.133", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.133" }, { "url": "http://public2.vulnerablecode.io/api/packages/268220?format=api", "purl": "pkg:npm/apostrophe@0.5.134", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.134" }, { "url": "http://public2.vulnerablecode.io/api/packages/268221?format=api", "purl": "pkg:npm/apostrophe@0.5.135", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.135" }, { "url": "http://public2.vulnerablecode.io/api/packages/268222?format=api", "purl": "pkg:npm/apostrophe@0.5.136", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.136" }, { "url": "http://public2.vulnerablecode.io/api/packages/268223?format=api", "purl": "pkg:npm/apostrophe@0.5.137", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.137" }, { "url": "http://public2.vulnerablecode.io/api/packages/268224?format=api", "purl": "pkg:npm/apostrophe@0.5.138", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.138" }, { "url": "http://public2.vulnerablecode.io/api/packages/268225?format=api", "purl": "pkg:npm/apostrophe@0.5.139", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.139" }, { "url": "http://public2.vulnerablecode.io/api/packages/268226?format=api", "purl": "pkg:npm/apostrophe@0.5.140", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.140" }, { "url": "http://public2.vulnerablecode.io/api/packages/268227?format=api", "purl": "pkg:npm/apostrophe@0.5.141", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.141" }, { "url": "http://public2.vulnerablecode.io/api/packages/268228?format=api", "purl": "pkg:npm/apostrophe@0.5.142", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.142" }, { "url": "http://public2.vulnerablecode.io/api/packages/268229?format=api", "purl": "pkg:npm/apostrophe@0.5.143", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.143" }, { "url": "http://public2.vulnerablecode.io/api/packages/268230?format=api", "purl": "pkg:npm/apostrophe@0.5.144", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.144" }, { "url": "http://public2.vulnerablecode.io/api/packages/268231?format=api", "purl": "pkg:npm/apostrophe@0.5.145", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.145" }, { "url": "http://public2.vulnerablecode.io/api/packages/268232?format=api", "purl": "pkg:npm/apostrophe@0.5.146", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.146" }, { "url": "http://public2.vulnerablecode.io/api/packages/268233?format=api", "purl": "pkg:npm/apostrophe@0.5.147", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.147" }, { "url": "http://public2.vulnerablecode.io/api/packages/268234?format=api", "purl": "pkg:npm/apostrophe@0.5.148", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.148" }, { "url": "http://public2.vulnerablecode.io/api/packages/268235?format=api", "purl": "pkg:npm/apostrophe@0.5.149", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.149" }, { "url": "http://public2.vulnerablecode.io/api/packages/268236?format=api", "purl": "pkg:npm/apostrophe@0.5.150", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.150" }, { "url": "http://public2.vulnerablecode.io/api/packages/268237?format=api", "purl": "pkg:npm/apostrophe@0.5.151", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.151" }, { "url": "http://public2.vulnerablecode.io/api/packages/268238?format=api", "purl": "pkg:npm/apostrophe@0.5.152", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.152" }, { "url": "http://public2.vulnerablecode.io/api/packages/268239?format=api", "purl": "pkg:npm/apostrophe@0.5.153", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.153" }, { "url": "http://public2.vulnerablecode.io/api/packages/268240?format=api", "purl": "pkg:npm/apostrophe@0.5.155", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.155" }, { "url": "http://public2.vulnerablecode.io/api/packages/268241?format=api", "purl": "pkg:npm/apostrophe@0.5.156", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.156" }, { "url": "http://public2.vulnerablecode.io/api/packages/268242?format=api", "purl": "pkg:npm/apostrophe@0.5.157", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.157" }, { "url": "http://public2.vulnerablecode.io/api/packages/268243?format=api", "purl": "pkg:npm/apostrophe@0.5.158", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.158" }, { "url": "http://public2.vulnerablecode.io/api/packages/268244?format=api", "purl": "pkg:npm/apostrophe@0.5.159", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.159" }, { "url": "http://public2.vulnerablecode.io/api/packages/268245?format=api", "purl": "pkg:npm/apostrophe@0.5.160", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.160" }, { "url": "http://public2.vulnerablecode.io/api/packages/268246?format=api", "purl": "pkg:npm/apostrophe@0.5.161", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.161" }, { "url": "http://public2.vulnerablecode.io/api/packages/268247?format=api", "purl": "pkg:npm/apostrophe@0.5.162", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.162" }, { "url": "http://public2.vulnerablecode.io/api/packages/268248?format=api", "purl": "pkg:npm/apostrophe@0.5.163", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.163" }, { "url": "http://public2.vulnerablecode.io/api/packages/268249?format=api", "purl": "pkg:npm/apostrophe@0.5.164", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.164" }, { "url": "http://public2.vulnerablecode.io/api/packages/268250?format=api", "purl": "pkg:npm/apostrophe@0.5.165", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.165" }, { "url": "http://public2.vulnerablecode.io/api/packages/268251?format=api", "purl": "pkg:npm/apostrophe@0.5.166", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.166" }, { "url": "http://public2.vulnerablecode.io/api/packages/268252?format=api", "purl": "pkg:npm/apostrophe@0.5.167", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.167" }, { "url": "http://public2.vulnerablecode.io/api/packages/268253?format=api", "purl": "pkg:npm/apostrophe@0.5.168", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.168" }, { "url": "http://public2.vulnerablecode.io/api/packages/268254?format=api", "purl": "pkg:npm/apostrophe@0.5.169", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.169" }, { "url": "http://public2.vulnerablecode.io/api/packages/268255?format=api", "purl": "pkg:npm/apostrophe@0.5.170", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.170" }, { "url": "http://public2.vulnerablecode.io/api/packages/268256?format=api", "purl": "pkg:npm/apostrophe@0.5.171", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.171" }, { "url": "http://public2.vulnerablecode.io/api/packages/268257?format=api", "purl": "pkg:npm/apostrophe@0.5.172", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.172" }, { "url": "http://public2.vulnerablecode.io/api/packages/268258?format=api", "purl": "pkg:npm/apostrophe@0.5.174", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.174" }, { "url": "http://public2.vulnerablecode.io/api/packages/268259?format=api", "purl": "pkg:npm/apostrophe@0.5.175", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.175" }, { "url": "http://public2.vulnerablecode.io/api/packages/268260?format=api", "purl": "pkg:npm/apostrophe@0.5.176", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.176" }, { "url": "http://public2.vulnerablecode.io/api/packages/268261?format=api", "purl": "pkg:npm/apostrophe@0.5.177", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.177" }, { "url": "http://public2.vulnerablecode.io/api/packages/268262?format=api", "purl": "pkg:npm/apostrophe@0.5.178", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.178" }, { "url": "http://public2.vulnerablecode.io/api/packages/268263?format=api", "purl": "pkg:npm/apostrophe@0.5.179", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.179" }, { "url": "http://public2.vulnerablecode.io/api/packages/268264?format=api", "purl": "pkg:npm/apostrophe@0.5.181", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.181" }, { "url": "http://public2.vulnerablecode.io/api/packages/268265?format=api", "purl": "pkg:npm/apostrophe@0.5.182", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.182" }, { "url": "http://public2.vulnerablecode.io/api/packages/268266?format=api", "purl": "pkg:npm/apostrophe@0.5.183", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.183" }, { "url": "http://public2.vulnerablecode.io/api/packages/268267?format=api", "purl": "pkg:npm/apostrophe@0.5.184", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.184" }, { "url": "http://public2.vulnerablecode.io/api/packages/268268?format=api", "purl": "pkg:npm/apostrophe@0.5.185", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.185" }, { "url": "http://public2.vulnerablecode.io/api/packages/268269?format=api", "purl": "pkg:npm/apostrophe@0.5.186", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.186" }, { "url": "http://public2.vulnerablecode.io/api/packages/268270?format=api", "purl": "pkg:npm/apostrophe@0.5.187", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.187" }, { "url": "http://public2.vulnerablecode.io/api/packages/268271?format=api", "purl": "pkg:npm/apostrophe@0.5.188", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.188" }, { "url": "http://public2.vulnerablecode.io/api/packages/268272?format=api", "purl": "pkg:npm/apostrophe@0.5.189", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.189" }, { "url": "http://public2.vulnerablecode.io/api/packages/268273?format=api", "purl": "pkg:npm/apostrophe@0.5.190", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.190" }, { "url": "http://public2.vulnerablecode.io/api/packages/268274?format=api", "purl": "pkg:npm/apostrophe@0.5.191", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.191" }, { "url": "http://public2.vulnerablecode.io/api/packages/268275?format=api", "purl": "pkg:npm/apostrophe@0.5.192", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.192" }, { "url": "http://public2.vulnerablecode.io/api/packages/268276?format=api", "purl": "pkg:npm/apostrophe@0.5.193", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.193" }, { "url": "http://public2.vulnerablecode.io/api/packages/268277?format=api", "purl": "pkg:npm/apostrophe@0.5.194", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.194" }, { "url": "http://public2.vulnerablecode.io/api/packages/268278?format=api", "purl": "pkg:npm/apostrophe@0.5.195", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.195" }, { "url": "http://public2.vulnerablecode.io/api/packages/268279?format=api", "purl": "pkg:npm/apostrophe@0.5.196", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.196" }, { "url": "http://public2.vulnerablecode.io/api/packages/268280?format=api", "purl": "pkg:npm/apostrophe@0.5.197", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.197" }, { "url": "http://public2.vulnerablecode.io/api/packages/268281?format=api", "purl": "pkg:npm/apostrophe@0.5.198", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.198" }, { "url": "http://public2.vulnerablecode.io/api/packages/268282?format=api", "purl": "pkg:npm/apostrophe@0.5.199", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.199" }, { "url": "http://public2.vulnerablecode.io/api/packages/268283?format=api", "purl": "pkg:npm/apostrophe@0.5.200", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.200" }, { "url": "http://public2.vulnerablecode.io/api/packages/268284?format=api", "purl": "pkg:npm/apostrophe@0.5.201", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.201" }, { "url": "http://public2.vulnerablecode.io/api/packages/268285?format=api", "purl": "pkg:npm/apostrophe@0.5.202", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.202" }, { "url": "http://public2.vulnerablecode.io/api/packages/268286?format=api", "purl": "pkg:npm/apostrophe@0.5.203", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.203" }, { "url": "http://public2.vulnerablecode.io/api/packages/268287?format=api", "purl": "pkg:npm/apostrophe@0.5.204", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.204" }, { "url": "http://public2.vulnerablecode.io/api/packages/268288?format=api", "purl": "pkg:npm/apostrophe@0.5.205", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.205" }, { "url": "http://public2.vulnerablecode.io/api/packages/268289?format=api", "purl": "pkg:npm/apostrophe@0.5.206", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.206" }, { "url": "http://public2.vulnerablecode.io/api/packages/268290?format=api", "purl": "pkg:npm/apostrophe@0.5.207", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.207" }, { "url": "http://public2.vulnerablecode.io/api/packages/268291?format=api", "purl": "pkg:npm/apostrophe@0.5.208", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.208" }, { "url": "http://public2.vulnerablecode.io/api/packages/268292?format=api", "purl": "pkg:npm/apostrophe@0.5.209", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.209" }, { "url": "http://public2.vulnerablecode.io/api/packages/268293?format=api", "purl": "pkg:npm/apostrophe@0.5.210", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.210" }, { "url": "http://public2.vulnerablecode.io/api/packages/268294?format=api", "purl": "pkg:npm/apostrophe@0.5.211", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.211" }, { "url": "http://public2.vulnerablecode.io/api/packages/268295?format=api", "purl": "pkg:npm/apostrophe@0.5.212", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.212" }, { "url": "http://public2.vulnerablecode.io/api/packages/268296?format=api", "purl": "pkg:npm/apostrophe@0.5.213", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.213" }, { "url": "http://public2.vulnerablecode.io/api/packages/268297?format=api", "purl": "pkg:npm/apostrophe@0.5.214", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.214" }, { "url": "http://public2.vulnerablecode.io/api/packages/268298?format=api", "purl": "pkg:npm/apostrophe@0.5.215", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.215" }, { "url": "http://public2.vulnerablecode.io/api/packages/268299?format=api", "purl": "pkg:npm/apostrophe@0.5.216", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.216" }, { "url": "http://public2.vulnerablecode.io/api/packages/268300?format=api", "purl": "pkg:npm/apostrophe@0.5.217", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.217" }, { "url": "http://public2.vulnerablecode.io/api/packages/268301?format=api", "purl": "pkg:npm/apostrophe@0.5.218", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.218" }, { "url": "http://public2.vulnerablecode.io/api/packages/268302?format=api", "purl": "pkg:npm/apostrophe@0.5.219", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.219" }, { "url": "http://public2.vulnerablecode.io/api/packages/268303?format=api", "purl": "pkg:npm/apostrophe@0.5.220", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.220" }, { "url": "http://public2.vulnerablecode.io/api/packages/268304?format=api", "purl": "pkg:npm/apostrophe@0.5.221", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.221" }, { "url": "http://public2.vulnerablecode.io/api/packages/268305?format=api", "purl": "pkg:npm/apostrophe@0.5.222", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.222" }, { "url": "http://public2.vulnerablecode.io/api/packages/268306?format=api", "purl": "pkg:npm/apostrophe@0.5.223", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.223" }, { "url": "http://public2.vulnerablecode.io/api/packages/268307?format=api", "purl": "pkg:npm/apostrophe@0.5.224", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.224" }, { "url": "http://public2.vulnerablecode.io/api/packages/268308?format=api", "purl": "pkg:npm/apostrophe@0.5.225", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.225" }, { "url": "http://public2.vulnerablecode.io/api/packages/268309?format=api", "purl": "pkg:npm/apostrophe@0.5.226", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.226" }, { "url": "http://public2.vulnerablecode.io/api/packages/268310?format=api", "purl": "pkg:npm/apostrophe@0.5.227", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.227" }, { "url": "http://public2.vulnerablecode.io/api/packages/268311?format=api", "purl": "pkg:npm/apostrophe@0.5.228", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.228" }, { "url": "http://public2.vulnerablecode.io/api/packages/268312?format=api", "purl": "pkg:npm/apostrophe@0.5.229", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.229" }, { "url": "http://public2.vulnerablecode.io/api/packages/268313?format=api", "purl": "pkg:npm/apostrophe@0.5.230", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.230" }, { "url": "http://public2.vulnerablecode.io/api/packages/268314?format=api", "purl": "pkg:npm/apostrophe@0.5.231", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.231" }, { "url": "http://public2.vulnerablecode.io/api/packages/268315?format=api", "purl": "pkg:npm/apostrophe@0.5.232", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.232" }, { "url": "http://public2.vulnerablecode.io/api/packages/268316?format=api", "purl": "pkg:npm/apostrophe@0.5.233", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.233" }, { "url": "http://public2.vulnerablecode.io/api/packages/268317?format=api", "purl": "pkg:npm/apostrophe@0.5.234", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.234" }, { "url": "http://public2.vulnerablecode.io/api/packages/268318?format=api", "purl": "pkg:npm/apostrophe@0.5.235", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.235" }, { "url": "http://public2.vulnerablecode.io/api/packages/268319?format=api", "purl": "pkg:npm/apostrophe@0.5.236", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.236" }, { "url": "http://public2.vulnerablecode.io/api/packages/268320?format=api", "purl": "pkg:npm/apostrophe@0.5.237", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.237" }, { "url": "http://public2.vulnerablecode.io/api/packages/268321?format=api", "purl": "pkg:npm/apostrophe@0.5.238", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.238" }, { "url": "http://public2.vulnerablecode.io/api/packages/268322?format=api", "purl": "pkg:npm/apostrophe@0.5.239", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.239" }, { "url": "http://public2.vulnerablecode.io/api/packages/268323?format=api", "purl": "pkg:npm/apostrophe@0.5.240", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.240" }, { "url": "http://public2.vulnerablecode.io/api/packages/268324?format=api", "purl": "pkg:npm/apostrophe@0.5.241", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.241" }, { "url": "http://public2.vulnerablecode.io/api/packages/268325?format=api", "purl": "pkg:npm/apostrophe@0.5.242", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.242" }, { "url": "http://public2.vulnerablecode.io/api/packages/268326?format=api", "purl": "pkg:npm/apostrophe@0.5.243", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.243" }, { "url": "http://public2.vulnerablecode.io/api/packages/268327?format=api", "purl": "pkg:npm/apostrophe@0.5.244", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.244" }, { "url": "http://public2.vulnerablecode.io/api/packages/268328?format=api", "purl": "pkg:npm/apostrophe@0.5.245", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.245" }, { "url": "http://public2.vulnerablecode.io/api/packages/268329?format=api", "purl": "pkg:npm/apostrophe@0.5.246", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.246" }, { "url": "http://public2.vulnerablecode.io/api/packages/268330?format=api", "purl": "pkg:npm/apostrophe@0.5.247", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.247" }, { "url": "http://public2.vulnerablecode.io/api/packages/268331?format=api", "purl": "pkg:npm/apostrophe@0.5.248", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.248" }, { "url": "http://public2.vulnerablecode.io/api/packages/268332?format=api", "purl": "pkg:npm/apostrophe@0.5.249", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.249" }, { "url": "http://public2.vulnerablecode.io/api/packages/268333?format=api", "purl": "pkg:npm/apostrophe@0.5.250", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.250" }, { "url": "http://public2.vulnerablecode.io/api/packages/268334?format=api", "purl": "pkg:npm/apostrophe@0.5.251", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.251" }, { "url": "http://public2.vulnerablecode.io/api/packages/268335?format=api", "purl": "pkg:npm/apostrophe@0.5.252", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.252" }, { "url": "http://public2.vulnerablecode.io/api/packages/268336?format=api", "purl": "pkg:npm/apostrophe@0.5.253", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.253" }, { "url": "http://public2.vulnerablecode.io/api/packages/268337?format=api", "purl": "pkg:npm/apostrophe@0.5.254", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.254" }, { "url": "http://public2.vulnerablecode.io/api/packages/268338?format=api", "purl": "pkg:npm/apostrophe@0.5.255", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.255" }, { "url": "http://public2.vulnerablecode.io/api/packages/268339?format=api", "purl": "pkg:npm/apostrophe@0.5.256", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.256" }, { "url": "http://public2.vulnerablecode.io/api/packages/268340?format=api", "purl": "pkg:npm/apostrophe@0.5.257", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.257" }, { "url": "http://public2.vulnerablecode.io/api/packages/268341?format=api", "purl": "pkg:npm/apostrophe@0.5.258", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.258" }, { "url": "http://public2.vulnerablecode.io/api/packages/268342?format=api", "purl": "pkg:npm/apostrophe@0.5.259", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.259" }, { "url": "http://public2.vulnerablecode.io/api/packages/268343?format=api", "purl": "pkg:npm/apostrophe@0.5.260", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.260" }, { "url": "http://public2.vulnerablecode.io/api/packages/268344?format=api", "purl": "pkg:npm/apostrophe@0.5.261", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.261" }, { "url": "http://public2.vulnerablecode.io/api/packages/268345?format=api", "purl": "pkg:npm/apostrophe@0.5.262", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.262" }, { "url": "http://public2.vulnerablecode.io/api/packages/268346?format=api", "purl": "pkg:npm/apostrophe@0.5.263", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.263" }, { "url": "http://public2.vulnerablecode.io/api/packages/268347?format=api", "purl": "pkg:npm/apostrophe@0.5.264", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.264" }, { "url": "http://public2.vulnerablecode.io/api/packages/268348?format=api", "purl": "pkg:npm/apostrophe@0.5.265", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.265" }, { "url": "http://public2.vulnerablecode.io/api/packages/268349?format=api", "purl": "pkg:npm/apostrophe@0.5.266", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.266" }, { "url": "http://public2.vulnerablecode.io/api/packages/268350?format=api", "purl": "pkg:npm/apostrophe@0.5.267", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.267" }, { "url": "http://public2.vulnerablecode.io/api/packages/268351?format=api", "purl": "pkg:npm/apostrophe@0.5.268", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.268" }, { "url": "http://public2.vulnerablecode.io/api/packages/268352?format=api", "purl": "pkg:npm/apostrophe@0.5.269", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.269" }, { "url": "http://public2.vulnerablecode.io/api/packages/268353?format=api", "purl": "pkg:npm/apostrophe@0.5.270", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.270" }, { "url": "http://public2.vulnerablecode.io/api/packages/268354?format=api", "purl": "pkg:npm/apostrophe@0.5.271", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.271" }, { "url": "http://public2.vulnerablecode.io/api/packages/268355?format=api", "purl": "pkg:npm/apostrophe@0.5.272", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.272" }, { "url": "http://public2.vulnerablecode.io/api/packages/268356?format=api", "purl": "pkg:npm/apostrophe@0.5.273", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.273" }, { "url": "http://public2.vulnerablecode.io/api/packages/268357?format=api", "purl": "pkg:npm/apostrophe@0.5.274", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.274" }, { "url": "http://public2.vulnerablecode.io/api/packages/268358?format=api", "purl": "pkg:npm/apostrophe@0.5.275", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.275" }, { "url": "http://public2.vulnerablecode.io/api/packages/268359?format=api", "purl": "pkg:npm/apostrophe@0.5.276", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.276" }, { "url": "http://public2.vulnerablecode.io/api/packages/268360?format=api", "purl": "pkg:npm/apostrophe@0.5.277", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.277" }, { "url": "http://public2.vulnerablecode.io/api/packages/268361?format=api", "purl": "pkg:npm/apostrophe@0.5.278", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.278" }, { "url": "http://public2.vulnerablecode.io/api/packages/268362?format=api", "purl": "pkg:npm/apostrophe@0.5.279", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.279" }, { "url": "http://public2.vulnerablecode.io/api/packages/268363?format=api", "purl": "pkg:npm/apostrophe@0.5.280", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.280" }, { "url": "http://public2.vulnerablecode.io/api/packages/268364?format=api", "purl": "pkg:npm/apostrophe@0.5.281", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.281" }, { "url": "http://public2.vulnerablecode.io/api/packages/268365?format=api", "purl": "pkg:npm/apostrophe@0.5.282", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.282" }, { "url": "http://public2.vulnerablecode.io/api/packages/268366?format=api", "purl": "pkg:npm/apostrophe@0.5.283", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.283" }, { "url": "http://public2.vulnerablecode.io/api/packages/268367?format=api", "purl": "pkg:npm/apostrophe@0.5.284", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.284" }, { "url": "http://public2.vulnerablecode.io/api/packages/268368?format=api", "purl": "pkg:npm/apostrophe@0.5.285", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.285" }, { "url": "http://public2.vulnerablecode.io/api/packages/268369?format=api", "purl": "pkg:npm/apostrophe@0.5.286", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.286" }, { "url": "http://public2.vulnerablecode.io/api/packages/268370?format=api", "purl": "pkg:npm/apostrophe@0.5.287", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.287" }, { "url": "http://public2.vulnerablecode.io/api/packages/268371?format=api", "purl": "pkg:npm/apostrophe@0.5.288", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.288" }, { "url": "http://public2.vulnerablecode.io/api/packages/268372?format=api", "purl": "pkg:npm/apostrophe@0.5.289", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.289" }, { "url": "http://public2.vulnerablecode.io/api/packages/268373?format=api", "purl": "pkg:npm/apostrophe@0.5.290", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.290" }, { "url": "http://public2.vulnerablecode.io/api/packages/268374?format=api", "purl": "pkg:npm/apostrophe@0.5.291", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.291" }, { "url": "http://public2.vulnerablecode.io/api/packages/268375?format=api", "purl": "pkg:npm/apostrophe@0.5.292", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.292" }, { "url": "http://public2.vulnerablecode.io/api/packages/268376?format=api", "purl": "pkg:npm/apostrophe@0.5.293", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.293" }, { "url": "http://public2.vulnerablecode.io/api/packages/268377?format=api", "purl": "pkg:npm/apostrophe@0.5.294", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.294" }, { "url": "http://public2.vulnerablecode.io/api/packages/268378?format=api", "purl": "pkg:npm/apostrophe@0.5.295", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.295" }, { "url": "http://public2.vulnerablecode.io/api/packages/268379?format=api", "purl": "pkg:npm/apostrophe@0.5.296", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.296" }, { "url": "http://public2.vulnerablecode.io/api/packages/268380?format=api", "purl": "pkg:npm/apostrophe@0.5.297", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.297" }, { "url": "http://public2.vulnerablecode.io/api/packages/268381?format=api", "purl": "pkg:npm/apostrophe@0.5.298", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.298" }, { "url": "http://public2.vulnerablecode.io/api/packages/268382?format=api", "purl": "pkg:npm/apostrophe@0.5.299", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.299" }, { "url": "http://public2.vulnerablecode.io/api/packages/268383?format=api", "purl": "pkg:npm/apostrophe@0.5.300", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.300" }, { "url": "http://public2.vulnerablecode.io/api/packages/268384?format=api", "purl": "pkg:npm/apostrophe@0.5.301", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.301" }, { "url": "http://public2.vulnerablecode.io/api/packages/268385?format=api", "purl": "pkg:npm/apostrophe@0.5.302", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.302" }, { "url": "http://public2.vulnerablecode.io/api/packages/268386?format=api", "purl": "pkg:npm/apostrophe@0.5.303", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.303" }, { "url": "http://public2.vulnerablecode.io/api/packages/268387?format=api", "purl": "pkg:npm/apostrophe@0.5.304", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.304" }, { "url": "http://public2.vulnerablecode.io/api/packages/268388?format=api", "purl": "pkg:npm/apostrophe@0.5.305", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.305" }, { "url": "http://public2.vulnerablecode.io/api/packages/268389?format=api", "purl": "pkg:npm/apostrophe@0.5.306", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.306" }, { "url": "http://public2.vulnerablecode.io/api/packages/268390?format=api", "purl": "pkg:npm/apostrophe@0.5.307", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.307" }, { "url": "http://public2.vulnerablecode.io/api/packages/268391?format=api", "purl": "pkg:npm/apostrophe@0.5.308", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.308" }, { "url": "http://public2.vulnerablecode.io/api/packages/268392?format=api", "purl": "pkg:npm/apostrophe@0.5.309", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.309" }, { "url": "http://public2.vulnerablecode.io/api/packages/268393?format=api", "purl": "pkg:npm/apostrophe@0.5.310", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.310" }, { "url": "http://public2.vulnerablecode.io/api/packages/268394?format=api", "purl": "pkg:npm/apostrophe@0.5.311", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.311" }, { "url": "http://public2.vulnerablecode.io/api/packages/268395?format=api", "purl": "pkg:npm/apostrophe@0.5.312", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.312" }, { "url": "http://public2.vulnerablecode.io/api/packages/268396?format=api", "purl": "pkg:npm/apostrophe@0.5.313", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.313" }, { "url": "http://public2.vulnerablecode.io/api/packages/268397?format=api", "purl": "pkg:npm/apostrophe@0.5.314", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.314" }, { "url": "http://public2.vulnerablecode.io/api/packages/268398?format=api", "purl": "pkg:npm/apostrophe@0.5.315", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.315" }, { "url": "http://public2.vulnerablecode.io/api/packages/268399?format=api", "purl": "pkg:npm/apostrophe@0.5.316", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.316" }, { "url": "http://public2.vulnerablecode.io/api/packages/268400?format=api", "purl": "pkg:npm/apostrophe@0.5.317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.317" }, { "url": "http://public2.vulnerablecode.io/api/packages/268401?format=api", "purl": "pkg:npm/apostrophe@0.5.318", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.318" }, { "url": "http://public2.vulnerablecode.io/api/packages/268402?format=api", "purl": "pkg:npm/apostrophe@0.5.319", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.319" }, { "url": "http://public2.vulnerablecode.io/api/packages/268403?format=api", "purl": "pkg:npm/apostrophe@0.5.320", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.320" }, { "url": "http://public2.vulnerablecode.io/api/packages/268404?format=api", "purl": "pkg:npm/apostrophe@0.5.321", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.321" }, { "url": "http://public2.vulnerablecode.io/api/packages/268405?format=api", "purl": "pkg:npm/apostrophe@0.5.322", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.322" }, { "url": "http://public2.vulnerablecode.io/api/packages/268406?format=api", "purl": "pkg:npm/apostrophe@0.5.323", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.323" }, { "url": "http://public2.vulnerablecode.io/api/packages/268407?format=api", "purl": "pkg:npm/apostrophe@0.5.324", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.324" }, { "url": "http://public2.vulnerablecode.io/api/packages/268408?format=api", "purl": "pkg:npm/apostrophe@0.5.325", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.325" }, { "url": "http://public2.vulnerablecode.io/api/packages/268409?format=api", "purl": "pkg:npm/apostrophe@0.5.326", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.326" }, { "url": "http://public2.vulnerablecode.io/api/packages/268410?format=api", "purl": "pkg:npm/apostrophe@0.5.327", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.327" }, { "url": "http://public2.vulnerablecode.io/api/packages/268411?format=api", "purl": "pkg:npm/apostrophe@0.5.328", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.328" }, { "url": "http://public2.vulnerablecode.io/api/packages/268412?format=api", "purl": "pkg:npm/apostrophe@0.5.329", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.329" }, { "url": "http://public2.vulnerablecode.io/api/packages/268413?format=api", "purl": "pkg:npm/apostrophe@0.5.330", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.330" }, { "url": "http://public2.vulnerablecode.io/api/packages/268414?format=api", "purl": "pkg:npm/apostrophe@0.5.331", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.331" }, { "url": "http://public2.vulnerablecode.io/api/packages/268415?format=api", "purl": "pkg:npm/apostrophe@0.5.332", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.332" }, { "url": "http://public2.vulnerablecode.io/api/packages/268416?format=api", "purl": "pkg:npm/apostrophe@0.5.333", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.333" }, { "url": "http://public2.vulnerablecode.io/api/packages/268417?format=api", "purl": "pkg:npm/apostrophe@0.5.334", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.334" }, { "url": "http://public2.vulnerablecode.io/api/packages/268418?format=api", "purl": "pkg:npm/apostrophe@0.5.335", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.335" }, { "url": "http://public2.vulnerablecode.io/api/packages/268419?format=api", "purl": "pkg:npm/apostrophe@0.5.336", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.336" }, { "url": "http://public2.vulnerablecode.io/api/packages/268420?format=api", "purl": "pkg:npm/apostrophe@0.5.337", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.337" }, { "url": "http://public2.vulnerablecode.io/api/packages/268421?format=api", "purl": "pkg:npm/apostrophe@0.5.338", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.338" }, { "url": "http://public2.vulnerablecode.io/api/packages/268422?format=api", "purl": "pkg:npm/apostrophe@0.5.339", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.339" }, { "url": "http://public2.vulnerablecode.io/api/packages/268423?format=api", "purl": "pkg:npm/apostrophe@0.5.340", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.340" }, { "url": "http://public2.vulnerablecode.io/api/packages/268424?format=api", "purl": "pkg:npm/apostrophe@0.5.341", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.341" }, { "url": "http://public2.vulnerablecode.io/api/packages/268425?format=api", "purl": "pkg:npm/apostrophe@0.5.342", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.342" }, { "url": "http://public2.vulnerablecode.io/api/packages/268426?format=api", "purl": "pkg:npm/apostrophe@0.5.343", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.343" }, { "url": "http://public2.vulnerablecode.io/api/packages/268427?format=api", "purl": "pkg:npm/apostrophe@0.5.344", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.344" }, { "url": "http://public2.vulnerablecode.io/api/packages/268428?format=api", "purl": "pkg:npm/apostrophe@0.5.345", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.345" }, { "url": "http://public2.vulnerablecode.io/api/packages/268429?format=api", "purl": "pkg:npm/apostrophe@0.5.346", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.346" }, { "url": "http://public2.vulnerablecode.io/api/packages/268430?format=api", "purl": "pkg:npm/apostrophe@0.5.347", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.347" }, { "url": "http://public2.vulnerablecode.io/api/packages/268431?format=api", "purl": "pkg:npm/apostrophe@0.5.348", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.348" }, { "url": "http://public2.vulnerablecode.io/api/packages/268432?format=api", "purl": "pkg:npm/apostrophe@0.5.349", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.349" }, { "url": "http://public2.vulnerablecode.io/api/packages/268433?format=api", "purl": "pkg:npm/apostrophe@0.5.350", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.350" }, { "url": "http://public2.vulnerablecode.io/api/packages/268434?format=api", "purl": "pkg:npm/apostrophe@0.5.351", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.351" }, { "url": "http://public2.vulnerablecode.io/api/packages/268435?format=api", "purl": "pkg:npm/apostrophe@0.5.352", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.352" }, { "url": "http://public2.vulnerablecode.io/api/packages/268436?format=api", "purl": "pkg:npm/apostrophe@0.5.353", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.353" }, { "url": "http://public2.vulnerablecode.io/api/packages/268437?format=api", "purl": "pkg:npm/apostrophe@0.5.354", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.354" }, { "url": "http://public2.vulnerablecode.io/api/packages/268438?format=api", "purl": "pkg:npm/apostrophe@0.5.355", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.355" }, { "url": "http://public2.vulnerablecode.io/api/packages/268439?format=api", "purl": "pkg:npm/apostrophe@0.5.356", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.356" }, { "url": "http://public2.vulnerablecode.io/api/packages/268440?format=api", "purl": "pkg:npm/apostrophe@0.5.357", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.357" }, { "url": "http://public2.vulnerablecode.io/api/packages/268441?format=api", "purl": "pkg:npm/apostrophe@0.5.358", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.358" }, { "url": "http://public2.vulnerablecode.io/api/packages/268442?format=api", "purl": "pkg:npm/apostrophe@0.5.359", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.359" }, { "url": "http://public2.vulnerablecode.io/api/packages/268443?format=api", "purl": "pkg:npm/apostrophe@0.5.360", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.360" }, { "url": "http://public2.vulnerablecode.io/api/packages/268444?format=api", "purl": "pkg:npm/apostrophe@0.5.361", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.361" }, { "url": "http://public2.vulnerablecode.io/api/packages/268445?format=api", "purl": "pkg:npm/apostrophe@0.5.362", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.362" }, { "url": "http://public2.vulnerablecode.io/api/packages/268446?format=api", "purl": "pkg:npm/apostrophe@0.5.363", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.363" }, { "url": "http://public2.vulnerablecode.io/api/packages/268447?format=api", "purl": "pkg:npm/apostrophe@0.5.364", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.364" }, { "url": "http://public2.vulnerablecode.io/api/packages/268448?format=api", "purl": "pkg:npm/apostrophe@0.5.367", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.367" }, { "url": "http://public2.vulnerablecode.io/api/packages/268449?format=api", "purl": "pkg:npm/apostrophe@0.5.368", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.368" }, { "url": "http://public2.vulnerablecode.io/api/packages/268450?format=api", "purl": "pkg:npm/apostrophe@0.5.369", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.369" }, { "url": "http://public2.vulnerablecode.io/api/packages/268451?format=api", "purl": "pkg:npm/apostrophe@0.5.370", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.370" }, { "url": "http://public2.vulnerablecode.io/api/packages/268452?format=api", "purl": "pkg:npm/apostrophe@0.5.371", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.371" }, { "url": "http://public2.vulnerablecode.io/api/packages/268453?format=api", "purl": "pkg:npm/apostrophe@0.5.372", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.372" }, { "url": "http://public2.vulnerablecode.io/api/packages/268454?format=api", "purl": "pkg:npm/apostrophe@0.5.373", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.373" }, { "url": "http://public2.vulnerablecode.io/api/packages/268455?format=api", "purl": "pkg:npm/apostrophe@0.5.374", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.374" }, { "url": "http://public2.vulnerablecode.io/api/packages/268456?format=api", "purl": "pkg:npm/apostrophe@0.5.375", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.375" }, { "url": "http://public2.vulnerablecode.io/api/packages/268457?format=api", "purl": "pkg:npm/apostrophe@0.5.376", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.376" }, { "url": "http://public2.vulnerablecode.io/api/packages/268458?format=api", "purl": "pkg:npm/apostrophe@0.5.377", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.377" }, { "url": "http://public2.vulnerablecode.io/api/packages/268459?format=api", "purl": "pkg:npm/apostrophe@0.5.378", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.378" }, { "url": "http://public2.vulnerablecode.io/api/packages/268460?format=api", "purl": "pkg:npm/apostrophe@0.5.379", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.379" }, { "url": "http://public2.vulnerablecode.io/api/packages/268461?format=api", "purl": "pkg:npm/apostrophe@0.5.380", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.380" }, { "url": "http://public2.vulnerablecode.io/api/packages/268462?format=api", "purl": "pkg:npm/apostrophe@0.5.381", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.381" }, { "url": "http://public2.vulnerablecode.io/api/packages/268463?format=api", "purl": "pkg:npm/apostrophe@0.5.382", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.382" }, { "url": "http://public2.vulnerablecode.io/api/packages/268464?format=api", "purl": "pkg:npm/apostrophe@0.5.383", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.383" }, { "url": "http://public2.vulnerablecode.io/api/packages/268465?format=api", "purl": "pkg:npm/apostrophe@0.5.384", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.384" }, { "url": "http://public2.vulnerablecode.io/api/packages/268466?format=api", "purl": "pkg:npm/apostrophe@0.5.385", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.385" }, { "url": "http://public2.vulnerablecode.io/api/packages/268467?format=api", "purl": "pkg:npm/apostrophe@0.5.386", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.386" }, { "url": "http://public2.vulnerablecode.io/api/packages/268468?format=api", "purl": "pkg:npm/apostrophe@0.5.387", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.387" }, { "url": "http://public2.vulnerablecode.io/api/packages/268469?format=api", "purl": "pkg:npm/apostrophe@0.5.388", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.388" }, { "url": "http://public2.vulnerablecode.io/api/packages/268470?format=api", "purl": "pkg:npm/apostrophe@0.5.389", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.389" }, { "url": "http://public2.vulnerablecode.io/api/packages/268471?format=api", "purl": "pkg:npm/apostrophe@0.5.390", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.390" }, { "url": "http://public2.vulnerablecode.io/api/packages/268472?format=api", "purl": "pkg:npm/apostrophe@0.5.391", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.391" }, { "url": "http://public2.vulnerablecode.io/api/packages/268473?format=api", "purl": "pkg:npm/apostrophe@0.5.392", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.392" }, { "url": "http://public2.vulnerablecode.io/api/packages/268474?format=api", "purl": "pkg:npm/apostrophe@0.5.393", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.393" }, { "url": "http://public2.vulnerablecode.io/api/packages/268475?format=api", "purl": "pkg:npm/apostrophe@2.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268476?format=api", "purl": "pkg:npm/apostrophe@2.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268477?format=api", "purl": "pkg:npm/apostrophe@2.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268478?format=api", "purl": "pkg:npm/apostrophe@2.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268479?format=api", "purl": "pkg:npm/apostrophe@2.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/268480?format=api", "purl": "pkg:npm/apostrophe@2.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268481?format=api", "purl": "pkg:npm/apostrophe@2.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268482?format=api", "purl": "pkg:npm/apostrophe@2.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268483?format=api", "purl": "pkg:npm/apostrophe@2.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268484?format=api", "purl": "pkg:npm/apostrophe@2.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/268485?format=api", "purl": "pkg:npm/apostrophe@2.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/268486?format=api", "purl": "pkg:npm/apostrophe@2.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268487?format=api", "purl": "pkg:npm/apostrophe@2.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268488?format=api", "purl": "pkg:npm/apostrophe@2.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268489?format=api", "purl": "pkg:npm/apostrophe@2.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268490?format=api", "purl": "pkg:npm/apostrophe@2.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268491?format=api", "purl": "pkg:npm/apostrophe@2.3.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.3.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268492?format=api", "purl": "pkg:npm/apostrophe@2.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268493?format=api", "purl": "pkg:npm/apostrophe@2.5.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.5.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268494?format=api", "purl": "pkg:npm/apostrophe@2.5.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.5.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268495?format=api", "purl": "pkg:npm/apostrophe@2.5.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.5.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268496?format=api", "purl": "pkg:npm/apostrophe@2.6.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.6.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268497?format=api", "purl": "pkg:npm/apostrophe@2.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268498?format=api", "purl": "pkg:npm/apostrophe@2.6.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.6.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268499?format=api", "purl": "pkg:npm/apostrophe@2.7.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.7.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268500?format=api", "purl": "pkg:npm/apostrophe@2.8.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.8.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268501?format=api", "purl": "pkg:npm/apostrophe@2.9.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.9.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268502?format=api", "purl": "pkg:npm/apostrophe@2.9.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.9.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268503?format=api", "purl": "pkg:npm/apostrophe@2.9.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.9.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268504?format=api", "purl": "pkg:npm/apostrophe@2.10.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268505?format=api", "purl": "pkg:npm/apostrophe@2.10.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268506?format=api", "purl": "pkg:npm/apostrophe@2.10.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268507?format=api", "purl": "pkg:npm/apostrophe@2.10.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268508?format=api", "purl": "pkg:npm/apostrophe@2.11.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.11.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268509?format=api", "purl": "pkg:npm/apostrophe@2.12.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.12.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268510?format=api", "purl": "pkg:npm/apostrophe@2.13.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.13.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268511?format=api", "purl": "pkg:npm/apostrophe@2.13.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.13.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268512?format=api", "purl": "pkg:npm/apostrophe@2.13.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.13.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268513?format=api", "purl": "pkg:npm/apostrophe@2.14.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.14.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268514?format=api", "purl": "pkg:npm/apostrophe@2.14.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.14.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268515?format=api", "purl": "pkg:npm/apostrophe@2.14.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.14.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268516?format=api", "purl": "pkg:npm/apostrophe@2.15.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.15.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268517?format=api", "purl": "pkg:npm/apostrophe@2.15.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.15.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268518?format=api", "purl": "pkg:npm/apostrophe@2.15.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.15.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268519?format=api", "purl": "pkg:npm/apostrophe@2.16.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.16.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268520?format=api", "purl": "pkg:npm/apostrophe@2.16.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.16.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268521?format=api", "purl": "pkg:npm/apostrophe@2.17.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.17.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268522?format=api", "purl": "pkg:npm/apostrophe@2.17.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.17.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268523?format=api", "purl": "pkg:npm/apostrophe@2.17.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.17.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268524?format=api", "purl": "pkg:npm/apostrophe@2.18.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.18.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268525?format=api", "purl": "pkg:npm/apostrophe@2.18.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.18.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268526?format=api", "purl": "pkg:npm/apostrophe@2.18.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.18.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268527?format=api", "purl": "pkg:npm/apostrophe@2.19.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.19.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268528?format=api", "purl": "pkg:npm/apostrophe@2.19.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.19.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268529?format=api", "purl": "pkg:npm/apostrophe@2.20.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268530?format=api", "purl": "pkg:npm/apostrophe@2.20.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268531?format=api", "purl": "pkg:npm/apostrophe@2.20.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268532?format=api", "purl": "pkg:npm/apostrophe@2.20.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268533?format=api", "purl": "pkg:npm/apostrophe@2.21.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.21.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268534?format=api", "purl": "pkg:npm/apostrophe@2.22.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.22.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268535?format=api", "purl": "pkg:npm/apostrophe@2.22.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.22.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268536?format=api", "purl": "pkg:npm/apostrophe@2.23.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.23.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268537?format=api", "purl": "pkg:npm/apostrophe@2.23.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.23.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268538?format=api", "purl": "pkg:npm/apostrophe@2.23.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.23.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268539?format=api", "purl": "pkg:npm/apostrophe@2.24.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.24.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268540?format=api", "purl": "pkg:npm/apostrophe@2.25.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.25.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268541?format=api", "purl": "pkg:npm/apostrophe@2.25.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.25.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268542?format=api", "purl": "pkg:npm/apostrophe@2.26.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.26.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268543?format=api", "purl": "pkg:npm/apostrophe@2.26.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.26.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268544?format=api", "purl": "pkg:npm/apostrophe@2.27.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.27.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268545?format=api", "purl": "pkg:npm/apostrophe@2.27.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.27.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268546?format=api", "purl": "pkg:npm/apostrophe@2.28.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.28.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268547?format=api", "purl": "pkg:npm/apostrophe@2.29.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.29.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268548?format=api", "purl": "pkg:npm/apostrophe@2.29.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.29.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268549?format=api", "purl": "pkg:npm/apostrophe@2.29.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.29.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268550?format=api", "purl": "pkg:npm/apostrophe@2.30.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.30.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268551?format=api", "purl": "pkg:npm/apostrophe@2.31.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.31.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268552?format=api", "purl": "pkg:npm/apostrophe@2.32.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.32.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268553?format=api", "purl": "pkg:npm/apostrophe@2.33.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.33.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268554?format=api", "purl": "pkg:npm/apostrophe@2.33.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.33.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268555?format=api", "purl": "pkg:npm/apostrophe@2.34.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268556?format=api", "purl": "pkg:npm/apostrophe@2.34.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268557?format=api", "purl": "pkg:npm/apostrophe@2.34.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268558?format=api", "purl": "pkg:npm/apostrophe@2.34.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268559?format=api", "purl": "pkg:npm/apostrophe@2.35.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.35.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268560?format=api", "purl": "pkg:npm/apostrophe@2.35.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.35.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268561?format=api", "purl": "pkg:npm/apostrophe@2.36.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268562?format=api", "purl": "pkg:npm/apostrophe@2.36.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268563?format=api", "purl": "pkg:npm/apostrophe@2.36.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268564?format=api", "purl": "pkg:npm/apostrophe@2.36.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268565?format=api", "purl": "pkg:npm/apostrophe@2.37.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.37.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268566?format=api", "purl": "pkg:npm/apostrophe@2.37.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.37.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268567?format=api", "purl": "pkg:npm/apostrophe@2.37.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.37.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268568?format=api", "purl": "pkg:npm/apostrophe@2.38.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.38.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268569?format=api", "purl": "pkg:npm/apostrophe@2.39.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.39.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268570?format=api", "purl": "pkg:npm/apostrophe@2.39.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.39.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268571?format=api", "purl": "pkg:npm/apostrophe@2.39.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.39.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268572?format=api", "purl": "pkg:npm/apostrophe@2.40.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.40.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268573?format=api", "purl": "pkg:npm/apostrophe@2.41.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.41.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268574?format=api", "purl": "pkg:npm/apostrophe@2.42.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.42.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268575?format=api", "purl": "pkg:npm/apostrophe@2.42.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.42.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268576?format=api", "purl": "pkg:npm/apostrophe@2.43.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.43.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268577?format=api", "purl": "pkg:npm/apostrophe@2.44.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.44.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268578?format=api", "purl": "pkg:npm/apostrophe@2.45.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.45.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268579?format=api", "purl": "pkg:npm/apostrophe@2.46.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.46.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268580?format=api", "purl": "pkg:npm/apostrophe@2.46.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.46.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268581?format=api", "purl": "pkg:npm/apostrophe@2.47.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.47.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268582?format=api", "purl": "pkg:npm/apostrophe@2.48.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.48.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268583?format=api", "purl": "pkg:npm/apostrophe@2.49.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.49.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268584?format=api", "purl": "pkg:npm/apostrophe@2.50.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.50.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268585?format=api", "purl": "pkg:npm/apostrophe@2.51.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.51.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268586?format=api", "purl": "pkg:npm/apostrophe@2.51.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.51.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268587?format=api", "purl": "pkg:npm/apostrophe@2.52.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.52.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268588?format=api", "purl": "pkg:npm/apostrophe@2.53.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.53.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268589?format=api", "purl": "pkg:npm/apostrophe@2.54.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268590?format=api", "purl": "pkg:npm/apostrophe@2.54.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268591?format=api", "purl": "pkg:npm/apostrophe@2.54.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268592?format=api", "purl": "pkg:npm/apostrophe@2.54.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268593?format=api", "purl": "pkg:npm/apostrophe@2.55.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.55.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268594?format=api", "purl": "pkg:npm/apostrophe@2.55.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.55.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268595?format=api", "purl": "pkg:npm/apostrophe@2.55.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.55.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268596?format=api", "purl": "pkg:npm/apostrophe@2.56.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.56.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268597?format=api", "purl": "pkg:npm/apostrophe@2.57.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.57.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268598?format=api", "purl": "pkg:npm/apostrophe@2.57.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.57.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268599?format=api", "purl": "pkg:npm/apostrophe@2.57.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.57.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268600?format=api", "purl": "pkg:npm/apostrophe@2.58.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.58.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268601?format=api", "purl": "pkg:npm/apostrophe@2.59.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.59.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268602?format=api", "purl": "pkg:npm/apostrophe@2.59.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.59.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268603?format=api", "purl": "pkg:npm/apostrophe@2.60.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268604?format=api", "purl": "pkg:npm/apostrophe@2.60.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268605?format=api", "purl": "pkg:npm/apostrophe@2.60.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268606?format=api", "purl": "pkg:npm/apostrophe@2.60.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268607?format=api", "purl": "pkg:npm/apostrophe@2.60.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/268608?format=api", "purl": "pkg:npm/apostrophe@2.61.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.61.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268609?format=api", "purl": "pkg:npm/apostrophe@2.62.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.62.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/59492?format=api", "purl": "pkg:npm/apostrophe@2.63.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.63.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268610?format=api", "purl": "pkg:npm/apostrophe@2.64.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.64.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268611?format=api", "purl": "pkg:npm/apostrophe@2.64.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.64.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268612?format=api", "purl": "pkg:npm/apostrophe@2.65.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.65.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268613?format=api", "purl": "pkg:npm/apostrophe@2.66.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.66.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268614?format=api", "purl": "pkg:npm/apostrophe@2.67.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.67.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268615?format=api", "purl": "pkg:npm/apostrophe@2.68.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.68.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268616?format=api", "purl": "pkg:npm/apostrophe@2.68.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.68.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268617?format=api", "purl": "pkg:npm/apostrophe@2.69.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.69.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268618?format=api", "purl": "pkg:npm/apostrophe@2.69.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.69.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268619?format=api", "purl": "pkg:npm/apostrophe@2.70.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.70.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268620?format=api", "purl": "pkg:npm/apostrophe@2.70.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.70.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268621?format=api", "purl": "pkg:npm/apostrophe@2.71.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.71.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268622?format=api", "purl": "pkg:npm/apostrophe@2.71.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.71.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268623?format=api", "purl": "pkg:npm/apostrophe@2.72.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268624?format=api", "purl": "pkg:npm/apostrophe@2.72.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268625?format=api", "purl": "pkg:npm/apostrophe@2.72.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268626?format=api", "purl": "pkg:npm/apostrophe@2.72.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/268627?format=api", "purl": "pkg:npm/apostrophe@2.73.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.73.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268628?format=api", "purl": "pkg:npm/apostrophe@2.74.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.74.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268629?format=api", "purl": "pkg:npm/apostrophe@2.75.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.75.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268630?format=api", "purl": "pkg:npm/apostrophe@2.75.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.75.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268631?format=api", "purl": "pkg:npm/apostrophe@2.76.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.76.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268632?format=api", "purl": "pkg:npm/apostrophe@2.76.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.76.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268633?format=api", "purl": "pkg:npm/apostrophe@2.77.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.77.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268634?format=api", "purl": "pkg:npm/apostrophe@2.77.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.77.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268635?format=api", "purl": "pkg:npm/apostrophe@2.77.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.77.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268636?format=api", "purl": "pkg:npm/apostrophe@2.78.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.78.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268637?format=api", "purl": "pkg:npm/apostrophe@2.79.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.79.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268638?format=api", "purl": "pkg:npm/apostrophe@2.80.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.80.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268639?format=api", "purl": "pkg:npm/apostrophe@2.81.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.81.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268640?format=api", "purl": "pkg:npm/apostrophe@2.81.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.81.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268641?format=api", "purl": "pkg:npm/apostrophe@2.81.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.81.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268642?format=api", "purl": "pkg:npm/apostrophe@2.82.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.82.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268643?format=api", "purl": "pkg:npm/apostrophe@2.83.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.83.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268644?format=api", "purl": "pkg:npm/apostrophe@2.83.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.83.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268645?format=api", "purl": "pkg:npm/apostrophe@2.84.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.84.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268646?format=api", "purl": "pkg:npm/apostrophe@2.84.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.84.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268647?format=api", "purl": "pkg:npm/apostrophe@2.85.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.85.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268648?format=api", "purl": "pkg:npm/apostrophe@2.86.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.86.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268649?format=api", "purl": "pkg:npm/apostrophe@2.87.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.87.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268650?format=api", "purl": "pkg:npm/apostrophe@2.88.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.88.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268651?format=api", "purl": "pkg:npm/apostrophe@2.88.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.88.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268652?format=api", "purl": "pkg:npm/apostrophe@2.89.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.89.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268653?format=api", "purl": "pkg:npm/apostrophe@2.89.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.89.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268654?format=api", "purl": "pkg:npm/apostrophe@2.90.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.90.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268655?format=api", "purl": "pkg:npm/apostrophe@2.91.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.91.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268656?format=api", "purl": "pkg:npm/apostrophe@2.91.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-pvxq-3qsf-efc5" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.91.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/78512?format=api", "purl": "pkg:npm/apostrophe@2.92.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.92.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268657?format=api", "purl": "pkg:npm/apostrophe@2.92.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.92.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268658?format=api", "purl": "pkg:npm/apostrophe@2.93.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.93.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268659?format=api", "purl": "pkg:npm/apostrophe@2.94.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.94.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268660?format=api", "purl": "pkg:npm/apostrophe@2.94.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.94.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268661?format=api", "purl": "pkg:npm/apostrophe@2.95.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.95.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268662?format=api", "purl": "pkg:npm/apostrophe@2.95.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.95.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268663?format=api", "purl": "pkg:npm/apostrophe@2.96.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.96.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/268664?format=api", "purl": "pkg:npm/apostrophe@2.96.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.96.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/268665?format=api", "purl": "pkg:npm/apostrophe@2.96.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.96.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/268666?format=api", "purl": "pkg:npm/apostrophe@2.97.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-5v79-remg-7ub4" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.97.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/78225?format=api", "purl": "pkg:npm/apostrophe@2.97.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.97.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539422?format=api", "purl": "pkg:npm/apostrophe@2.97.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.97.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539423?format=api", "purl": "pkg:npm/apostrophe@2.98.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.98.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539424?format=api", "purl": "pkg:npm/apostrophe@2.98.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.98.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539425?format=api", "purl": "pkg:npm/apostrophe@2.99.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.99.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539426?format=api", "purl": "pkg:npm/apostrophe@2.100.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.100.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539427?format=api", "purl": "pkg:npm/apostrophe@2.100.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.100.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539428?format=api", "purl": "pkg:npm/apostrophe@2.100.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.100.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539429?format=api", "purl": "pkg:npm/apostrophe@2.101.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.101.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539430?format=api", "purl": "pkg:npm/apostrophe@2.101.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.101.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539431?format=api", "purl": "pkg:npm/apostrophe@2.102.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539432?format=api", "purl": "pkg:npm/apostrophe@2.102.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539433?format=api", "purl": "pkg:npm/apostrophe@2.102.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539434?format=api", "purl": "pkg:npm/apostrophe@2.102.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539435?format=api", "purl": "pkg:npm/apostrophe@2.102.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/539436?format=api", "purl": "pkg:npm/apostrophe@2.102.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/539437?format=api", "purl": "pkg:npm/apostrophe@2.103.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.103.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539438?format=api", "purl": "pkg:npm/apostrophe@2.103.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.103.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539439?format=api", "purl": "pkg:npm/apostrophe@2.104.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.104.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539440?format=api", "purl": "pkg:npm/apostrophe@2.105.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.105.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539441?format=api", "purl": "pkg:npm/apostrophe@2.105.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.105.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539442?format=api", "purl": "pkg:npm/apostrophe@2.105.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.105.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539443?format=api", "purl": "pkg:npm/apostrophe@2.106.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539444?format=api", "purl": "pkg:npm/apostrophe@2.106.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539445?format=api", "purl": "pkg:npm/apostrophe@2.106.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539446?format=api", "purl": "pkg:npm/apostrophe@2.106.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539447?format=api", "purl": "pkg:npm/apostrophe@2.107.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.107.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539448?format=api", "purl": "pkg:npm/apostrophe@2.107.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.107.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539449?format=api", "purl": "pkg:npm/apostrophe@2.107.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.107.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539450?format=api", "purl": "pkg:npm/apostrophe@2.108.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.108.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539451?format=api", "purl": "pkg:npm/apostrophe@2.108.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.108.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539452?format=api", "purl": "pkg:npm/apostrophe@2.109.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.109.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539453?format=api", "purl": "pkg:npm/apostrophe@2.110.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.110.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539454?format=api", "purl": "pkg:npm/apostrophe@2.111.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539455?format=api", "purl": "pkg:npm/apostrophe@2.111.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539456?format=api", "purl": "pkg:npm/apostrophe@2.111.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539457?format=api", "purl": "pkg:npm/apostrophe@2.111.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539458?format=api", "purl": "pkg:npm/apostrophe@2.111.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/539459?format=api", "purl": "pkg:npm/apostrophe@2.111.5-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.5-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539460?format=api", "purl": "pkg:npm/apostrophe@2.112.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.112.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539461?format=api", "purl": "pkg:npm/apostrophe@2.112.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.112.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539462?format=api", "purl": "pkg:npm/apostrophe@2.113.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539463?format=api", "purl": "pkg:npm/apostrophe@2.113.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539464?format=api", "purl": "pkg:npm/apostrophe@2.113.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539465?format=api", "purl": "pkg:npm/apostrophe@2.113.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539466?format=api", "purl": "pkg:npm/apostrophe@2.114.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.114.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539467?format=api", "purl": "pkg:npm/apostrophe@2.115.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.115.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539468?format=api", "purl": "pkg:npm/apostrophe@2.115.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.115.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539469?format=api", "purl": "pkg:npm/apostrophe@2.116.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.116.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539470?format=api", "purl": "pkg:npm/apostrophe@2.116.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.116.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539471?format=api", "purl": "pkg:npm/apostrophe@2.117.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.117.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539472?format=api", "purl": "pkg:npm/apostrophe@2.117.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.117.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539473?format=api", "purl": "pkg:npm/apostrophe@2.118.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.118.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539474?format=api", "purl": "pkg:npm/apostrophe@2.119.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.119.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539475?format=api", "purl": "pkg:npm/apostrophe@2.119.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.119.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539476?format=api", "purl": "pkg:npm/apostrophe@2.220.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539477?format=api", "purl": "pkg:npm/apostrophe@2.220.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539478?format=api", "purl": "pkg:npm/apostrophe@2.220.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539479?format=api", "purl": "pkg:npm/apostrophe@2.220.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539480?format=api", "purl": "pkg:npm/apostrophe@2.220.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/539481?format=api", "purl": "pkg:npm/apostrophe@2.220.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/539482?format=api", "purl": "pkg:npm/apostrophe@2.220.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/539483?format=api", "purl": "pkg:npm/apostrophe@2.220.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/988896?format=api", "purl": "pkg:npm/apostrophe@2.220.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/988897?format=api", "purl": "pkg:npm/apostrophe@2.221.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.221.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988898?format=api", "purl": "pkg:npm/apostrophe@2.221.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.221.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/988899?format=api", "purl": "pkg:npm/apostrophe@2.222.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.222.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988900?format=api", "purl": "pkg:npm/apostrophe@2.223.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.223.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988901?format=api", "purl": "pkg:npm/apostrophe@2.223.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.223.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988902?format=api", "purl": "pkg:npm/apostrophe@2.224.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.224.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988903?format=api", "purl": "pkg:npm/apostrophe@2.225.0-alpha", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.225.0-alpha" }, { "url": "http://public2.vulnerablecode.io/api/packages/988904?format=api", "purl": "pkg:npm/apostrophe@2.225.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.225.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988905?format=api", "purl": "pkg:npm/apostrophe@2.226.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.226.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988906?format=api", "purl": "pkg:npm/apostrophe@2.227.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988907?format=api", "purl": "pkg:npm/apostrophe@2.227.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988908?format=api", "purl": "pkg:npm/apostrophe@2.227.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/988909?format=api", "purl": "pkg:npm/apostrophe@2.227.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/988910?format=api", "purl": "pkg:npm/apostrophe@2.227.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/988911?format=api", "purl": "pkg:npm/apostrophe@2.227.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/988912?format=api", "purl": "pkg:npm/apostrophe@2.227.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/988913?format=api", "purl": "pkg:npm/apostrophe@2.227.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/988914?format=api", "purl": "pkg:npm/apostrophe@2.227.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/988915?format=api", "purl": "pkg:npm/apostrophe@2.227.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/988916?format=api", "purl": "pkg:npm/apostrophe@2.227.10-beta.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.10-beta.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988917?format=api", "purl": "pkg:npm/apostrophe@2.227.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/988918?format=api", "purl": "pkg:npm/apostrophe@2.227.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/988919?format=api", "purl": "pkg:npm/apostrophe@2.227.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/539484?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539485?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539486?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539487?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/539488?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539489?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539490?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/539491?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/539492?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539493?format=api", "purl": "pkg:npm/apostrophe@3.0.0-alpha.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/539494?format=api", "purl": "pkg:npm/apostrophe@3.0.0-beta.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539495?format=api", "purl": "pkg:npm/apostrophe@3.0.0-beta.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539496?format=api", "purl": "pkg:npm/apostrophe@3.0.0-beta.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539497?format=api", "purl": "pkg:npm/apostrophe@3.0.0-beta.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539498?format=api", "purl": "pkg:npm/apostrophe@3.0.0-beta.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539499?format=api", "purl": "pkg:npm/apostrophe@3.0.0-beta.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539500?format=api", "purl": "pkg:npm/apostrophe@3.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539501?format=api", "purl": "pkg:npm/apostrophe@3.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539502?format=api", "purl": "pkg:npm/apostrophe@3.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539503?format=api", "purl": "pkg:npm/apostrophe@3.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/539504?format=api", "purl": "pkg:npm/apostrophe@3.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/539505?format=api", "purl": "pkg:npm/apostrophe@3.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/539506?format=api", "purl": "pkg:npm/apostrophe@3.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/539507?format=api", "purl": "pkg:npm/apostrophe@3.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-82j4-a56g-3kbq" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/59493?format=api", "purl": "pkg:npm/apostrophe@3.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-dsd6-hfud-ekfs" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/59494?format=api", "purl": "pkg:npm/apostrophe@3.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988920?format=api", "purl": "pkg:npm/apostrophe@3.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988921?format=api", "purl": "pkg:npm/apostrophe@3.5.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.5.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988922?format=api", "purl": "pkg:npm/apostrophe@3.6.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.6.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988923?format=api", "purl": "pkg:npm/apostrophe@3.7.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.7.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988924?format=api", "purl": "pkg:npm/apostrophe@3.8.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.8.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988925?format=api", "purl": "pkg:npm/apostrophe@3.8.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.8.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988926?format=api", "purl": "pkg:npm/apostrophe@3.9.0-prerelease-2021-12-22-001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.9.0-prerelease-2021-12-22-001" }, { "url": "http://public2.vulnerablecode.io/api/packages/988927?format=api", "purl": "pkg:npm/apostrophe@3.9.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.9.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988928?format=api", "purl": "pkg:npm/apostrophe@3.10.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.10.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988929?format=api", "purl": "pkg:npm/apostrophe@3.11.0-alpha.2022-01-20-001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.11.0-alpha.2022-01-20-001" }, { "url": "http://public2.vulnerablecode.io/api/packages/988930?format=api", "purl": "pkg:npm/apostrophe@3.11.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.11.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988931?format=api", "purl": "pkg:npm/apostrophe@3.12.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.12.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988932?format=api", "purl": "pkg:npm/apostrophe@3.13.0-alpha.2022-02-04-001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.13.0-alpha.2022-02-04-001" }, { "url": "http://public2.vulnerablecode.io/api/packages/988933?format=api", "purl": "pkg:npm/apostrophe@3.13.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.13.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988934?format=api", "purl": "pkg:npm/apostrophe@3.14.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988935?format=api", "purl": "pkg:npm/apostrophe@3.14.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988936?format=api", "purl": "pkg:npm/apostrophe@3.14.2-alpha.20220401", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.2-alpha.20220401" }, { "url": "http://public2.vulnerablecode.io/api/packages/988937?format=api", "purl": "pkg:npm/apostrophe@3.14.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/988938?format=api", "purl": "pkg:npm/apostrophe@3.15.0-alpha.20220317", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.15.0-alpha.20220317" }, { "url": "http://public2.vulnerablecode.io/api/packages/988939?format=api", "purl": "pkg:npm/apostrophe@3.15.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.15.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988940?format=api", "purl": "pkg:npm/apostrophe@3.16.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.16.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988941?format=api", "purl": "pkg:npm/apostrophe@3.16.1-alpha.20210331", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.16.1-alpha.20210331" }, { "url": "http://public2.vulnerablecode.io/api/packages/61359?format=api", "purl": "pkg:npm/apostrophe@3.16.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" }, { "vulnerability": "VCID-y2wc-ug1j-27cx" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.16.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988942?format=api", "purl": "pkg:npm/apostrophe@3.17.0-alpha.2022050201", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.17.0-alpha.2022050201" }, { "url": "http://public2.vulnerablecode.io/api/packages/988943?format=api", "purl": "pkg:npm/apostrophe@3.17.0-alpha.2022-04-18-01", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.17.0-alpha.2022-04-18-01" }, { "url": "http://public2.vulnerablecode.io/api/packages/61360?format=api", "purl": "pkg:npm/apostrophe@3.17.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.17.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988944?format=api", "purl": "pkg:npm/apostrophe@3.18.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.18.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988945?format=api", "purl": "pkg:npm/apostrophe@3.18.1-alpha.2022051001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.18.1-alpha.2022051001" }, { "url": "http://public2.vulnerablecode.io/api/packages/988946?format=api", "purl": "pkg:npm/apostrophe@3.18.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.18.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988947?format=api", "purl": "pkg:npm/apostrophe@3.19.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.19.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988948?format=api", "purl": "pkg:npm/apostrophe@3.20.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.20.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988949?format=api", "purl": "pkg:npm/apostrophe@3.20.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.20.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988950?format=api", "purl": "pkg:npm/apostrophe@3.21.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.21.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988951?format=api", "purl": "pkg:npm/apostrophe@3.21.1-alpha.2022060701", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.21.1-alpha.2022060701" }, { "url": "http://public2.vulnerablecode.io/api/packages/988952?format=api", "purl": "pkg:npm/apostrophe@3.21.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.21.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988953?format=api", "purl": "pkg:npm/apostrophe@3.22.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.22.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988954?format=api", "purl": "pkg:npm/apostrophe@3.22.1-alpha.2022062101", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.22.1-alpha.2022062101" }, { "url": "http://public2.vulnerablecode.io/api/packages/988955?format=api", "purl": "pkg:npm/apostrophe@3.22.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.22.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988956?format=api", "purl": "pkg:npm/apostrophe@3.23.0-alpha.2022070601", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.23.0-alpha.2022070601" }, { "url": "http://public2.vulnerablecode.io/api/packages/988957?format=api", "purl": "pkg:npm/apostrophe@3.23.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.23.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988958?format=api", "purl": "pkg:npm/apostrophe@3.24.0-alpha.2022071801", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.24.0-alpha.2022071801" }, { "url": "http://public2.vulnerablecode.io/api/packages/988959?format=api", "purl": "pkg:npm/apostrophe@3.24.0-alpha.2022072001", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.24.0-alpha.2022072001" }, { "url": "http://public2.vulnerablecode.io/api/packages/988960?format=api", "purl": "pkg:npm/apostrophe@3.24.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.24.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988961?format=api", "purl": "pkg:npm/apostrophe@3.25.0-alpha.2022080101", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.25.0-alpha.2022080101" }, { "url": "http://public2.vulnerablecode.io/api/packages/988962?format=api", "purl": "pkg:npm/apostrophe@3.25.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.25.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988963?format=api", "purl": "pkg:npm/apostrophe@3.26.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.26.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988964?format=api", "purl": "pkg:npm/apostrophe@3.26.1-alpha.2022081201", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.26.1-alpha.2022081201" }, { "url": "http://public2.vulnerablecode.io/api/packages/988965?format=api", "purl": "pkg:npm/apostrophe@3.26.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.26.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988966?format=api", "purl": "pkg:npm/apostrophe@3.27.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.27.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988967?format=api", "purl": "pkg:npm/apostrophe@3.28.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.28.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988968?format=api", "purl": "pkg:npm/apostrophe@3.28.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.28.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988969?format=api", "purl": "pkg:npm/apostrophe@3.29.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.29.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988970?format=api", "purl": "pkg:npm/apostrophe@3.29.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.29.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988971?format=api", "purl": "pkg:npm/apostrophe@3.30.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.30.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988972?format=api", "purl": "pkg:npm/apostrophe@3.31.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.31.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988973?format=api", "purl": "pkg:npm/apostrophe@3.32.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.32.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988974?format=api", "purl": "pkg:npm/apostrophe@3.33.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.33.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988975?format=api", "purl": "pkg:npm/apostrophe@3.34.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.34.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988976?format=api", "purl": "pkg:npm/apostrophe@3.35.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.35.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988977?format=api", "purl": "pkg:npm/apostrophe@3.36.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.36.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988978?format=api", "purl": "pkg:npm/apostrophe@3.37.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.37.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988979?format=api", "purl": "pkg:npm/apostrophe@3.38.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.38.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988980?format=api", "purl": "pkg:npm/apostrophe@3.38.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.38.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988981?format=api", "purl": "pkg:npm/apostrophe@3.39.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.39.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988982?format=api", "purl": "pkg:npm/apostrophe@3.39.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.39.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988983?format=api", "purl": "pkg:npm/apostrophe@3.39.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.39.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/988984?format=api", "purl": "pkg:npm/apostrophe@3.40.0-alpha", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.0-alpha" }, { "url": "http://public2.vulnerablecode.io/api/packages/988985?format=api", "purl": "pkg:npm/apostrophe@3.40.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988986?format=api", "purl": "pkg:npm/apostrophe@3.40.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988987?format=api", "purl": "pkg:npm/apostrophe@3.40.2-alpha", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.2-alpha" }, { "url": "http://public2.vulnerablecode.io/api/packages/988988?format=api", "purl": "pkg:npm/apostrophe@3.41.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.41.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988989?format=api", "purl": "pkg:npm/apostrophe@3.41.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.41.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988990?format=api", "purl": "pkg:npm/apostrophe@3.42.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.42.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988991?format=api", "purl": "pkg:npm/apostrophe@3.43.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.43.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988992?format=api", "purl": "pkg:npm/apostrophe@3.44.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.44.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988993?format=api", "purl": "pkg:npm/apostrophe@3.45.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.45.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988994?format=api", "purl": "pkg:npm/apostrophe@3.45.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.45.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/988995?format=api", "purl": "pkg:npm/apostrophe@3.46.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.46.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988996?format=api", "purl": "pkg:npm/apostrophe@3.47.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.47.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988997?format=api", "purl": "pkg:npm/apostrophe@3.48.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.48.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988998?format=api", "purl": "pkg:npm/apostrophe@3.49.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.49.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/988999?format=api", "purl": "pkg:npm/apostrophe@3.50.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.50.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989000?format=api", "purl": "pkg:npm/apostrophe@3.51.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.51.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989001?format=api", "purl": "pkg:npm/apostrophe@3.51.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.51.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989002?format=api", "purl": "pkg:npm/apostrophe@3.52.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.52.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989003?format=api", "purl": "pkg:npm/apostrophe@3.53.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.53.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989004?format=api", "purl": "pkg:npm/apostrophe@3.54.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.54.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989005?format=api", "purl": "pkg:npm/apostrophe@3.55.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.55.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989006?format=api", "purl": "pkg:npm/apostrophe@3.55.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.55.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989007?format=api", "purl": "pkg:npm/apostrophe@3.56.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.56.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989008?format=api", "purl": "pkg:npm/apostrophe@3.57.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.57.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989009?format=api", "purl": "pkg:npm/apostrophe@3.58.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.58.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989010?format=api", "purl": "pkg:npm/apostrophe@3.58.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.58.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989011?format=api", "purl": "pkg:npm/apostrophe@3.59.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.59.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989012?format=api", "purl": "pkg:npm/apostrophe@3.59.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.59.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989013?format=api", "purl": "pkg:npm/apostrophe@3.60.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.60.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989014?format=api", "purl": "pkg:npm/apostrophe@3.60.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.60.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989015?format=api", "purl": "pkg:npm/apostrophe@3.61.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.61.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989016?format=api", "purl": "pkg:npm/apostrophe@3.61.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.61.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989017?format=api", "purl": "pkg:npm/apostrophe@3.62.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.62.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989018?format=api", "purl": "pkg:npm/apostrophe@3.63.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989019?format=api", "purl": "pkg:npm/apostrophe@3.63.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989020?format=api", "purl": "pkg:npm/apostrophe@3.63.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989021?format=api", "purl": "pkg:npm/apostrophe@3.63.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989022?format=api", "purl": "pkg:npm/apostrophe@3.64.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.64.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989023?format=api", "purl": "pkg:npm/apostrophe@3.65.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.65.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989024?format=api", "purl": "pkg:npm/apostrophe@3.66.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.66.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989025?format=api", "purl": "pkg:npm/apostrophe@3.67.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989026?format=api", "purl": "pkg:npm/apostrophe@3.67.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989027?format=api", "purl": "pkg:npm/apostrophe@3.67.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989028?format=api", "purl": "pkg:npm/apostrophe@3.67.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989029?format=api", "purl": "pkg:npm/apostrophe@4.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989030?format=api", "purl": "pkg:npm/apostrophe@4.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989031?format=api", "purl": "pkg:npm/apostrophe@4.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989032?format=api", "purl": "pkg:npm/apostrophe@4.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989033?format=api", "purl": "pkg:npm/apostrophe@4.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989034?format=api", "purl": "pkg:npm/apostrophe@4.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989035?format=api", "purl": "pkg:npm/apostrophe@4.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989036?format=api", "purl": "pkg:npm/apostrophe@4.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989037?format=api", "purl": "pkg:npm/apostrophe@4.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989038?format=api", "purl": "pkg:npm/apostrophe@4.3.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989039?format=api", "purl": "pkg:npm/apostrophe@4.3.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989040?format=api", "purl": "pkg:npm/apostrophe@4.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989041?format=api", "purl": "pkg:npm/apostrophe@4.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989042?format=api", "purl": "pkg:npm/apostrophe@4.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989043?format=api", "purl": "pkg:npm/apostrophe@4.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989044?format=api", "purl": "pkg:npm/apostrophe@4.5.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989045?format=api", "purl": "pkg:npm/apostrophe@4.5.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989046?format=api", "purl": "pkg:npm/apostrophe@4.5.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989047?format=api", "purl": "pkg:npm/apostrophe@4.5.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989048?format=api", "purl": "pkg:npm/apostrophe@4.5.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/989049?format=api", "purl": "pkg:npm/apostrophe@4.6.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.6.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989050?format=api", "purl": "pkg:npm/apostrophe@4.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989051?format=api", "purl": "pkg:npm/apostrophe@4.7.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.7.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989052?format=api", "purl": "pkg:npm/apostrophe@4.7.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.7.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989053?format=api", "purl": "pkg:npm/apostrophe@4.7.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.7.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989054?format=api", "purl": "pkg:npm/apostrophe@4.8.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.8.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989055?format=api", "purl": "pkg:npm/apostrophe@4.8.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.8.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989056?format=api", "purl": "pkg:npm/apostrophe@4.9.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.9.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989057?format=api", "purl": "pkg:npm/apostrophe@4.10.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.10.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989058?format=api", "purl": "pkg:npm/apostrophe@4.11.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.11.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989059?format=api", "purl": "pkg:npm/apostrophe@4.11.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.11.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989060?format=api", "purl": "pkg:npm/apostrophe@4.11.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.11.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989061?format=api", "purl": "pkg:npm/apostrophe@4.12.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.12.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989062?format=api", "purl": "pkg:npm/apostrophe@4.13.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.13.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989063?format=api", "purl": "pkg:npm/apostrophe@4.14.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989064?format=api", "purl": "pkg:npm/apostrophe@4.14.1-beta.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.1-beta.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989065?format=api", "purl": "pkg:npm/apostrophe@4.14.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989066?format=api", "purl": "pkg:npm/apostrophe@4.14.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989067?format=api", "purl": "pkg:npm/apostrophe@4.15.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.15.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989068?format=api", "purl": "pkg:npm/apostrophe@4.15.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.15.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989069?format=api", "purl": "pkg:npm/apostrophe@4.15.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.15.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989070?format=api", "purl": "pkg:npm/apostrophe@4.16.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.16.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989071?format=api", "purl": "pkg:npm/apostrophe@4.17.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989072?format=api", "purl": "pkg:npm/apostrophe@4.17.1-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989073?format=api", "purl": "pkg:npm/apostrophe@4.17.1-alpha.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1-alpha.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989074?format=api", "purl": "pkg:npm/apostrophe@4.17.1-alpha.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1-alpha.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/989075?format=api", "purl": "pkg:npm/apostrophe@4.17.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989076?format=api", "purl": "pkg:npm/apostrophe@4.18.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.18.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989077?format=api", "purl": "pkg:npm/apostrophe@4.19.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.19.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989078?format=api", "purl": "pkg:npm/apostrophe@4.20.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.20.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989079?format=api", "purl": "pkg:npm/apostrophe@4.21.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.21.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989080?format=api", "purl": "pkg:npm/apostrophe@4.21.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.21.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989081?format=api", "purl": "pkg:npm/apostrophe@4.22.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.22.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989082?format=api", "purl": "pkg:npm/apostrophe@4.23.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.23.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989083?format=api", "purl": "pkg:npm/apostrophe@4.23.1-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.23.1-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989084?format=api", "purl": "pkg:npm/apostrophe@4.24.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.24.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989085?format=api", "purl": "pkg:npm/apostrophe@4.24.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.24.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989086?format=api", "purl": "pkg:npm/apostrophe@4.25.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.25.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989087?format=api", "purl": "pkg:npm/apostrophe@4.26.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989088?format=api", "purl": "pkg:npm/apostrophe@4.26.1-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.1-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989089?format=api", "purl": "pkg:npm/apostrophe@4.26.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989090?format=api", "purl": "pkg:npm/apostrophe@4.26.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989091?format=api", "purl": "pkg:npm/apostrophe@4.27.0-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.0-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989092?format=api", "purl": "pkg:npm/apostrophe@4.27.0-alpha.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.0-alpha.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/989093?format=api", "purl": "pkg:npm/apostrophe@4.27.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/989094?format=api", "purl": "pkg:npm/apostrophe@4.27.1-alpha.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.1-alpha.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/989095?format=api", "purl": "pkg:npm/apostrophe@4.27.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" }, { "vulnerability": "VCID-tm23-2xhx-87hc" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/114002?format=api", "purl": "pkg:npm/apostrophe@4.28.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.28.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1033488?format=api", "purl": "pkg:npm/apostrophe@4.28.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4twt-e5vw-m3em" }, { "vulnerability": "VCID-5tyh-bvgy-nuhe" }, { "vulnerability": "VCID-a7rh-r1sn-2udh" }, { "vulnerability": "VCID-ewtn-suju-dyeb" }, { "vulnerability": "VCID-h7q4-v6us-9ye4" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.28.1" } ], "references": [ { "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-33877", "reference_id": "", "reference_type": "", "scores": [ { "value": "0.00029", "scoring_system": "epss", "scoring_elements": "0.08861", "published_at": "2026-06-05T12:55:00Z" } ], "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-33877" }, { "reference_url": "https://github.com/apostrophecms/apostrophe", "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:L/I:N/A:N" }, { "value": "LOW", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/apostrophecms/apostrophe" }, { "reference_url": "https://github.com/apostrophecms/apostrophe/commit/e266cffd8c0d331a9b05c92bf11616556efcdc77", "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:L/I:N/A:N" }, { "value": "LOW", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2026-04-15T19:30:48Z/" } ], "url": "https://github.com/apostrophecms/apostrophe/commit/e266cffd8c0d331a9b05c92bf11616556efcdc77" }, { "reference_url": "https://github.com/apostrophecms/apostrophe/security/advisories/GHSA-mj7r-x3h3-7rmr", "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:L/I:N/A:N" }, { "value": "LOW", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2026-04-15T19:30:48Z/" } ], "url": "https://github.com/apostrophecms/apostrophe/security/advisories/GHSA-mj7r-x3h3-7rmr" }, { "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33877", "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:L/I:N/A:N" }, { "value": "LOW", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33877" }, { "reference_url": "https://github.com/advisories/GHSA-mj7r-x3h3-7rmr", "reference_id": "GHSA-mj7r-x3h3-7rmr", "reference_type": "", "scores": [], "url": "https://github.com/advisories/GHSA-mj7r-x3h3-7rmr" } ], "weaknesses": [ { "cwe_id": 208, "name": "Observable Timing Discrepancy", "description": "Two separate operations in a product require different amounts of time to complete, in a way that is observable to an actor and reveals security-relevant information about the state of the product, such as whether a particular operation was successful or not." }, { "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": "0.1 - 3.7", "exploitability": null, "weighted_severity": null, "risk_score": null, "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-a7rh-r1sn-2udh" }