CVE-2026-70483: Open WebUI: Any authenticated user can cancel another user's chat generation via the chat delete endpoint
Summary DELETE /api/v1/chats/{id} cancelled a chat's in-flight tasks before it checked whether the caller was allowed to delete that chat. Any authenticated user who knew another user's chat id could therefore abort that user's running model response, title generation or tag generation. The deletion itself was still refused, so the only missing control was on the cancellation side effect.
Preconditions Default configuration, no special deployment shape. The attacker needs a normal account with the default user role and nothing else: the chat.delete permission is not required, and revoking it does not prevent the cancellation. The attacker also needs the victim's chat id, which is returned by the read-only shared-chat endpoint when a chat or a folder has been shared with them - otherwise enumerating the chat id requires guessing the chat id or brute forcing it, and the victim must have a generation running at that moment.
Impact A user can repeatedly interrupt another user's generations without any write access to the target chat. Nothing is deleted, modified or disclosed, and the victim can simply regenerate, so the effect is limited to availability of in-flight responses. Because the attacker only needs a chat id, the interruption can be scripted and repeated for as long as the id stays valid.
Fix Fixed in https://github.com/open-webui/open-webui/pull/27006, released in 0.11.0. The handler now resolves and authorizes the chat first and only cancels tasks and deletes once the caller is an admin or a permitted owner; an unauthorized caller gets 401 or 404 with no cancellation.
Root cause Affected component: deletechatbyid in backend/openwebui/routers/chats.py, serving DELETE /api/v1/chats/{id}. Affected setup: every build from 0.9.6 up to and including 0.10.2.
The cancellation was written as a cleanup step for the delete that follows it, and it was placed at the top of the handler so that it would run before the chat row disappeared. That put an unauthenticated-by-ownership side effect ahead of every check in the function: the admin branch, the chat.delete permission check, and the owner lookup all ran afterwards, so their outcome could no longer affect whether the tasks were stopped. The dedicated task-stop endpoint already verified ownership before calling the same helper, so the intended ordering existed elsewhere in the codebase.
Proof of concept Against a 0.10.2 instance with two accounts, a victim admin and an attacker holding the default user role, and an upstream that streams slowly:
1. As the victim, start a generation in a chat and confirm GET /api/tasks/chat/{chatid} reports one active task. 2. As the attacker, confirm GET /api/v1/chats/{chatid} returns 401, then send DELETE /api/v1/chats/{chatid}. 3. The delete is refused with 404, the chat still exists, but the victim's task list is now empty and the assistant message is marked done mid-generation. A control run without step 2 keeps generating.
Repeating step 2 with the chat.delete permission revoked for the user role returns 401 and still cancels the task. The same sequence against 0.11.0 leaves the task running.
Credits @GabrielGomesAL, who reported the missing authorization on the chat delete endpoint.
Other sources
Open WebUI is an extensible, feature-rich, and user-friendly self-hosted AI platform. From 0.9.6 until 0.11.0, DELETE /api/v1/chats/{id} cancelled a chat's in-flight tasks before checking whether the caller could delete that chat. Any authenticated user who knew another user's chat id could abort that user's running model response, title generation, or tag generation, even though the delete was refused and no chat data was deleted, modified, or disclosed. This issue is fixed in 0.11.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.11.0 - Upgrade
Upgrade
open-webuito a version that resolves this vulnerability.Fixed in 0.11.0Patch https://github.com/open-webui/open-webui/pull/27006 - Configuration
Update the handler logic so cancellation of in-flight tasks occurs only after the requestor is authorized to delete the chat (admin or permitted owner). Ensure unauthorized callers get 401 or 404 and no task cancellation side effect happens.
Open WebUI (backend/open_webui/routers/chats.py delete_chat_by_id) Authorization order for DELETE /api/v1/chats/{id} = Resolve and authorize chat (admin or permitted owner) before canceling in-flight tasks; for unauthorized callers return 401/404 without cancellation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-70483?
The severity of CVE-2026-70483 is low, with a score of 3.1.
How do I fix CVE-2026-70483?
To fix CVE-2026-70483, ensure proper authorization checks are implemented before allowing the deletion of chat tasks.
What type of vulnerability is CVE-2026-70483?
CVE-2026-70483 is a vulnerability that allows any authenticated user to cancel another user's chat generation.
What are the potential impacts of CVE-2026-70483?
The potential impact of CVE-2026-70483 includes unauthorized interruption of another user's chat tasks, which can disrupt user experience.
Who is affected by CVE-2026-70483?
Any authenticated user of the open-webui software is affected by CVE-2026-70483.