CVE-2026-41886 is a high-severity (CVSS 7.5) Cross-site Scripting (XSS) vulnerability in locize. A fix is available for locize — see the affected versions and patch details below.
locize Client SDK: Cross-origin DOM XSS & Handler Hijack Through Missing e.origin Validation in InContext Editor
Exploitation Status
No confirmed exploitation observed yet
- CISA’s own triage has not observed active exploitation or public proof-of-concept code for this CVE as of its last assessment.
Exploitation and automatability from CISA’s SSVC triage for CVE-2026-41886.
EPSS Exploitation Probability
EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.
How urgent is this, really
CVE-2026-41886 plotted by exploitation likelihood (EPSS) against impact (CVSS). The shaded corner — EPSS 50%+ and CVSS 7.0+ — is where this CVE doesn't sit, though severity or exploitability alone can still warrant action.
Where this sits among everything scored
Of 377,636 CVEs with a current EPSS score, this one falls in the < 10% band (highlighted). Real counts from FIRST.org, not a sample — log-scaled since the landscape is heavily right-skewed.
Real-World Exposure
How broadly this vulnerability is actually deployed: weekly install volume shows current usage, and reverse-dependency count shows how many other packages break if it stays unpatched.
locizenpmDescription
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-patchhandleEditKeyassigned attacker-controlled payload values toitem.node.innerHTMLand toitem.node.setAttribute(attr, value). That allowed planting<script>,<img onerror>, oronclick/onload/onfocusevent handlers; and on attribute writes,href="javascript:…"/src="data:text/html,<script>…"/style="…"/ etc. -
api.source/api.originhijack viaisLocizeEnabled: the handler setapi.source = e.source; api.origin = e.origin— attacker-controlled values. All subsequentsendMessagecalls (which post translations, callbacks, etc., back towardapi.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/.widthwere interpolated intocalc()expressions andpopup.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:
-
Primary — validate
event.originat the top ofwindow.addEventListener("message", …)insrc/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. -
Defence-in-depth —
handleEditKeynow rejects dangerous attribute-name writes (on*,style) andjavascript:/data:/vbscript:/file:URLs onhref/src/action/formaction/xlink:href;innerHTMLassignments 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. -
CSS-injection —
handleRequestPopupChangesnow requirescontainerStyle.height/.widthto 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
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 📦npm | locize | all versions | 4.0.21npm install locize@4.0.21 |
Detection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for locize, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.
Fix
Update locize to 4.0.21 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms CVE-2026-41886 is resolved across your whole dependency graph.
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.
How O3 protects you
O3 Security's impact-aware SCA analyses which vulnerable code paths your application actually calls, so a match like CVE-2026-41886 can be triaged on real exposure rather than presence alone.
Tailored to CVE-2026-41886. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.
Frequently Asked Questions
Is CVE-2026-41886 in your dependencies?
O3 Security finds CVE-2026-41886 across npm dependencies, including transitive ones, and its impact-aware SCA ranks findings by whether your code actually calls the vulnerable path.