
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2026-32717 is an access control bypass vulnerability in AnythingLLM (by Mintplex-Labs) that allows suspended users to continue accessing browser extension API endpoints using previously issued brx-... API keys. Affecting versions 1.11.1 and earlier in multi-user mode, the flaw was published on March 13, 2026, with a patch released shortly after. It carries a CVSS v3.1 base score of 2.7 (Low), reflecting the high privilege requirement and limited integrity impact (GitHub Advisory, Red Hat CVE).
The root cause is Incorrect Authorization (CWE-863): the validBrowserExtensionApiKey() middleware loads the associated user from the database but never checks whether that user's suspended flag is set, unlike the standard JWT path (validateMultiUserRequest()) which explicitly rejects suspended users. As a result, any valid brx-... key issued before suspension continues to authenticate requests to browser extension endpoints (/api/browser-extension/check, /api/browser-extension/workspaces, /api/browser-extension/upload-content, /api/browser-extension/embed-content). Exploitation requires the attacker to already hold a manager-role account (needed to generate browser extension API keys) and to have created the key prior to suspension. A detailed proof-of-concept using curl commands is publicly available in the GitHub Security Advisory (GitHub Advisory, Patch Commit).
A suspended user who retains a valid browser extension API key can read workspace metadata within their pre-existing permission scope and continue performing document upload and embed operations, effectively circumventing the suspension control. The impact is bounded to data and workspaces the user was already authorized to access — no privilege escalation or new data exposure occurs. Confidentiality and availability are unaffected; only integrity is marginally impacted through unauthorized upload/embed actions (GitHub Advisory).
A proof-of-concept with explicit curl commands demonstrating the full bypass is publicly documented in the GitHub Security Advisory, rated high confidence by Feedly threat intelligence. There is no evidence of in-the-wild exploitation at this time, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog. The EPSS score is approximately 0.024%, reflecting low probability of near-term exploitation. Exploitation is limited to users who previously held manager-level access and had already generated a browser extension API key before being suspended (GitHub Advisory).
curl -i -sS -X POST "/api/browser-extension/api-keys/new" -H "Authorization: Bearer <JWT>"
# Expected: HTTP 200 {"apiKey":"brx-<key>"}curl -i -sS -X POST "/api/admin/user/<id>" -H "Authorization: Bearer <admin-JWT>" -H "Content-Type: application/json" --data '{"suspended":1}'
# Expected: HTTP 200 {"success":true,"error":null}curl -i -sS "/api/system/check-token" -H "Authorization: Bearer <JWT>"
# Expected: HTTP 401 {"error":"User is suspended from system"}brx-... key to access extension endpoints:curl -i -sS "/api/browser-extension/check" -H "Authorization: Bearer brx-<key>"
# Expected: HTTP 200 {"connected":true,"workspaces":[...],"apiKeyId":<id>}curl -i -sS -X POST "/api/browser-extension/upload-content" -H "Authorization: Bearer brx-<key>" -H "Content-Type: application/json" --data '{"textContent":"poc","metadata":{"title":"poc","docSource":"poc"}}'
# Expected: HTTP 200 {"success":true}/api/browser-extension/check, /api/browser-extension/workspaces, /api/browser-extension/upload-content, or /api/browser-extension/embed-content using Authorization: Bearer brx-... headers from accounts that have been suspended./api/system/check-token for the same user.brx-... API keys in the browser_extension_api_keys database table associated with users whose suspended flag is set to true.Upgrade AnythingLLM to any version after 1.11.1 (patched in commit a207449), which adds suspension and user-existence checks to the validBrowserExtensionApiKey middleware and deletes all browser extension API keys when a user is deleted. As an immediate workaround prior to patching, administrators should manually revoke all brx-... browser extension API keys for any suspended users via the admin interface or directly in the database. Multi-user deployments should audit existing browser extension API keys and cross-reference them against suspended accounts (GitHub Advisory, Patch Commit).
The vulnerability was reported by researcher u-ktdi and the advisory was published by AnythingLLM maintainer timothycarambat on March 13, 2026. The issue received limited but notable coverage from security aggregators including InfinitSec and CVE tracking platforms shortly after disclosure. Community discussion was minimal given the low severity score, with no significant media coverage or widespread researcher commentary observed (GitHub Advisory).
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."