
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2026-22680 is a missing authorization vulnerability in OpenViking (a Volcengine open-source AI memory/knowledge platform) affecting all versions prior to 0.3.3. The flaw allows unauthenticated attackers to enumerate and retrieve background task metadata created by other users via the /api/v1/tasks and /api/v1/tasks/{task_id} API endpoints. It was disclosed on April 7, 2026, with a patch released the same day. The vulnerability carries a CVSS v3.1 base score of 5.3 (Medium) and a CVSS v4.0 base score of 6.9 (Medium) (Github Advisory, Feedly).
The root cause is CWE-862 (Missing Authorization): the /api/v1/tasks and /api/v1/tasks/{task_id} router endpoints were mounted without the get_request_context dependency, meaning no authentication or ownership check was enforced before serving task data. Additionally, the TaskTracker stored all tasks in a single global namespace with no owner metadata, allowing any network-reachable caller to enumerate or retrieve task records belonging to any user. A secondary weakness (CWE-200) applies, as the exposed metadata includes task type, status, resource identifiers, archive URIs, result payloads, and sanitized error strings. The fix (PR #1182, commit 8c1c3f3) added get_request_context as a FastAPI dependency on both task endpoints and introduced per-task owner_account_id/owner_user_id fields to scope all reads and deduplication to the authenticated caller (Github PR, Github Commit).
Successful exploitation allows any unauthenticated network attacker to enumerate all recent background tasks and retrieve per-task metadata from other users, including task type, status, resource identifiers, archive URIs, result payloads, and error strings. In multi-tenant deployments, this constitutes cross-tenant data exposure and can also cause low-grade cross-tenant interference via async reindex deduplication keyed only on raw resource URIs. There is no integrity or availability impact; the vulnerability is limited to confidentiality loss of task metadata (Github Advisory, Github PR).
A public proof-of-concept is available in the GitHub pull request for the fix (PR #1182), consisting of concrete curl commands that reproduce the unauthorized information disclosure without authentication. The PoC demonstrates creating a task as an authenticated user, then retrieving it unauthenticated via GET /api/v1/tasks and GET /api/v1/tasks/$TASK_ID. There is no evidence of in-the-wild exploitation at this time, and the vulnerability is not listed in the CISA KEV catalog. The EPSS score is approximately 0.05% (low probability of near-term exploitation) (Github PR, Github Advisory).
curl -s "http://<TARGET>:1933/api/v1/tasks" | jqBefore the patch, this returns all background task records from all users instead of a 401 response.TASK_ID="<task_id_from_step_3>"
curl -s "http://<TARGET>:1933/api/v1/tasks/$TASK_ID" | jqThis exposes task type, status, resource identifiers, archive URIs, result payloads, and error strings belonging to other users./api/v1/tasks or /api/v1/tasks/<task_id> from external or unexpected IP addresses (no X-API-Key header present); high-frequency polling of task endpoints from a single source IP./api/v1/tasks or /api/v1/tasks/{task_id} requests lacking authentication headers; repeated task enumeration requests in short time windows.Upgrade OpenViking to version 0.3.3 or later, which enforces authentication and per-user ownership scoping on all task API endpoints (PR #1182, commit 8c1c3f3). For deployments that cannot be immediately patched, restrict network access to the /api/v1/tasks and /api/v1/tasks/{task_id} endpoints to authenticated users only through network controls, reverse proxy authentication enforcement, or API gateway policies. Avoid exposing the OpenViking API port (default 1933) directly to untrusted networks (Github Advisory, OpenViking Release).
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."