high CVSS 7.2

CVE-2026-45395·Python vulnerability

Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.5, the tool update endpoint (POST /api/v1/tools/id/{id}/update) is missing the workspace.tools permission check that is present on the tool create endpoint. This allows a user who has been explicitly denied tool management capabilities ( and who the administrator considers untrusted for code execution ) to replace a tool's server-side Python content and trigger execution, bypassing the intended workspace.tools security boundary. This vulnerability is fixed in 0.9.5.

Severity
high
Software
Python
Fixed in
0.9.5
Published
2026-05-15

Affected versions

Until: 0.9.5

Fixed in: 0.9.5

How to fix this CVE

Update Open WebUI to version 0.9.5 or later to address a critical authorization bypass in the tool update endpoint. This vulnerability allows users without proper permissions to modify tool configurations and execute arbitrary Python code on the server. Apply the fix immediately if you are running Open WebUI with multi-user workspace configurations where permission boundaries are enforced.

sudo dnf update python3

Defensia detects this vulnerability

What an exploitation attempt looks like

Sample log line indicative of exploitation attempts:

POST /api/v1/tools/id/.*/update with non-admin Authorization header returning 200 OK instead of 403 Forbidden; tool Python code modifications from unprivileged user accounts; execution of server-side Python code originating from tool configurations modified by non-admin users

WAF mitigation (if patching is not yet possible)

Add this rule to your WAF to block exploitation attempts while you schedule the patch.

Block POST requests to /api/v1/tools/id/*/update endpoints unless the request includes an Authorization header with admin-level credentials. Implement request filtering that validates workspace.tools permission claims before allowing tool update operations. Log all attempts to modify tools and alert on requests from non-privileged accounts.

How to check if you are affected

  1. Step 1: Check the Open WebUI version installed: curl http://localhost:8080/api/version or check the application settings page for the running version number
  2. Step 2: Verify workspace.tools permission enforcement by checking if non-admin users can access POST /api/v1/tools/id/{id}/update endpoint: curl -X POST http://localhost:8080/api/v1/tools/id/test/update -H 'Authorization: Bearer {user_token}' -d '{}' and observe if 403 Forbidden is returned
  3. Step 3: Search application logs for unauthorized tool update attempts: grep -r 'POST /api/v1/tools.*update' /var/log/open-webui/ or application audit logs for 'permission denied' errors on tool endpoints
  4. Step 4: Confirm the fix by checking the Open WebUI version is 0.9.5 or higher: curl http://localhost:8080/api/version | grep -E '0\.(9\.[5-9]|[1-9][0-9])' and verify that unprivileged users receive proper authorization errors when attempting tool modifications

FAQ

What is CVE-2026-45395?

This is an authorization bypass vulnerability in Open WebUI's tool update endpoint that fails to enforce the workspace.tools permission check. An attacker with a user account but without tool management privileges can bypass security controls to modify tool definitions and execute arbitrary Python code on the server.

Is CVE-2026-45395 being actively exploited?

No, this vulnerability is not currently listed in CISA's Known Exploited Vulnerabilities (KEV) catalog and no public exploits are available. However, the authorization bypass nature makes it a high-priority fix for deployments with untrusted users.

What versions of Open WebUI are affected by CVE-2026-45395?

All versions of Open WebUI prior to 0.9.5 are vulnerable. The vulnerability was introduced in earlier versions and patched in version 0.9.5 and later.

How do I check if my server is vulnerable to CVE-2026-45395?

Run 'curl http://localhost:8080/api/version' to get your Open WebUI version. If it is below 0.9.5, your installation is vulnerable. Additionally, test authorization by attempting a POST request to the tool update endpoint with a non-admin user token and verify that a 403 Forbidden response is returned.

Does Defensia detect CVE-2026-45395?

Yes — Defensia's CVE advisory scanner compares installed Open WebUI versions against the NVD database. If Open WebUI is deployed on a monitored server, CVE-2026-45395 will appear in your dashboard with remediation steps and version comparison details.

Related Python CVEs

CVE-2026-25632CVSS 10EPyT-Flow is a Python package designed for the easy generation of hydraulic and water quality scenario data of water distribution networks. Prior to 0.16.1, EPyT-Flow’s REST API parses attacker-controlled JSON request bodies using a custom deserializer (my_load_from_json) that supports a type field. When type is present, the deserializer dynamically imports an attacker-specified module/class and instantiates it with attacker-supplied arguments. This allows invoking dangerous classes such as subprocess.Popen, which can lead to OS command execution during JSON parsing. This also affects the loading of JSON files. This vulnerability is fixed in 0.16.1.
CVE-2026-28505CVSS 10Tautulli is a Python based monitoring and tracking tool for Plex Media Server. Prior to version 2.17.0, the str_eval() function in notification_handler.py implements a sandboxed eval() for notification text templates. The sandbox attempts to restrict callable names by inspecting code.co_names of the compiled code object. However, co_names only contains names from the outer code object. When a lambda expression is used, it creates a nested code object whose attribute accesses are stored in code.co_consts, NOT in code.co_names. The sandbox never inspects nested code objects. This issue has been patched in version 2.17.0.
CVE-2026-33054CVSS 10Mesop is a Python-based UI framework that allows users to build web applications. Versions 1.2.2 and below contain a Path Traversal vulnerability that allows any user supplying an untrusted state_token through the UI stream payload to arbitrarily target files on the disk under the standard file-based runtime backend. This can result in application denial of service (via crash loops when reading non-msgpack target files as configurations), or arbitrary file manipulation. This vulnerability heavily exposes systems hosted utilizing FileStateSessionBackend. Unauthorized malicious actors could interact with arbitrary payloads overwriting or explicitly removing underlying service resources natively outside the application bounds. This issue has been fixed in version 1.2.3.
CVE-2026-34938CVSS 10PraisonAI is a multi-agent teams system. Prior to version 1.5.90, execute_code() in praisonai-agents runs attacker-controlled Python inside a three-layer sandbox that can be fully bypassed by passing a str subclass with an overridden startswith() method to the _safe_getattr wrapper, achieving arbitrary OS command execution on the host. This issue has been patched in version 1.5.90.
CVE-2026-26030CVSS 9.9Semantic Kernel, Microsoft's semantic kernel Python SDK, has a remote code execution vulnerability in versions prior to 1.39.4, specifically within the `InMemoryVectorStore` filter functionality. The problem has been fixed in version `python-1.39.4`. Users should upgrade this version or higher. As a workaround, avoid using `InMemoryVectorStore` for production scenarios.

References

Track CVEs across your fleet automatically

Defensia scans your Linux servers and tells you exactly which ones are running vulnerable versions — including CVE-2026-45395. Free for 1 server.

Get started free