Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
📦 npm

GHSA-w937-fg2h-xhq2

HIGHFix: locize/locize@d006b75

GHSA-w937-fg2h-xhq2 is a high-severity (CVSS 7.5) Cross-site Scripting (XSS) vulnerability in locize. O3 Security confirms whether GHSA-w937-fg2h-xhq2 is actually reachable in your code before you act, and blocks exploitation at runtime until you patch.

locize Client SDK: Cross-origin DOM XSS & Handler Hijack Through Missing e.origin Validation in InContext Editor

Also known asCVE-2026-41886
Published
Apr 22, 2026
Updated
May 13, 2026
Affected
1 pkg
Patched
1 / 1
Exploits
None indexed

Real-World Exposure

1 pkg affected
📦locize

Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects npm packages — download data is not available via public APIs for these ecosystems.

Description

Summary

Versions of the locize client SDK (the browser module that wires up the locize InContext translation editor) prior to 4.0.21 register a window.addEventListener("message", …) handler that dispatches to registered internal handlers (editKey, commitKey, commitKeys, isLocizeEnabled, requestInitialize, …) without validating event.origin.

The pre-patch listener in src/api/postMessage.js gates dispatch on event.data.sender === "i18next-editor-frame" — that value sits inside the attacker-controlled message payload, not the browser-enforced origin. Any web page that could embed or be embedded by a locize-enabled host — an iframe on a third-party page, a window.open-ed victim, a parent frame reaching down — could send a crafted postMessage and trigger the internal handlers.

Impact

Depending on which handler the attacker invokes, distinct consequences follow. All of them share the same root cause: the handlers implicitly assumed the payload came from the real editor iframe.

  • Cross-origin DOM XSS via editKey / commitKeys: the pre-patch handleEditKey assigned attacker-controlled payload values to item.node.innerHTML and to item.node.setAttribute(attr, value). That allowed planting <script>, <img onerror>, or onclick/onload/onfocus event handlers; and on attribute writes, href="javascript:…" / src="data:text/html,<script>…" / style="…" / etc.

  • api.source / api.origin hijack via isLocizeEnabled: the handler set api.source = e.source; api.origin = e.origin — attacker-controlled values. All subsequent sendMessage calls (which post translations, callbacks, etc., back toward api.source) would go to the attacker window rather than the real editor, leaking translation content and any metadata the SDK forwards.

  • CSS-injection / layout-escape via requestPopupChanges: containerStyle.height / .width were interpolated into calc() expressions and popup.style.setProperty() without validation, allowing attackers to inject additional CSS declarations (semicolons, behavior:url() on legacy IE, CSS-exfil patterns) into the popup inline style.

Exploitation requires the attacker-owned page to share a window reference with the locize-enabled host: typical vectors are an iframe on an attacker-controlled page, a window.opener/window.open relationship, or a parent frame that can postMessage into an embedded locize host. The SDK intended model is that only the editor iframe at https://incontext.locize.app (or the configured staging/development origin) can reach these handlers.

Affected versions

All versions of locize prior to 4.0.21.

Patch

Fixed in 4.0.21. Two layers:

  1. Primary — validate event.origin at the top of window.addEventListener("message", …) in src/api/postMessage.js. The expected origin is the configured iframe origin (getIframeUrl()), so custom environments continue to work. Messages from any other origin are silently dropped before any handler runs.

  2. Defence-in-depthhandleEditKey now rejects dangerous attribute-name writes (on*, style) and javascript: / data: / vbscript: / file: URLs on href / src / action / formaction / xlink:href; innerHTML assignments are sanitised through a throwaway DOMParser document (stripping <script>, <iframe>, <object>, <embed>, <link>, <meta>, <base>, <style> plus event handlers and dangerous URL schemes). Legitimate translation formatting (<b>, <em>, <strong>, <a href="https://…">, etc.) passes through.

  3. CSS-injectionhandleRequestPopupChanges now requires containerStyle.height / .width to match a strict CSS length pattern; malformed values are dropped silently.

Workarounds

No workaround short of upgrading.

Credits

Discovered via an internal security audit of the locize ecosystem.

Affected Packages

1 total 1 fixed
EcosystemPackageVulnerable rangeFix
📦npmlocizeall versions4.0.21

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for locize. O3's reachability analysis confirms whether the vulnerable code path is actually invoked in your application, so you act on real exposure instead of every transitive match.

  2. Fix

    Update locize to 4.0.21 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-w937-fg2h-xhq2 is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 pinpoints whether GHSA-w937-fg2h-xhq2 is reachable in your code and exactly where to fix it, then blocks exploitation in production at runtime until the patched version is deployed.

Tailored to GHSA-w937-fg2h-xhq2. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Frequently Asked Questions

### Summary Versions of the `locize` client SDK (the browser module that wires up the locize InContext translation editor) prior to 4.0.21 register a `window.addEventListener("message", …)` handler that dispatches to registered internal handlers (`editKey`, `commitKey`, `commitKeys`, `isLocizeEnabled`, `requestInitialize`, …) **without validating `event.origin`**. The pre-patch listener in `src/api/postMessage.js` gates dispatch on `event.data.sender === "i18next-editor-frame"` — that value sits inside the attacker-controlled message payload, not the browser-enforced origin. Any web page tha
O3 Security · Impact-Aware SCA

Is GHSA-w937-fg2h-xhq2 in your dependencies?

O3 detects GHSA-w937-fg2h-xhq2 across npm dependencies and uses function-level reachability to confirm whether the vulnerable code path is actually reachable — not just present. No false positives.

GHSA-w937-fg2h-xhq2: locize Cross-Site… | O3 Security