Skip to main content
CVE Vulnerability Database
Vulnerability Database/CVE-2026-11500

CVE-2026-11500: Weaviate Auth Bypass Vulnerability

CVE-2026-11500 is an authorization bypass vulnerability in Weaviate up to version 1.37.7 affecting the Static API Key Handler. This post covers the technical details, affected versions, security impact, and mitigation.

Published:

CVE-2026-11500 Overview

CVE-2026-11500 is an authorization bypass vulnerability in Weaviate, an open-source vector database widely used for AI and machine learning workloads. The flaw resides in the validateConfig function within usecases/auth/authentication/apikey/client.go, part of the Static API Key Handler component. Manipulation of the StaticApiKey argument allows an authenticated attacker to bypass authorization controls over the network. Weaviate versions up to and including 1.37.7 are affected. The issue is tracked under CWE-285: Improper Authorization. Although a public exploit reference exists, attack complexity is high and exploitability is reported as difficult.

Critical Impact

Authenticated remote attackers can bypass authorization checks in the Static API Key Handler, potentially gaining unauthorized access to vector data and Weaviate operations.

Affected Products

  • Weaviate versions up to and including 1.37.7
  • Weaviate Static API Key Handler component (usecases/auth/authentication/apikey/client.go)
  • Deployments using static API key authentication

Discovery Timeline

  • 2026-06-08 - CVE-2026-11500 published to NVD
  • 2026-06-08 - Last updated in NVD database
  • Patch commit - 40f2cc32279f0f8a51016c3c6870a2c0c808e6c0 merged in Weaviate repository
  • Fixed release - Weaviate version 1.38.0-rc.0 published

Technical Details for CVE-2026-11500

Vulnerability Analysis

The vulnerability is an improper authorization weakness in Weaviate's static API key authentication path. The validateConfig function in client.go does not enforce sufficient validation when processing the StaticApiKey argument. An attacker who can influence this argument can subvert the intended authorization decisions made by the handler.

Weaviate is commonly deployed as a backend for retrieval-augmented generation (RAG) pipelines and embedding stores. A bypass at the authentication layer can expose stored vectors, schema configurations, and tenant data. The vulnerability requires low privileges and operates over the network. Exploit complexity is high, which reduces the practical impact despite a publicly referenced exploit.

Root Cause

The defect is located in usecases/auth/authentication/apikey/client.go, specifically in the validateConfig routine. The handler does not correctly evaluate static API key configuration state, allowing crafted StaticApiKey inputs to be treated as valid by downstream authorization logic. This places the issue squarely in [CWE-285] Improper Authorization. The maintainers addressed the defect in commit 40f2cc32279f0f8a51016c3c6870a2c0c808e6c0.

Attack Vector

The attack vector is network-based and requires an attacker with low-level credentials or access to the API. The attacker crafts requests that manipulate the StaticApiKey argument processed by validateConfig, causing the handler to authorize requests that should be rejected. Successful exploitation grants the attacker access privileges beyond those intended by the configured policy. No user interaction is required.

No verified public proof-of-concept code is available. Technical details are documented in the upstream patch and issue tracker. See the Weaviate patch commit and Weaviate Issue #11392 for the source-level fix and discussion.

Detection Methods for CVE-2026-11500

Indicators of Compromise

  • Unexpected successful API requests to Weaviate endpoints from clients that should not be authorized for the requested operation.
  • Repeated authentication attempts using malformed or empty StaticApiKey header values prior to successful access.
  • Access to vector collections or schema endpoints outside normal operational baselines.

Detection Strategies

  • Audit Weaviate access logs for authentication events that succeed despite invalid or missing API key material.
  • Compare authorized client identities against the configured static API key allowlist to identify discrepancies.
  • Inspect request patterns targeting /v1/objects, /v1/schema, and /v1/meta for activity from unexpected sources.

Monitoring Recommendations

  • Forward Weaviate authentication and authorization logs to a centralized SIEM for correlation with network telemetry.
  • Alert on access to administrative endpoints by API keys that have not been used historically.
  • Monitor outbound data volume from Weaviate nodes to detect bulk extraction of vector data following suspicious auth events.

How to Mitigate CVE-2026-11500

Immediate Actions Required

  • Upgrade Weaviate to version 1.38.0-rc.0 or later, which contains the fix in commit 40f2cc32279f0f8a51016c3c6870a2c0c808e6c0.
  • Rotate all static API keys after upgrading to invalidate any keys that may have been observed by an attacker.
  • Restrict network exposure of Weaviate API endpoints to trusted networks and authenticated service meshes only.

Patch Information

The vulnerability is resolved in Weaviate 1.38.0-rc.0. The fix is contained in patch commit 40f2cc32279f0f8a51016c3c6870a2c0c808e6c0. Refer to the Weaviate v1.38.0-rc.0 release and the upstream commit for full details.

Workarounds

  • Disable static API key authentication and switch to OIDC-based authentication where feasible.
  • Place Weaviate behind a reverse proxy or API gateway that performs independent authorization checks before forwarding requests.
  • Apply network-level access controls to limit which clients can reach the Weaviate API at all.
bash
# Configuration example: upgrade Weaviate via Docker to the patched release
docker pull semitechnologies/weaviate:1.38.0-rc.0
docker stop weaviate && docker rm weaviate
docker run -d --name weaviate \
  -p 8080:8080 \
  -e AUTHENTICATION_APIKEY_ENABLED=true \
  -e AUTHENTICATION_APIKEY_ALLOWED_KEYS="<rotated-key>" \
  -e AUTHENTICATION_APIKEY_USERS="service-account@example.com" \
  semitechnologies/weaviate:1.38.0-rc.0

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.