CVE-2025-53892
EPSS 0.54%vue-i18n's escapeParameterHtml does not prevent DOM-based XSS through its tag attributes
描述
### Summary The escapeParameterHtml: true option in Vue I18n is designed to protect against HTML/script injection by escaping interpolated parameters. However, this setting fails to prevent execution of certain tag-based payloads, such as `<img src=x onerror=...>`, if the interpolated value is inserted inside an HTML context using v-html. This may lead to a DOM-based XSS vulnerability, even when using escapeParameterHtml: true, if a translation string includes minor HTML and is rendered via v-html. ### Details When escapeParameterHtml: true is enabled, it correctly escapes common injection points. However, it does not sanitize entire attribute contexts, which can be used as XSS vectors via: `<img src=x onerror=alert(1)> ` ### PoC In your Vue I18n configuration: ``` const i18n = createI18n({ escapeParameterHtml: true, messages: { en: { vulnerable: 'Caution: <img src=x onerror="{payload}">' } } }); ``` Use this interpolated payload: `const payload = '<script>alert("xss")</script>';` Render the translation using v-html (even not using v-html): `<p v-html="$t('vulnerable', { payload })"></p> ` Expected: escaped content should render as text, not execute. Actual: script executes in some environments (or the payload is partially parsed as HTML). ### Impact This creates a DOM-based Cross-Site Scripting (XSS) vulnerability despite enabling a security option (escapeParameterHtml) .
受影響套件(5)
- npm/@intlify/core>= 9.0.0, < 9.14.5
- npm/@intlify/core-base>= 9.0.0, < 9.14.5
- npm/@intlify/vue-i18n-core>= 9.2.0, < 9.14.5
- npm/petite-vue-i18n>= 10.0.0, < 10.0.8
- npm/vue-i18n>= 9.0.0, < 9.14.5
CVSS 分數
| 來源 | 版本 | 嚴重程度 | 向量 |
|---|---|---|---|
| osv | CVSS 4.0 | — | CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N |
參考連結(10)
- ADVISORYhttps://nvd.nist.gov/vuln/detail/CVE-2025-53892
- PATCHhttps://github.com/intlify/vue-i18n
- WEBhttps://github.com/intlify/vue-i18n/commit/49f982443ab8fd94ecc427b265ce97d57df94d7e
- WEBhttps://github.com/intlify/vue-i18n/commit/a47099619fb9b256e86341a8658ebe72e92ab099
- WEBhttps://github.com/intlify/vue-i18n/pull/2229
- WEBhttps://github.com/intlify/vue-i18n/pull/2230
- WEBhttps://github.com/intlify/vue-i18n/releases/tag/v10.0.8
- WEBhttps://github.com/intlify/vue-i18n/releases/tag/v11.1.10
- WEBhttps://github.com/intlify/vue-i18n/releases/tag/v9.14.5
- WEBhttps://github.com/intlify/vue-i18n/security/advisories/GHSA-x8qp-wqqm-57ph