Skip to content

Plate: Media embed provider metadata can bypass URL sanitization and execute iframe JavaScript

High severity GitHub Reviewed Published Jun 14, 2026 in udecode/plate • Updated Aug 25, 2026

Package

npm @platejs/media (npm)

Affected versions

>= 53.0.0, < 53.1.4

Patched versions

53.1.4

Description

Summary

The media embed renderer trusts serialized provider or sourceUrl metadata and skips the URL protocol validation that normally blocks unsafe media embed URLs. A crafted Plate document can set a known video provider while keeping url as a javascript: iframe source. When a victim opens that document in an app using the registry media embed component, the component renders the attacker URL directly as an iframe src.

Impact

An attacker who can create or share Plate document content with another user can execute JavaScript in the victim browser context when the victim opens the document. This can expose application data available to the page and perform actions as the victim, depending on the host application's session model.

Reproduction

Use a Plate editor or viewer that renders media embeds with the registry MediaEmbedElement and load a document containing this node:

{
  "type": "media_embed",
  "provider": "vimeo",
  "sourceUrl": "https://vimeo.com/1",
  "url": "javascript:parent.postMessage('plate-media-xss','*')",
  "children": [{ "text": "" }]
}

When rendered, the node is treated as a Vimeo media embed because provider is present. The iframe receives the unvalidated url value as its src.

Root Cause / Technical Details

parseMediaUrl is the intended hardening point for media embed URLs and rejects parser output unless the URL protocol is http: or https:. However, useMediaState had a fast path for serialized nodes that already contain provider or sourceUrl. That fast path returned { id, provider, sourceUrl, url } directly and did not call parseMediaUrl or otherwise validate the stored url.

The registry MediaEmbedElement then checks that embed.provider is one of the video providers and renders non-YouTube video providers with <iframe src={embed.url}>. Because provider is attacker-controlled serialized document metadata, it can be set to vimeo while url remains javascript:....

This is fixed in @platejs/media 53.1.4 by recomputing embed metadata from the render URL instead of trusting serialized provider, id, or sourceUrl metadata.

PoC Evidence

A browser proof using the same data flow set an iframe src to:

javascript:parent.postMessage('plate-media-xss','*')

Chromium executed the iframe JavaScript and the parent page received plate-media-xss, confirming execution from the iframe source.

Remediation

Upgrade @platejs/media to 53.1.4 or later. Treat provider, sourceUrl, and id in serialized documents as untrusted derived metadata. Recompute embed metadata from url with parseMediaUrl, or at minimum validate any fast-path url with the same protocol allowlist before rendering an iframe.

References

@zbeyens zbeyens published to udecode/plate Jun 14, 2026
Published by the National Vulnerability Database Jul 8, 2026
Published to the GitHub Advisory Database Aug 25, 2026
Reviewed Aug 25, 2026
Last updated Aug 25, 2026

Severity

High

CVSS overall score

This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).
/ 10

CVSS v3 base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
Low
User interaction
Required
Scope
Changed
Confidentiality
High
Integrity
High
Availability
None

CVSS v3 base metrics

Attack vector: More severe the more the remote (logically and physically) an attacker can be in order to exploit the vulnerability.
Attack complexity: More severe for the least complex attacks.
Privileges required: More severe if no privileges are required.
User interaction: More severe when no user interaction is required.
Scope: More severe when a scope change occurs, e.g. one vulnerable component impacts resources in components beyond its security scope.
Confidentiality: More severe when loss of data confidentiality is highest, measuring the level of data access available to an unauthorized user.
Integrity: More severe when loss of data integrity is the highest, measuring the consequence of data modification possible by an unauthorized user.
Availability: More severe when the loss of impacted component availability is highest.
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N

EPSS score

Exploit Prediction Scoring System (EPSS)

This score estimates the probability of this vulnerability being exploited within the next 30 days. Data provided by FIRST.
(36th percentile)

Weaknesses

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

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. Learn more on MITRE.

CVE ID

CVE-2026-55596

GHSA ID

GHSA-qj6x-xx2h-8hvv

Source code

Credits

Loading Checking history
See something to contribute? Suggest improvements for this vulnerability.