GHSA-fmqh-xp37-5hr8
Dashboard / Vulnerabilities / GHSA-fmqh-xp37-5hr8
Summary: Open WebUI: Channel members can overwrite another member's message via the chat completions endpoint
Details: ## Summary Any member of a channel who can post to it could also replace the text of a message written by a different member. The channel branch of the chat completions endpoint checked that the caller may write to the channel, and that the targeted message belongs to that channel, but never checked that the caller actually wrote the message being edited. The message kept its original author, so the replacement text was displayed and stored as though the victim had written it. The dedicated channel message edit route performed the authorship check correctly and refused the same edit, so the two paths disagreed about who may modify a message. ## Preconditions - Channels must be enabled. `ENABLE_CHANNELS` defaults to `False`, so a default deployment is not affected until an administrator turns channels on. - The attacker must be an approved user holding write access to the target channel, which is the ordinary state for any participant. No elevated role, group membership or additional permission is needed, and the attacker does not need to be the channel owner. - The attacker must know the id of the targeted message. That id is returned to every member who reads the channel, so it requires no further access. - Channels the attacker cannot post to are not affected, and neither are deployments with channels disabled. ## Impact An attacker can rewrite what another member said, under that member's name, in a shared channel. The stored record and every later reader show the victim as the author of text they never wrote, so this is a loss of both integrity and non-repudiation: the victim cannot point to the record to show what they actually said. A conversation can be silently altered after the fact rather than only appended to. How much control the attacker has over the replacement text depends on the configured model, because the text is produced by generating a completion into the victim's message. Reducing a message to unrelated or empty content works regardless of the model, while reproducing an exact attacker-chosen string requires a model that returns the supplied prompt closely enough. The attack grants no new role or permission, does not reach channels the attacker cannot already post to, and exposes no message content they could not already read. ## Fix Fixed in 0.11.1 by commit `7d392bedc` (#28631). The gate on the channel branch now also compares the targeted message's author against the calling user and refuses when they differ, which is the condition the dedicated channel message update route already applied. Administrators retain the ability to edit any message, on both paths, as before. Upgrading to 0.11.1 fully resolves this, and no configuration change is required. ## Root cause Affected components: - the channel branch of the chat completions handler, which resolves a client-supplied message id for editing - the channel event emitter, which re-checks the message before persisting the update Not affected: the dedicated channel message update route, which already held the correct check. The channel branch was written to answer the question of whether the caller may write into this channel and whether the message belongs to it. Both of those checks were present and effective. The question it never asked was whether the caller wrote the message. Ownership of a channel message is carried by the message record rather than by the channel, so channel-level write access was treated as sufficient authority over every message inside it. The dedicated edit route grew the authorship comparison because editing is its only purpose, while the completions path reached the same operation through a general-purpose entry point and inherited only the coarser channel check. ## Proof of concept Reproduced against a running instance built from the development branch, with channels enabled and an OpenAI-compatible upstream that echoes the submitted prompt so the replacement text is deterministic. Setup, entirely through the ordinary API: an administrator creates two further accounts, Alice and Mallory, both with the plain user role and no additional permissions, creates a channel, and grants both accounts read and write access. Alice posts a message reading `ALICE ORIGINAL MESSAGE`. Nothing is written directly to the database. Control, through the dedicated route: ``` POST /api/v1/channels/<channel_id>/messages/<alice_message_id>/update Authorization: Bearer <mallory_token> {"content": "PWNED_BY_MALLORY"} -> 403 ``` Attack, submitting the same target id to the completions endpoint: ``` POST /api/chat/completions Authorization: Bearer <mallory_token> {"model": "<model>", "stream": true, "chat_id": "channel:<channel_id>", "id": "<alice_message_id>", "messages": [{"role": "user", "content": "PWNED_BY_MALLORY"}]} -> 200 ``` Reading the channel back afterwards shows the targeted message content replaced with the attacker's string while its recorded author is still Alice. ## Credits - **@Classic298** — identified that the completions path and the dedicated edit route disagreed on message authorship, and reproduced the cross-member overwrite end to end.
References: https://github.com/open-webui/open-webui/security/advisories/GHSA-fmqh-xp37-5hr8, https://nvd.nist.gov/vuln/detail/CVE-2026-87994, https://github.com/open-webui/open-webui/pull/28631, https://github.com/open-webui/open-webui/commit/7d392bedc9c1aaecc94509a58e59186b614433dc, https://github.com/open-webui/open-webui, https://github.com/open-webui/open-webui/releases/tag/v0.11.1
Affected packages
Package
Name: open-webui
Purl: pkg:pypi/open-webui
Affected ranges
Type: ECOSYSTEM
Events:
