Open WebUI CVE-2026-44571
MEDIUMSeverity by source
AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
Primary rating from GitHub Advisory · only source for this CVE.
CVSS VectorGitHub Advisory
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
Lifecycle Timeline
3DescriptionGitHub Advisory
Vulnerability Description
In standard channels (i.e., channels whose channel.type is neither group nor dm), the endpoint
POST /api/v1/channels/{channel_id}/messages/{message_id}/update can be accessed with read permission only.
When access_control is set to None, the authorization check has_access(..., type="read") evaluates to True, allowing users who are not the message owner to update messages.
As a result, unauthorized modification of other users’ messages is possible.
---
Attack Prerequisites
- The attacker is an authenticated user (role
useror higher) - The target channel is a standard channel (i.e., not
groupordm) access_controlisNoneor allowsreadaccess- The attacker can obtain the target
message_id(e.g., via the channel’s message list)
Attack Scenario
- The attacker (User B) retrieves another user’s
message_idfrom the message list in a standard channel - The attacker sends a request to
POST /api/v1/channels/{channel_id}/messages/{message_id}/update
- The message authored by another user (User A) is successfully updated
Potential Impact
- Unauthorized modification of other users’ messages (violation of data integrity)
Steps to Reproduce
- Log in as an administrator
<img width="3334" height="1668" alt="image" src="https://github.com/user-attachments/assets/b20323d3-c050-4438-8912-193a417654bc" />
- Create User A
<img width="3346" height="788" alt="image" src="https://github.com/user-attachments/assets/b9e4fb8a-b14e-4a4b-b012-02ccfba52fca" />
- Create User B
<img width="3354" height="796" alt="image" src="https://github.com/user-attachments/assets/f3cf6892-e6c9-4778-b471-f1cc0deec6c8" />
- Log in as User A
<img width="3360" height="1668" alt="image" src="https://github.com/user-attachments/assets/5264ee07-f5c5-4bbe-ad4f-da69fb540fc9" />
- Log in as User B
<img width="3354" height="1670" alt="image" src="https://github.com/user-attachments/assets/f112f8e8-b3e2-4e65-b226-c7b6c986f3bb" />
- As the administrator, create a new channel
<img width="2582" height="988" alt="image" src="https://github.com/user-attachments/assets/bc012d9a-f884-4c83-b6bb-d1e5399f61bb" />
- As User A, post a new message in the channel
<img width="2626" height="962" alt="image" src="https://github.com/user-attachments/assets/d7ff12c2-fe17-44f0-aaf9-5ce2bac9a378" />
- As User B, edit User A’s message
<img width="2604" height="958" alt="image" src="https://github.com/user-attachments/assets/8e19ec3e-fdda-4d36-acd5-f3e1fd3402dd" />
- Confirm that User A’s message has been modified without authorization
<img width="2378" height="1976" alt="image" src="https://github.com/user-attachments/assets/6415fd41-ac68-4d42-83c9-6297caee1fb4" />
Affected Files and Line Numbers
backend/open_webui/routers/channels.py:1417-1460
The authorization check in update_message_by_id allows access with read permission
backend/open_webui/utils/access_control.py:124-135
When access_control=None and strict=True, read access is permitted
backend/open_webui/models/messages.py:341-358
The update logic does not enforce any message ownership check
Recommended Mitigation
Update the condition in
backend/open_webui/routers/channels.py:1451-1456
by changing the permission check from read to write, so that only administrators, message owners, or users with write permission can update messages.
Proposed Changes
- For standard channels, change the update permission requirement from
has_access(..., type="read") to has_access(..., type="write")
- Preserve the existing ownership check (
message.user_id == user.id)
AI Usage
- Translation from Japanese to English
- CWE classification and assessment
- Affected Files and Line Numbers
AnalysisAI
Improper authorization in Open WebUI versions up to 0.8.5 allows authenticated users to modify messages in standard channels by exploiting a read-permission check that should require write permission. The vulnerability affects the POST /api/v1/channels/{channel_id}/messages/{message_id}/update endpoint when access_control is set to None, enabling message tampering without ownership verification. Patch available in version 0.8.6.
Technical ContextAI
Open WebUI's authorization system uses a has_access() function (in backend/open_webui/utils/access_control.py) that validates channel permissions by type ('read', 'write'). The vulnerable update_message_by_id endpoint in backend/open_webui/routers/channels.py (lines 1417-1460) checks only for read access instead of write access when access_control is None. CWE-862 (Missing Authorization) is the root cause-the endpoint fails to enforce that only message owners or administrators can modify messages. In standard channels (where channel.type is neither 'group' nor 'dm'), the authorization check incorrectly permits read-only users to call the message update API. The models/messages.py layer (lines 341-358) performs the actual update without re-validating ownership after authorization passes.
RemediationAI
Immediately upgrade to Open WebUI version 0.8.6 or later, which changes the authorization check from read to write permission for the message update endpoint. If immediate patching is not possible, implement network-level access controls to restrict authenticated users' ability to enumerate message IDs or call the update endpoint (deploy a WAF rule blocking POST /api/v1/channels/*/messages/*/update requests from non-admin users). Alternatively, set access_control explicitly to enforce write-level permissions for standard channels, though this requires code configuration review and testing. The most reliable mitigation is patching, as workarounds may degrade legitimate functionality. See GitHub advisory at https://github.com/open-webui/open-webui/security/advisories/GHSA-jgj3-r8hr-9pjw for patch verification.
Same weakness CWE-862 – Missing Authorization
View allSame technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
GHSA-jgj3-r8hr-9pjw