CVE-2026-44558: open-webui: permission bypass exposes channels publicly
GHSA-7rjh-px4v-5w55 MEDIUM CISA: TRACK*Open WebUI's channel router omits the `filter_allowed_access_grants()` call that every other resource type (knowledge, models, notes, prompts, tools, skills) correctly invokes before persisting access control data — meaning any authenticated user can craft a channel creation or update request that sets a public wildcard grant, silently overriding the admin's sharing policy. While CVSS is a moderate 5.4 and there is no active exploitation (not in CISA KEV, no public exploit code, no Nuclei template), the attack is trivially simple: a single authenticated HTTP POST with a crafted `access_grants` payload suffices, with zero specialized knowledge required. This is the 53rd CVE in the open-webui package (risk score 38/100), signaling a persistent pattern of security gaps in this AI interface layer — a high-value target given it proxies LLM conversations that often contain sensitive business data. Organizations running Open WebUI with multi-tenant or role-segmented access models should upgrade to 0.9.0 immediately; as a short-term workaround, restrict channel creation to administrators only and audit all existing channel access grants for unintended wildcard entries.
What is the risk?
Medium risk overall, elevated for multi-tenant and enterprise Open WebUI deployments. Exploitation requires only a valid user account and a crafted HTTP request — no prior knowledge of AI/ML internals, no social engineering, no elevated privilege. The blast radius depends entirely on how sensitive the AI conversations stored in affected channels are and how strictly the admin has tried to enforce sharing policies. Deployments where all users are equally trusted (e.g., a small team) face negligible real-world impact. Deployments where the admin has intentionally limited public sharing — common in regulated industries using Open WebUI as an LLM interface — face a meaningful confidentiality and integrity gap: users can expose channels the admin intended to keep private, and can also grant individual-user access in environments where only group-based sharing was permitted.
How does the attack unfold?
What systems are affected?
| Package | Ecosystem | Vulnerable Range | Patched |
|---|---|---|---|
| Open WebUI | pip | <= 0.8.12 | 0.9.0 |
Do you use Open WebUI? You're affected.
How severe is it?
What is the attack surface?
What should I do?
5 steps-
Patch: Upgrade open-webui to 0.9.0 (patched release adds
filter_allowed_access_grants()call to channel create and update paths). -
Immediate workaround (if patching is delayed): Revoke channel creation rights from regular users via admin settings — limit group channel creation to admin accounts only.
-
Audit: Review all existing channels for unintended wildcard access grants (
principal_id: '*') and revoke any that were not admin-authorized. Query the database:SELECT id, name FROM channels WHERE access_control->>'access_grants' LIKE '%"*"%';or equivalent. -
Detection: Monitor API logs for POST requests to
/api/v1/channels/or/api/v1/channels/{id}/updatecontainingprincipal_idwith a wildcard value from non-admin accounts. -
Long-term: Confirm your Open WebUI deployment is not internet-facing without authentication — access should require login for all users.
What does CISA's SSVC say?
Source: CISA Vulnrichment (SSVC v2.0). Decision based on the CISA Coordinator decision tree.
How is it classified?
Which compliance frameworks are affected?
This CVE is relevant to:
Frequently Asked Questions
What is CVE-2026-44558?
Open WebUI's channel router omits the `filter_allowed_access_grants()` call that every other resource type (knowledge, models, notes, prompts, tools, skills) correctly invokes before persisting access control data — meaning any authenticated user can craft a channel creation or update request that sets a public wildcard grant, silently overriding the admin's sharing policy. While CVSS is a moderate 5.4 and there is no active exploitation (not in CISA KEV, no public exploit code, no Nuclei template), the attack is trivially simple: a single authenticated HTTP POST with a crafted `access_grants` payload suffices, with zero specialized knowledge required. This is the 53rd CVE in the open-webui package (risk score 38/100), signaling a persistent pattern of security gaps in this AI interface layer — a high-value target given it proxies LLM conversations that often contain sensitive business data. Organizations running Open WebUI with multi-tenant or role-segmented access models should upgrade to 0.9.0 immediately; as a short-term workaround, restrict channel creation to administrators only and audit all existing channel access grants for unintended wildcard entries.
Is CVE-2026-44558 actively exploited?
No confirmed active exploitation of CVE-2026-44558 has been reported, but organizations should still patch proactively.
How to fix CVE-2026-44558?
1. Patch: Upgrade open-webui to 0.9.0 (patched release adds `filter_allowed_access_grants()` call to channel create and update paths). 2. Immediate workaround (if patching is delayed): Revoke channel creation rights from regular users via admin settings — limit group channel creation to admin accounts only. 3. Audit: Review all existing channels for unintended wildcard access grants (`principal_id: '*'`) and revoke any that were not admin-authorized. Query the database: `SELECT id, name FROM channels WHERE access_control->>'access_grants' LIKE '%"*"%';` or equivalent. 4. Detection: Monitor API logs for POST requests to `/api/v1/channels/` or `/api/v1/channels/{id}/update` containing `principal_id` with a wildcard value from non-admin accounts. 5. Long-term: Confirm your Open WebUI deployment is not internet-facing without authentication — access should require login for all users.
What systems are affected by CVE-2026-44558?
This vulnerability affects the following AI/ML architecture patterns: AI chat interfaces, LLM deployment platforms, Multi-tenant AI assistant deployments, Enterprise AI access management layers.
What is the CVSS score for CVE-2026-44558?
CVE-2026-44558 has a CVSS v3.1 base score of 5.4 (MEDIUM). The EPSS exploitation probability is 0.19%.
What is the AI security impact?
Affected AI Architectures
MITRE ATLAS Techniques
AML.T0012 Valid Accounts AML.T0049 Exploit Public-Facing Application AML.T0085 Data from AI Services Compliance Controls Affected
What are the technical details?
Original Advisory
# Channel Access Grants Bypass filter_allowed_access_grants ## Affected Component Channel creation and update endpoints: - `backend/open_webui/routers/channels.py` (lines 291-340, `create_new_channel`) - `backend/open_webui/routers/channels.py` (lines 617-638, `update_channel_by_id`) - `backend/open_webui/models/channels.py` (lines 825-826, `set_access_grants` call without filtering) ## Affected Versions Current main branch (commit `6fdd19bf1`) and likely all versions supporting user-created group channels with access grants. ## Description All resource routers in Open WebUI (knowledge, models, notes, prompts, tools, skills) call `filter_allowed_access_grants()` before persisting access grants. This function strips `principal_id: "*"` wildcard grants from users who lack the relevant `sharing.public_*` permission, and strips individual user grants from users who lack `access_grants.allow_users` permission. The channel router does not call `filter_allowed_access_grants` on either create or update paths. A non-admin user who can create group channels (or who owns a channel) can submit arbitrary access grants — including public wildcard grants — and those grants are stored verbatim, bypassing the admin's permission framework. ```python # channels.py — access_grants from form data flow directly into persistence # No call to filter_allowed_access_grants() anywhere in these paths. # Compare with knowledge.py / models.py / notes.py / prompts.py / tools.py / skills.py, # all of which do: # form_data.access_grants = filter_allowed_access_grants(user, form_data.access_grants) # before creating or updating. ``` ## Attack Scenario 1. Admin configures permissions so that regular users do NOT have `sharing.public_channels` — public sharing of channels is intended to be admin-only. 2. Attacker (a regular user) creates or owns a group channel. 3. Attacker sends: ``` POST /api/v1/channels/ { "name": "public-channel", "type": "group", "access_control": { "access_grants": [ {"principal_type": "user", "principal_id": "*", "permission": "read"} ] } } ``` 4. `set_access_grants` is called directly without `filter_allowed_access_grants` — the wildcard grant is persisted. 5. The channel becomes publicly readable to every user on the instance, despite the admin's policy prohibiting public channels for regular users. The same attack works via `POST /api/v1/channels/{id}/update` for any channel the attacker owns. ## Impact - Regular users can bypass the `sharing.public_channels` permission and make channels publicly accessible - Regular users can bypass `access_grants.allow_users` to grant individual-user access in environments where only group-based sharing is intended - Admin's permission framework for channels is silently ineffective - Creates an inconsistency with every other resource type in the codebase, making the security posture harder to reason about ## Preconditions - Attacker must have an account with the ability to create group channels (default user capability), or ownership of an existing channel - Admin must have configured restrictive sharing permissions for regular users (otherwise there's no policy to bypass)
Exploitation Scenario
A regular employee at a company running Open WebUI as their internal AI assistant platform notices that the admin has disabled public channel sharing for non-admins. The attacker, familiar with REST APIs, inspects the network traffic and crafts a direct POST request to `/api/v1/channels/` with a payload including `access_grants: [{principal_type: 'user', principal_id: '*', permission: 'read'}]`. Because the channel router does not call `filter_allowed_access_grants()`, the wildcard grant is stored verbatim. The attacker's newly created channel — which they can populate with sensitive content or use to monitor others' AI interactions — is now readable by every user on the instance. The admin's permission policy that was supposed to prevent exactly this is silently bypassed with no log entry indicating a policy violation.
Weaknesses (CWE)
CWE-863 — Incorrect Authorization: The product performs an authorization check when an actor attempts to access a resource or perform an action, but it does not correctly perform the check.
- [Architecture and Design] Divide the product into anonymous, normal, privileged, and administrative areas. Reduce the attack surface by carefully mapping roles with data and functionality. Use role-based access control (RBAC) [REF-229] to enforce the roles at the appropriate boundaries. Note that this approach may not protect against horizontal authorization, i.e., it will not protect a user from attacking others with the same role.
- [Architecture and Design] Ensure that access control checks are performed related to the business logic. These checks may be different than the access control checks that are applied to more generic resources such as files, connections, processes, memory, and database records. For example, a database may restrict access for medical records to a specific database user, but each record might only be intended to be accessible to the patient and the patient's doctor [REF-7].
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N References
Timeline
Related Vulnerabilities
CVE-2026-44551 9.1 open-webui: LDAP auth bypass — full account takeover
Same package: open-webui CVE-2026-45672 8.8 open-webui: code exec gate bypass via API endpoint
Same package: open-webui CVE-2026-44552 8.7 open-webui: Redis cache poisoning enables cross-instance tool hijack
Same package: open-webui CVE-2025-64495 8.7 Open WebUI: XSS-to-RCE via malicious prompt injection
Same package: open-webui CVE-2026-45315 8.7 open-webui: stored XSS → JWT theft and admin takeover
Same package: open-webui