Skip to main content

Open WebUI CVE-2026-44558

| EUVDEUVD-2026-30621 MEDIUM
Incorrect Authorization (CWE-863)
2026-05-08 https://github.com/open-webui/open-webui GHSA-7rjh-px4v-5w55
5.4
CVSS 3.1 · GitHub Advisory
Share

Severity by source

GitHub Advisory PRIMARY
5.4 MEDIUM
AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/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:L/I:L/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
Low
Integrity
Low
Availability
None

Lifecycle Timeline

3
Source Code Evidence Fetched
May 08, 2026 - 20:35 vuln.today
Analysis Generated
May 08, 2026 - 20:35 vuln.today
CVE Published
May 08, 2026 - 19:50 nvd
MEDIUM 5.4

DescriptionGitHub 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"}
       ]
     }
   }
  1. set_access_grants is called directly without filter_allowed_access_grants - the wildcard grant is persisted.
  2. 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)

AnalysisAI

Open WebUI versions up to 0.8.12 allow authenticated users to bypass channel access control restrictions by directly persisting arbitrary access grants without applying the filter_allowed_access_grants() validation used consistently across other resource types. An attacker with channel creation or ownership privileges can grant public read access (via wildcard principal grants) or individual user access, circumventing admin-configured sharing permission policies. This affects installations where administrators restrict public sharing or user-grant capabilities to specific roles.

Technical ContextAI

Open WebUI is a Python web application that manages access control through a permission framework. The application implements a centralized filter_allowed_access_grants() function in the routers layer that validates and strips unauthorized access grants based on user permissions (e.g., sharing.public_channels, access_grants.allow_users). This function is correctly invoked by resource routers for knowledge, models, notes, prompts, tools, and skills objects before persisting changes. The channel router (pkg:pip/open-webui, backend/open_webui/routers/channels.py lines 291-340 and 617-638) directly calls set_access_grants() in backend/open_webui/models/channels.py (lines 825-826) without intermediate filtering. The vulnerability is classified as CWE-863 (Incorrect Authorization), stemming from missing input validation at a critical control point where all other resource types implement it. The bypass is possible because the filter function is optional rather than mandatory in the channel update flow.

RemediationAI

Upgrade Open WebUI to version 0.9.0 or later, which applies filter_allowed_access_grants() validation to both channel creation and update endpoints, consistent with other resource types. If immediate patching is unavailable, restrict channel creation and ownership to admin accounts by disabling the group_channels feature for non-admin users, or implement API-level access controls to block POST/PUT requests to /api/v1/channels/ and /api/v1/channels/{id}/update endpoints from non-admin principals. This mitigation completely prevents the attack but removes channel creation as a user-facing feature; validate compatibility with organizational workflow before deployment. Verify post-upgrade that existing channels with unauthorized public grants (principal_id: '*') are reviewed and remediated by administrators, as the patch does not retroactively filter persisted grants.

More in Python

View all
CVE-2025-24016 CRITICAL POC
9.9 Feb 10

Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t

CVE-2025-27520 CRITICAL POC
9.8 Apr 04

BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser

CVE-2025-2945 CRITICAL POC
9.9 Apr 03

pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi

CVE-2013-5093 MEDIUM POC
6.8 Sep 27

The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python

CVE-2025-32375 CRITICAL POC
9.8 Apr 09

BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica

CVE-2014-0224 HIGH POC
7.4 Jun 05

OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph

CVE-2024-21644 HIGH POC
7.5 Jan 08

pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.

CVE-2017-9462 HIGH POC
8.8 Jun 06

In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse

CVE-2026-39987 CRITICAL POC
9.3 Apr 08

Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/

CVE-2024-21645 MEDIUM POC
5.3 Jan 08

pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne

CVE-2026-33017 CRITICAL POC
9.3 Mar 17

Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301

CVE-2026-55255 HIGH POC
8.4 Jun 19

Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing

Share

CVE-2026-44558 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy