GHSA-3vf6-64vr-3g56: Low severity pip/open-webui vulnerability

Published Aug 4, 2026
·
Updated

Summary DELETE /api/v1/chats/{id} cancelled a chat's in-flight tasks before it checked whether the caller was allowed to delete that chat. Any authenticated user who knew another user's chat id could therefore abort that user's running model response, title generation or tag generation. The deletion itself was still refused, so the only missing control was on the cancellation side effect.

Preconditions Default configuration, no special deployment shape. The attacker needs a normal account with the default user role and nothing else: the chat.delete permission is not required, and revoking it does not prevent the cancellation. The attacker also needs the victim's chat id, which is returned by the read-only shared-chat endpoint when a chat or a folder has been shared with them - otherwise enumerating the chat id requires guessing the chat id or brute forcing it, and the victim must have a generation running at that moment.

Impact A user can repeatedly interrupt another user's generations without any write access to the target chat. Nothing is deleted, modified or disclosed, and the victim can simply regenerate, so the effect is limited to availability of in-flight responses. Because the attacker only needs a chat id, the interruption can be scripted and repeated for as long as the id stays valid.

Fix Fixed in https://github.com/open-webui/open-webui/pull/27006, released in 0.11.0. The handler now resolves and authorizes the chat first and only cancels tasks and deletes once the caller is an admin or a permitted owner; an unauthorized caller gets 401 or 404 with no cancellation.

Root cause Affected component: deletechatbyid in backend/openwebui/routers/chats.py, serving DELETE /api/v1/chats/{id}. Affected setup: every build from 0.9.6 up to and including 0.10.2.

The cancellation was written as a cleanup step for the delete that follows it, and it was placed at the top of the handler so that it would run before the chat row disappeared. That put an unauthenticated-by-ownership side effect ahead of every check in the function: the admin branch, the chat.delete permission check, and the owner lookup all ran afterwards, so their outcome could no longer affect whether the tasks were stopped. The dedicated task-stop endpoint already verified ownership before calling the same helper, so the intended ordering existed elsewhere in the codebase.

Proof of concept Against a 0.10.2 instance with two accounts, a victim admin and an attacker holding the default user role, and an upstream that streams slowly:

1. As the victim, start a generation in a chat and confirm GET /api/tasks/chat/{chatid} reports one active task. 2. As the attacker, confirm GET /api/v1/chats/{chatid} returns 401, then send DELETE /api/v1/chats/{chatid}. 3. The delete is refused with 404, the chat still exists, but the victim's task list is now empty and the assistant message is marked done mid-generation. A control run without step 2 keeps generating.

Repeating step 2 with the chat.delete permission revoked for the user role returns 401 and still cancels the task. The same sequence against 0.11.0 leaves the task running.

Credits @GabrielGomesAL, who reported the missing authorization on the chat delete endpoint.

Affected Software

1 affected componentFixes available
pip/open-webui>=0.9.6<0.11.0
0.11.0

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade pip/open-webui to a version that resolves this vulnerability.

    Fixed in 0.11.0
  2. Upgrade

    Upgrade open-webui/open-webui to a version that resolves this vulnerability.

    Fixed in 0.11.0Patch https://github.com/open-webui/open-webui/pull/27006
  3. Compensating control

    If you cannot upgrade immediately, ensure clients without proper authorization cannot call the chat delete endpoint; restrict access to DELETE /api/v1/chats/{id} to authorized/admin users only (e.g., via upstream routing/WAF/ACL), since cancellation of in-flight tasks occurred before the authorization checks in versions 0.9.6 through 0.10.2.

Event History

Aug 4, 2026
Advisory Published
via GitHub·07:54 PM
Data Sourced
via GitHub·07:54 PM
DescriptionSeverityWeaknessAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of GHSA-3vf6-64vr-3g56?

The severity of GHSA-3vf6-64vr-3g56 is rated as low, with a score of 3.1.

2

How do I fix GHSA-3vf6-64vr-3g56?

To fix GHSA-3vf6-64vr-3g56, ensure that the permission check for deleting a chat is performed before cancelling any ongoing tasks.

3

What can be exploited in GHSA-3vf6-64vr-3g56?

GHSA-3vf6-64vr-3g56 can be exploited by any authenticated user to abort another user's running model response by knowing that user's chat ID.

4

Which software is affected by GHSA-3vf6-64vr-3g56?

GHSA-3vf6-64vr-3g56 affects the open-webui software.

5

When was GHSA-3vf6-64vr-3g56 published?

GHSA-3vf6-64vr-3g56 was published on August 4, 2026.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203
GHSA-3vf6-64vr-3g56 - Low severity pip/open-webui vulnerability - SecAlerts