Skip to main content

Open WebUI CVE-2026-70485

| EUVDEUVD-2026-52890 HIGH
Server-Side Request Forgery (SSRF) (CWE-918)
2026-08-04 https://github.com/open-webui/open-webui GHSA-8x5v-cpv7-8jjp
7.1
CVSS 3.1 · Vendor: https://github.com/open-webui/open-webui
Share

Severity by source

Vendor (https://github.com/open-webui/open-webui) PRIMARY
7.1 HIGH
AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:L/A:N
vuln.today AI
7.1 HIGH

AC:H for mandatory NAT64 network dependency; PR:L for required authenticated user; S:C and C:H for IAM credential exfiltration from subsequent systems; I:L for arbitrary GET to internal services.

3.1 AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:L/A:N
4.0 AV:N/AC:H/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:H/SI:N/SA:N

Primary rating from Vendor (https://github.com/open-webui/open-webui).

CVSS VectorVendor: https://github.com/open-webui/open-webui

Attack Vector
Network
Attack Complexity
High
Privileges Required
Low
User Interaction
None
Scope
Changed
Confidentiality
High
Integrity
Low
Availability
None

Lifecycle Timeline

3
Source Code Evidence Fetched
Aug 04, 2026 - 20:16 vuln.today
Analysis Generated
Aug 04, 2026 - 20:16 vuln.today
CVE Published
Aug 04, 2026 - 19:59 github-advisory
HIGH 7.1

DescriptionCVE.org

Summary

Open WebUI fetches user-supplied URLs on the server for RAG URL ingestion, URL-to-markdown conversion and web-search content retrieval, and decides whether a destination is allowed by asking whether its IP address is globally routable. That test operates on the literal IPv6 address and does not look at the IPv4 address embedded inside it. On a deployment whose network has a NAT64 gateway, any verified user can wrap an internal or cloud-metadata IPv4 address in the NAT64 well-known prefix, pass the filter, and receive the internal response body back through the API.

Preconditions

  • Any verified (authenticated) user account. No admin role, no elevated permission.
  • Default configuration: ENABLE_LOCAL_WEB_FETCH off, the default WEB_FETCH_FILTER_LIST metadata blocklist in place. Neither prevents this, because the blocklist matches hostname strings and the NAT64 literal is not one of them.
  • The deployment's network must provide NAT64 translation for the well-known 64:ff9b::/96 prefix, which is the common default on IPv6-only and dual-stack cloud and Kubernetes networks.
  • Deployments on IPv4-only networks, or on any network without a NAT64 gateway, are not affected: the address has nowhere to route.

Impact

On an affected network a low-privilege user can read GET responses from services the server can reach but the internet cannot: cloud instance metadata including IAM role credentials, loopback-bound admin surfaces, and internal APIs in the same VPC or cluster. The response body is returned to the caller, so this is full-read, not blind. Exploitation is not universal, it depends entirely on the deployment's network providing NAT64 translation, which is why the score carries high attack complexity. Deployments without NAT64 lose nothing here.

Fix

Fixed in v0.11.0 by commit 1717b493d. Address classification now unwraps the IPv4 embedded in IPv6 transition encodings before deciding whether a destination is global, and applies that at all three checkpoints. NAT64-wrapped public destinations continue to work. Upgrading to v0.11.0 fully resolves the issue with no configuration change.

Root cause

  • backend/open_webui/retrieval/web/utils.py - validate_url(), the pre-fetch check on the submitted URL.
  • backend/open_webui/retrieval/web/utils.py - _ssrf_safe_new_conn() and _SSRFSafeResolver, the connect-time re-checks that defeat DNS rebinding.

All three decided reachability from ipaddress.ip_address(ip).is_global applied to the literal address. That predicate answers whether an IPv6 address sits in globally-routable space, which is a different question from where the packet actually ends up once a transition gateway translates it. The NAT64 well-known prefix is by design a global prefix carrying an arbitrary IPv4 destination, so an internal target wrapped in it satisfies the check while reaching exactly what the check exists to prevent. Because the same predicate backed the connect-time re-checks, no later layer caught it either. The fix inspects every standardized transition encoding rather than only the NAT64 prefix, since the same reasoning error applies to each of them.

Proof of concept

Against the real POST /api/v1/retrieval/process/web flow on v0.10.2 as an authenticated user, with internal HTTP services returning a marker string. The plain forms are rejected with HTTP 400:

http://169.254.169.254/latest/meta-data/          -> 400
http://127.0.0.1/                                 -> 400
http://[::ffff:169.254.169.254]/                  -> 400
http://metadata.google.internal/                  -> 400

The NAT64 encodings of the same targets are accepted, and the response body is returned in the content field:

http://[64:ff9b::a9fe:a9fe]/latest/meta-data/iam/security-credentials/   -> 200, marker returned
http://[64:ff9b::7f00:1]/admin/internal-status                          -> 200, marker returned

NAT64 translation was modelled by binding the translated addresses locally rather than by routing through a real NAT64 gateway; everything else, including the request flow and the validation code, is the unmodified v0.10.2 path. After the fix both URLs return 400 while http://[64:ff9b::808:808]/ (8.8.8.8, public) still returns 200, confirming no over-blocking.

Credits

  • tonghuaroot - reported the transition-form gap in the address classification and supplied the fix approach.

AnalysisAI

Server-side request forgery in Open WebUI (pip/open-webui versions 0.9.0 through 0.10.x) allows any authenticated low-privilege user to reach internal cloud metadata endpoints, loopback-bound admin surfaces, and VPC-internal APIs by encoding IPv4 addresses inside the NAT64 well-known prefix 64:ff9b::/96. The SSRF filter evaluates only whether the literal IPv6 address is globally routable - which NAT64 addresses are, by design - without unwrapping the embedded IPv4 destination before deciding to allow or block the request. Full response bodies, including AWS IAM role credentials from the instance metadata service, are returned directly to the caller. A proof-of-concept exists confirming exploitation against the unmodified v0.10.2 code path; no active exploitation in the wild has been confirmed by CISA KEV at time of analysis.

Technical ContextAI

Open WebUI is a self-hosted AI chat frontend (PyPI package open-webui) that performs server-side HTTP fetches for three features: Retrieval-Augmented Generation (RAG) URL ingestion via POST /api/v1/retrieval/process/web, URL-to-markdown conversion, and web-search content retrieval. SSRF protection is implemented in backend/open_webui/retrieval/web/utils.py across three checkpoints - validate_url() (pre-fetch), _ssrf_safe_new_conn() (connect-time), and _SSRFSafeResolver (DNS rebinding protection). All three relied on Python's ipaddress.ip_address(ip).is_global predicate applied to the literal IPv6 string. CWE-918 (Server-Side Request Forgery) is the root cause class. The flaw is a logic error in IP address classification: the NAT64 well-known prefix 64:ff9b::/96 is globally routable IPv6 address space, so is_global returns True. However, on networks with a NAT64 gateway, the lower 32 bits of such an address encode an IPv4 destination that the gateway then routes on the server's behalf - potentially to RFC-1918 addresses, link-local metadata endpoints (169.254.169.254), or loopback. The CPE is pkg:pip/open-webui with affected range >= 0.9.0, < 0.11.0. The commit diff confirms the same classification error backed all three checkpoints simultaneously, so there was no later-layer safety net.

RemediationAI

Upgrade to Open WebUI v0.11.0, which fully resolves the issue with no configuration change required. The fix (commit 1717b493d83c86afa82aa8bc50139250852dd2f3) introduces a new _is_global_addr() function that unwraps IPv4 addresses embedded in all standardized IPv6 transition encodings - NAT64 well-known prefix, NAT64 RFC 8215 prefix, IPv4-mapped, 6to4, and Teredo - before evaluating routability, and applies this check at all three validation checkpoints. Public NAT64-wrapped destinations (e.g., 64:ff9b::808:808 for 8.8.8.8) continue to work after the upgrade. If immediate upgrade is not possible, the most effective compensating control is to block outbound connections from the Open WebUI server host to RFC-1918 ranges and link-local space (169.254.0.0/16, 100.64.0.0/10, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) at the network or host firewall level - this addresses the actual reachability regardless of how the address is encoded. Alternatively, disabling NAT64 translation for the 64:ff9b::/96 prefix at the gateway eliminates the attack path but may break legitimate IPv6 connectivity. Restricting Open WebUI API access to trusted users does not fully mitigate the issue since it requires only a standard authenticated account. Advisory reference: https://github.com/open-webui/open-webui/security/advisories/GHSA-8x5v-cpv7-8jjp.

CVE-2025-1974 CRITICAL POC
9.8 Mar 25

A critical vulnerability in Kubernetes ingress-nginx controller allows unauthenticated attackers with pod network access

CVE-2026-45321 CRITICAL POC
9.6 May 12

Credential-harvesting malware compromised 84 versions of 42 TanStack npm packages on 2026-05-11 via chained GitHub Actio

CVE-2025-1098 HIGH POC
8.8 Mar 25

Kubernetes ingress-nginx contains a configuration injection vulnerability via the mirror-target and mirror-host Ingress

CVE-2025-24514 HIGH POC
8.8 Mar 25

A security issue was discovered in ingress-nginx https://github.com/kubernetes/ingress-nginx where the `auth-url` Ingres

CVE-2025-1097 HIGH POC
8.8 Mar 25

A security issue was discovered in ingress-nginx https://github.com/kubernetes/ingress-nginx where the `auth-tls-match-c

CVE-2020-8554 MEDIUM POC
6.3 Jan 21

Kubernetes API server in all versions allow an attacker who is able to create a ClusterIP service and set the spec.exter

CVE-2023-3676 HIGH POC
8.8 Oct 31

A security issue was discovered in Kubernetes where a user that can create pods on Windows nodes may be able to escalate

CVE-2025-55190 CRITICAL POC
9.9 Sep 04

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. Rated critical severity (CVSS 9.9), this vulne

CVE-2026-34976 CRITICAL POC
10.0 Apr 02

Unauthenticated remote attackers can trigger complete database overwrites, server-side file reads, and SSRF attacks agai

CVE-2018-18843 CRITICAL POC
10.0 Dec 04

The Kubernetes integration in GitLab Enterprise Edition 11.x before 11.2.8, 11.3.x before 11.3.9, and 11.4.x before 11.4

CVE-2026-54680 CRITICAL POC
9.9 Jul 29

Fluentd configuration injection in the kube-logging Logging operator before 6.6.0 allows a namespace-scoped user who can

CVE-2026-22039 CRITICAL POC
9.9 Jan 27

Kyverno Kubernetes policy engine prior to 1.x has a privilege escalation vulnerability (CVSS 9.9) allowing policy bypass

Share

CVE-2026-70485 vulnerability details – vuln.today

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