CVE-2026-54889 PUBLISHED

Unsanitized URL schemes in MDEx Quill Delta output allow javascript: injection (XSS)

Assigner: EEF
Reserved: 16.06.2026 Published: 29.06.2026 Updated: 30.06.2026

Improper Neutralization of Input During Web Page Generation (XSS) vulnerability in leandrocp mdex allows cross-site scripting via unsanitized URL schemes in Quill Delta output.

'Elixir.MDEx':to_delta/2 converts Markdown into a Quill Delta. 'Elixir.MDEx.DeltaConverter':default_convert_node/3 in lib/mdex/delta_converter.ex copies the URL of a link, wikilink, or image node directly from the parsed Markdown into the Delta "link" or "image" attribute without applying a scheme allowlist or any normalization.

An attacker who controls the Markdown text can supply a javascript: URL (for example click) that survives verbatim into the Delta attribute. When the Delta is rendered to HTML by a downstream renderer (such as quill-delta-to-html or the Quill client), the attribute becomes an or <img src>, and the javascript: scheme executes in the browser of anyone who views the rendered content. The link and wikilink cases are the strongest vectors because javascript: in an href executes on click; the image case is lower impact because javascript: in <img src> generally does not execute in modern browsers.

This issue affects mdex: from 0.8.3 before 0.13.2.

Metrics

CVSS Vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:L/VI:L/VA:N/SC:L/SI:L/SA:N
CVSS Score: 5.1

Product Status

Vendor leandrocp
Product mdex
Versions Default: unaffected
  • affected from 0.8.3 to 0.13.2 (excl.)
Vendor leandrocp
Product mdex
Versions Default: unaffected
  • affected from 9852db2456fdc9d856eb636603a7f608e22e3793 to 2817147f5b87ce7186aa604c9ee72499485b8f2f (excl.)

Affected Configurations

The application must pass untrusted Markdown to 'Elixir.MDEx':to_delta/2 and then render the resulting Quill Delta to HTML with a renderer that maps the "link" and "image" attributes to href and src without applying its own URL scheme sanitization (for example quill-delta-to-html or the Quill client).

Workarounds

Sanitize the Quill Delta produced by 'Elixir.MDEx':to_delta/2 before rendering it: drop or blank any "link" or "image" value whose URL scheme is not in a safe allowlist (http, https, mailto, tel).

Credits

  • Peter Ullrich finder
  • Leandro Pereira remediation developer
  • Jonatan Männchen / EEF analyst

References

Problem Types

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

Impacts

  • CAPEC-244 XSS Targeting URI Placeholders