Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-c7wp-3qh5-55pv

Опубликовано: 08 мая 2026
Источник: github
Github: Прошло ревью
CVSS3: 4.3

Описание

Open WebUI Missing Access Check on Channel Members Endpoint for Standard Channels

Missing Access Check on Channel Members Endpoint for Standard Channels

Affected Component

Channel members listing endpoint:

  • backend/open_webui/routers/channels.py (lines 445-507, get_channel_members_by_id)

Affected Versions

Current main branch and likely all versions with the channels feature.

Description

The GET /api/v1/channels/{id}/members endpoint only checks membership for group and dm channel types (lines 467-469). For standard channels — including private ones — there is no channel_has_access check before returning the member list. Any authenticated user who knows a private channel's UUID can enumerate all users with access to that channel.

# Line 467-469: only group/dm channels are checked if channel.type in ['group', 'dm']: if not Channels.is_user_channel_member(channel.id, user.id, db=db): raise HTTPException(...) # Standard channels fall through with NO access check

Compare with other channel endpoints (e.g., get_channel_messages at line 688) which correctly call channel_has_access(user.id, channel, permission='read') for standard channels.

CVSS 3.1 Breakdown

MetricValueRationale
Attack VectorNetwork (N)Exploited remotely via API call
Attack ComplexityLow (L)Single API call, no special conditions
Privileges RequiredLow (L)Requires a valid user account
User InteractionNone (N)No victim interaction required
ScopeUnchanged (U)Impact is within the channel authorization boundary
ConfidentialityLow (L)Leaks user identities and details for a private channel
IntegrityNone (N)No data modification
AvailabilityNone (N)No denial of service

Attack Scenario

  1. Attacker obtains a private standard channel's UUID (via logs, browser history, URL observation, or other API responses).
  2. Attacker calls GET /api/v1/channels/{id}/members.
  3. The server returns the full list of permitted users including their IDs, names, emails, roles, and profile images.
  4. The attacker has no access to the channel's messages (those endpoints check access correctly), but now knows exactly who does.

Impact

  • Leaks the identity and personal details of every user with access to a private channel
  • Reveals organizational structure and project assignments
  • Enables targeted social engineering against channel members

Preconditions

  • Channels feature must be enabled (disabled by default)
  • Attacker must know the channel UUID (not guessable, but obtainable through indirect means)

Пакеты

Наименование

open-webui

pip
Затронутые версииВерсия исправления

<= 0.8.12

0.9.0

EPSS

Процентиль: 13%
0.00221
Низкий

4.3 Medium

CVSS3

Дефекты

CWE-862

Связанные уязвимости

CVSS3: 4.3
nvd
3 месяца назад

Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.0, the GET /api/v1/channels/{id}/members endpoint only checks membership for group and dm channel types (lines 467-469). For standard channels — including private ones — there is no channel_has_access check before returning the member list. Any authenticated user who knows a private channel's UUID can enumerate all users with access to that channel. This vulnerability is fixed in 0.9.0.

CVSS3: 4.3
fstec
3 месяца назад

Уязвимость веб-интерфейса на базе искусственного интеллекта Open WebUI, связанная с отсутствием авторизации, позволяющая нарушителю получить несанкционированный доступ к защищаемой информации

EPSS

Процентиль: 13%
0.00221
Низкий

4.3 Medium

CVSS3

Дефекты

CWE-862