Описание
Cross-Site Scripting (XSS) vulnerability through unescaped HTML attribute values
Impact
The prosemirror_to_html gem is vulnerable to Cross-Site Scripting (XSS) attacks through malicious HTML attribute values. While tag content is properly escaped, attribute values are not, allowing attackers to inject arbitrary JavaScript code.
Who is impacted:
- Any application using prosemirror_to_html to convert ProseMirror documents to HTML
- Applications that process user-generated ProseMirror content are at highest risk
- End users viewing the rendered HTML output could have malicious JavaScript executed in their browsers
Attack vectors include:
hrefattributes withjavascript:protocol:<a href="javascript:alert(document.cookie)">- Event handlers:
<div onclick="maliciousCode()"> onerrorattributes on images:<img src=x onerror="alert('XSS')">- Other HTML attributes that can execute JavaScript
Patches
A fix is currently in development. Users should upgrade to version 0.2.1 or later once released.
The patch escapes all HTML attribute values using CGI.escapeHTML to prevent injection attacks.
Workarounds
Until a patched version is available, users can implement one or more of these mitigations:
- Implement Content Security Policy (CSP): Add strict CSP headers to prevent inline JavaScript execution:
- Input validation: If possible, validate and sanitize ProseMirror documents before conversion to prevent malicious content from entering the system.
References
Ссылки
- https://github.com/etaminstudio/prosemirror_to_html/security/advisories/GHSA-52c5-vh7f-26fx
- https://nvd.nist.gov/vuln/detail/CVE-2025-64501
- https://github.com/etaminstudio/prosemirror_to_html/commit/4d59f94f550bcabeec30d298791bbdd883298ad8
- https://github.com/etaminstudio/prosemirror_to_html/blob/ea8beb32f6c37f29f042ba4155ccf18504da716e/lib/prosemirror_to_html.rb#L249
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/prosemirror_to_html/CVE-2025-64501.yml
- https://github.com/rubysec/ruby-advisory-db/blob/master/gems/prosemirror_to_html/GHSA-vfpf-xmwh-8m65.yml
Пакеты
prosemirror_to_html
< 0.2.1
0.2.1
Связанные уязвимости
ProsemirrorToHtml is a JSON converter which takes ProseMirror-compatible JSON and outputs HTML. In versions 0.2.0 and below, the `prosemirror_to_html` gem is vulnerable to Cross-Site Scripting (XSS) attacks through malicious HTML attribute values. While tag content is properly escaped, attribute values are not, allowing attackers to inject arbitrary JavaScript code. Applications that use `prosemirror_to_html` to convert ProseMirror documents to HTML, user-generated ProseMirror content, and end users viewing the rendered HTML output are all at risk of attack. This issue is fixed in version 0.2.1.