GHSA-jxwr-g6r6-j3fx
HIGHGHSA-jxwr-g6r6-j3fx is a high-severity (CVSS 7.1) CWE-862 vulnerability in open-webui. O3 Security confirms whether GHSA-jxwr-g6r6-j3fx is actually reachable in your code before you act, and blocks exploitation at runtime until you patch.
Open WebUI's Insecure Message Access Breaks Authorization
Exploitation Status
Proof-of-concept exploit code exists
- CISA’s SSVC triage found public proof-of-concept exploit code for this CVE, though no confirmed active exploitation.
Exploitation and automatability from CISA’s SSVC triage for GHSA-jxwr-g6r6-j3fx.
EPSS Exploitation Probability
EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.
How urgent is this, really
GHSA-jxwr-g6r6-j3fx plotted by exploitation likelihood (EPSS) against impact (CVSS). The shaded corner — EPSS 50%+ and CVSS 7.0+ — is where this CVE doesn't sit, though severity or exploitability alone can still warrant action.
Where this sits among everything scored
Of 356,453 CVEs with a current EPSS score, this one falls in the < 10% band (highlighted). Real counts from FIRST.org, not a sample — log-scaled since the landscape is heavily right-skewed.
Real-World Exposure
open-webuiReal-time download stats are indexed for npm and PyPI packages. This vulnerability affects PyPI packages — download data is not available via public APIs for these ecosystems.
Description
Description
There's an IDOR in the channels message management system that allows authenticated users to modify or delete any message within channels they have read access to. The vulnerability exists in the message update and delete endpoints, which implement channel-level authorization but completely lack message ownership validation.
While the frontend correctly implements ownership checks (showing edit/delete buttons only for message owners or admins), the backend APIs bypass these protections by only validating channel access permissions without verifying that the requesting user owns the target message. This creates a client-side security control bypass where attackers can directly call the APIs to modify other users' messages.
The vulnerability affects both message content modification and deletion, allowing users to tamper with message integrity and audit trails in collaborative channel environments.
Source - Sink Analysis
Source: User-controlled message_id parameter in URL path
Call Chain:
- FastAPI route handlers
update_message_by_id()(line 450) anddelete_message_by_id()(line 630) inbackend/open_webui/routers/channels.py - Channel-level authorization check:
has_access(user.id, type="read", access_control=channel.access_control)at lines 457 and 637 - Message retrieval:
Messages.get_message_by_id(message_id)at lines 467 and 647 - Channel ID validation:
if message.channel_id != id:at lines 472 and 652 - Missing: Message ownership validation (
message.user_id == user.id) - Sink:
Messages.update_message_by_id(message_id, form_data)at line 476 orMessages.delete_message_by_id(message_id)at line 658 - modifies any message without ownership verification
Proof of Concept
- Deploy Open WebUI with channels enabled (
ENABLE_CHANNELS=true) - Create scenario:
- User A creates a channel and grants User B read access
- User A posts a message in the channel
- User B observes the message_id from the frontend
- Exploit: User B sends direct API requests bypassing frontend controls:
Message Update:
curl -X POST "http://localhost:8080/api/v1/channels/{channel_id}/messages/{victim_message_id}/update" \
-H "Authorization: Bearer {attacker_token}" \
-H "Content-Type: application/json" \
-d '{"content": "Malicious content injected by attacker"}'
Message Deletion:
curl -X DELETE "http://localhost:8080/api/v1/channels/{channel_id}/messages/{victim_message_id}/delete" \
-H "Authorization: Bearer {attacker_token}"
- Result: Victim's message is modified or deleted despite User B only having read permissions
Impact
- Users can modify other users' message content within shared channels
- Read-only users gain write/delete capabilities over other users' content
Remediation
Implement proper message ownership validation in the update and delete endpoints by adding ownership checks that follow the established security pattern used throughout the codebase. First, add a validation condition after the existing message retrieval to ensure only message owners or admins can modify messages: if user.role != "admin" and message.user_id != user.id and not has_access(user.id, type="write", access_control=channel.access_control) then raise a 403 Forbidden exception. Second, change the existing permission check from type="read" to type="write" for both update and delete operations to align with the access control model used in other routers (notes, prompts, knowledge, etc.).
Affected Packages
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 🐍PyPI | open-webui | all versions | 0.6.19 |
Detection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for open-webui. O3's reachability analysis confirms whether the vulnerable code path is actually invoked in your application, so you act on real exposure instead of every transitive match.
Fix
Update open-webui to 0.6.19 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-jxwr-g6r6-j3fx is resolved across your whole dependency graph.
Workarounds
If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.
How O3 protects you
O3 pinpoints whether GHSA-jxwr-g6r6-j3fx is reachable in your code and exactly where to fix it, then blocks exploitation in production at runtime until the patched version is deployed.
Tailored to GHSA-jxwr-g6r6-j3fx. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.
Frequently Asked Questions
Is GHSA-jxwr-g6r6-j3fx in your dependencies?
O3 detects GHSA-jxwr-g6r6-j3fx across PyPI dependencies and uses function-level reachability to confirm whether the vulnerable code path is actually reachable — not just present. No false positives.