CVE-2026-59214: Open WebUI: Stored web worker XSS via Pyodide
Title: Same-origin Pyodide code execution allows server-side RCE via a shared chat
Summary
Open WebUI runs client-side Python (Pyodide) in a same-origin web worker. Through Pyodide's JavaScript API (pyodide.http.pyfetch, or the js module which exposes the page's fetch / XMLHttpRequest) executed Python can issue requests on the application origin, and those requests carry the victim's session cookie. A low-privileged user can store such a payload in a chat message, share the chat, and when a victim opens it and clicks Run the payload executes authenticated same-origin requests as the victim. When the victim is an admin (or a user holding workspace.functions / workspace.tools permissions) the payload creates a Function/Tool whose body runs server-side, yielding remote code execution.
Details
Pyodide's js bridge gives Python in the worker the same reach as inline JavaScript on the origin, and the worker is same-origin, so a credentialed request to the app's own API is authenticated as the victim. No separate XSS sink is required: storing the payload in a shared chat and having the victim run it is enough.
python from pyodide.http import pyfetch import json await pyfetch('/api/v1/functions/create', method='POST', credentials='include', headers={'Content-Type': 'application/json'}, body=json.dumps({'id': 'x', 'name': 'x', 'meta': {'description': 'x'}, 'content': "import os; os.system('<attacker command>')"}))
Impact
When the victim runs the shared code, an authenticated low-privileged user achieves remote code execution on the server (the created Function/Tool runs server-side Python) if the victim is an admin or holds workspace.functions / workspace.tools permissions. More generally the executed code can issue any authenticated request as the victim. Requires the victim to click Run, and Open WebUI configured to use Pyodide.
Patched
Pyodide now runs in a sandboxed iframe at an opaque origin by default (sandbox="allow-scripts", no allow-same-origin). At an opaque origin pyfetch, fetch and XMLHttpRequest to the app become cross-origin requests that carry no session cookie and are CORS-blocked, and the js bridge operates on the isolated iframe window with no access to the parent's cookie, token, localStorage or DOM. Full Python, JavaScript and external fetch keep working. IDBFS persistence is available only behind ENABLEPYODIDEFILEPERSISTENCE=true, which restores the same-origin worker and re-accepts this risk.
Workaround
Until upgraded, disable Pyodide code execution or set the Code Execution / Code Interpreter engine to a server-side option.
Credits
@gg0h
Other sources
Open WebUI is an extensible, feature-rich, and user-friendly self-hosted AI platform. Prior to 0.10.0, Open WebUI runs client-side Python with Pyodide in a same-origin web worker, allowing stored chat payloads that use pyodide.http.pyfetch or the js module fetch and XMLHttpRequest APIs to issue authenticated same-origin requests when a victim clicks Run, which can reach admin-only endpoints and execute server-side code through configured tools. This issue is fixed in version 0.10.0.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/open-webuito a version that resolves this vulnerability.Fixed in 0.10.0 - Upgrade
Upgrade
Open WebUIto a version that resolves this vulnerability.Fixed in 0.10.0 - Configuration
Ensure Pyodide file persistence is not enabled. The text states that persistence is available only behind ENABLE_PYODIDE_FILE_PERSISTENCE=true (which restores the same-origin worker and re-accepts the risk), so set ENABLE_PYODIDE_FILE_PERSISTENCE to false / do not use ENABLE_PYODIDE_FILE_PERSISTENCE=true.
Open WebUI (Pyodide) ENABLE_PYODIDE_FILE_PERSISTENCE = false - Configuration
Until upgraded to 0.10.0, disable Pyodide code execution OR configure the Code Execution / Code Interpreter engine to a server-side option, as described in the workaround.
Open WebUI (Pyodide) Pyodide code execution / Code Execution (Code Interpreter) engine = server-side option - Compensating control
Until upgraded to 0.10.0, mitigate the impact by preventing untrusted users from having a victim (especially an admin, or users with workspace.functions / workspace.tools permissions) click **Run** on shared chat content that can trigger Pyodide execution. The issue requires the victim to click Run.
Event History
Frequently Asked Questions
What is the severity of CVE-2026-59214?
CVE-2026-59214 has a severity rating of high, with a score of 7.3.
How do I fix CVE-2026-59214?
To fix CVE-2026-59214, upgrade Open WebUI to version 0.10.0 or later.
What type of vulnerability is CVE-2026-59214?
CVE-2026-59214 is categorized as a stored cross-site scripting (XSS) vulnerability.
Which software is affected by CVE-2026-59214?
CVE-2026-59214 affects the Open WebUI software prior to version 0.10.0.
What attack vector is used in CVE-2026-59214?
CVE-2026-59214 allows attackers to exploit the vulnerability via the same-origin web worker.