CVE-2026-70494: Open WebUI: A folder write-collaborator can permanently delete the owner's chats by deleting a shared subfolder
Summary A user granted write access to a shared chat folder could permanently delete chats and messages belonging to the folder's owner. Deleting a folder cascades into the owner's chats and the entire subfolder subtree, and the deletion handler required only write access on subfolders instead of ownership. Root folders were restricted to the owner or an admin, subfolders were not.
Preconditions The Folders Sharing permission (user.permissions.sharing.folders) must be enabled; it is off by default. The victim must have shared a folder with the attacker at write access. features.folders and the chat.delete permission are enabled by default and are both required. Deployments that leave folder sharing disabled are not affected, and neither are single-user instances.
Impact Permanent, irreversible destruction of another user's chat history within and beneath a shared folder. With deletecontents=false the same request instead force-moved the owner's chats out of the folder, an unauthorized relocation rather than a deletion. The write grant on the shared root folder is inherited by every descendant, so the attacker could destroy subfolders that were never explicitly shared with them. Nothing outside the shared folder's subtree is reachable, and no data is disclosed that write access did not already expose.
Fix Fixed in 0.11.0 by https://github.com/open-webui/open-webui/pull/27003. Folder deletion is now restricted to the folder owner or an admin for root folders and subfolders alike, replacing the previous root/subfolder split with a single check. Upgrading fully resolves the issue; no configuration change is required. Owners and admins are unaffected, and a write-collaborator can still create, rename and add to shared folders and delete subfolders they own.
Root cause Affected component: backend/openwebui/routers/folders.py, the DELETE /api/v1/folders/{id} handler. Affected setup: any release from 0.10.0 onward that has folder sharing enabled.
The cascade that follows the authorization check is bound to the folder owner's id, not the caller's, so whoever passes the check deletes the owner's data. The check itself branched on whether the folder had a parent: root folders demanded ownership or admin, while subfolders accepted any write grant. Because write grants propagate down the folder tree, that branch handed every collaborator deletion rights over the owner's subtree, which is broader than what the sharing model grants write access.
Credits @legobattman, who reported the issue and its remediation.
Other sources
Open WebUI is an extensible, feature-rich, and user-friendly self-hosted AI platform. From 0.10.0 until 0.11.0, the DELETE /api/v1/folders/{id} handler in backend/openwebui/routers/folders.py allowed a user granted write access to a shared chat folder to permanently delete chats and messages belonging to the folder owner. The cascade following the authorization check is bound to the folder owner's id, but the subfolder check accepted any inherited write grant instead of requiring ownership or administrator status. A collaborator can destroy the owner's subtree or force-move chats out of it when deletecontents=false. 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/27003 - Configuration
If you cannot upgrade immediately, disable folder sharing (it must be enabled for the affected behavior to occur); it is off by default.
Open WebUI Folders Sharing user.permissions.sharing.folders = disabled
Event History
Frequently Asked Questions
What is the severity of CVE-2026-70494?
CVE-2026-70494 has a high severity rating of 8.1.
What vulnerability does CVE-2026-70494 describe?
CVE-2026-70494 allows a user with write access to a shared chat folder to permanently delete the owner's chats and messages.
How can I mitigate CVE-2026-70494?
To mitigate CVE-2026-70494, restrict write access to shared chat folders and review user permissions regularly.
What are the potential impacts of CVE-2026-70494?
The potential impacts of CVE-2026-70494 include loss of chat history and messages for the folder's owner.
When was CVE-2026-70494 published?
CVE-2026-70494 was published on August 4, 2026.