CVE-2026-46444: Flowise: missing authz on vector store CRUD ops
HIGHFlowise, a widely-deployed open-source drag-and-drop LLM flow builder, fails to enforce authorization checks on all CRUD endpoints for its OpenAI Assistants Vector Store — any holder of a valid API key, regardless of intended privilege level, can read, modify, or delete vector store contents without restriction. Vector stores in Flowise deployments commonly underpin production RAG pipelines indexed with proprietary enterprise documents, making unauthorized access a direct path to sensitive data exfiltration or knowledge-base poisoning. No public exploit or CISA KEV entry exists yet, but exploitation is trivial for anyone with any API credential: a single HTTP request to `/api/v1/openai-assistants-vector-store` is sufficient. Organizations running Flowise prior to 3.1.2 should patch immediately; as an interim control, restrict the vector store API path at the reverse proxy layer to trusted source IPs only.
What is the risk?
Medium-High. The attack surface is partially reduced by the API key requirement — the route is not publicly accessible without a credential — but API keys in Flowise deployments are frequently shared across development teams or embedded in downstream application configurations, making lateral access realistic. CWE-862 (Missing Authorization) represents a design flaw rather than an implementation bug, meaning all versions prior to 3.1.2 are fully affected with no partial mitigation possible short of network-level blocking. The direct impact on vector stores (RAG data integrity, confidentiality) elevates this beyond a typical access control gap in a standard web application.
How does the attack unfold?
What systems are affected?
| Package | Ecosystem | Vulnerable Range | Patched |
|---|---|---|---|
| Flowise | npm | — | No patch |
Do you use Flowise? You're affected.
How severe is it?
What is the attack surface?
What should I do?
6 steps-
Upgrade to Flowise 3.1.2 — the only full remediation.
-
Until patched, configure your reverse proxy (nginx/Caddy) to block external access to the
/api/v1/openai-assistants-vector-storepath; allow only from trusted internal IP ranges. -
Audit all active Flowise API keys and revoke any shared, embedded, or orphaned credentials.
-
Review vector store contents for unauthorized modifications or injected entries by comparing against known-good indexed documents.
-
Enable access logging on Flowise API calls and alert on unexpected CRUD requests to the vector store path.
-
If compromise is suspected, rebuild all vector stores from validated source documents and rotate all API keys.
What does CISA's SSVC say?
Source: CISA Vulnrichment (SSVC v2.0). Decision based on the CISA Coordinator decision tree.
How is it classified?
Which compliance frameworks are affected?
This CVE is relevant to:
Frequently Asked Questions
What is CVE-2026-46444?
Flowise, a widely-deployed open-source drag-and-drop LLM flow builder, fails to enforce authorization checks on all CRUD endpoints for its OpenAI Assistants Vector Store — any holder of a valid API key, regardless of intended privilege level, can read, modify, or delete vector store contents without restriction. Vector stores in Flowise deployments commonly underpin production RAG pipelines indexed with proprietary enterprise documents, making unauthorized access a direct path to sensitive data exfiltration or knowledge-base poisoning. No public exploit or CISA KEV entry exists yet, but exploitation is trivial for anyone with any API credential: a single HTTP request to `/api/v1/openai-assistants-vector-store` is sufficient. Organizations running Flowise prior to 3.1.2 should patch immediately; as an interim control, restrict the vector store API path at the reverse proxy layer to trusted source IPs only.
Is CVE-2026-46444 actively exploited?
No confirmed active exploitation of CVE-2026-46444 has been reported, but organizations should still patch proactively.
How to fix CVE-2026-46444?
1. Upgrade to Flowise 3.1.2 — the only full remediation. 2. Until patched, configure your reverse proxy (nginx/Caddy) to block external access to the `/api/v1/openai-assistants-vector-store` path; allow only from trusted internal IP ranges. 3. Audit all active Flowise API keys and revoke any shared, embedded, or orphaned credentials. 4. Review vector store contents for unauthorized modifications or injected entries by comparing against known-good indexed documents. 5. Enable access logging on Flowise API calls and alert on unexpected CRUD requests to the vector store path. 6. If compromise is suspected, rebuild all vector stores from validated source documents and rotate all API keys.
What systems are affected by CVE-2026-46444?
This vulnerability affects the following AI/ML architecture patterns: RAG pipelines, agent frameworks, vector databases, LLM application platforms.
What is the CVSS score for CVE-2026-46444?
CVE-2026-46444 has a CVSS v3.1 base score of 8.8 (HIGH). The EPSS exploitation probability is 0.33%.
What is the AI security impact?
Affected AI Architectures
MITRE ATLAS Techniques
AML.T0012 Valid Accounts AML.T0036 Data from Information Repositories AML.T0049 Exploit Public-Facing Application AML.T0070 RAG Poisoning AML.T0085.000 RAG Databases Compliance Controls Affected
What are the technical details?
Original Advisory
Flowise is a drag & drop user interface to build a customized large language model flow. Prior to version 3.1.2, all CRUD endpoints for OpenAI Assistants Vector Store have no authentication middleware and the route path /api/v1/openai-assistants-vector-store is not in WHITELIST_URLS. However, it is also not protected by the main auth middleware when accessed via API key — the route requires API key auth (not whitelisted), but no permission checks exist on any operation. This issue has been patched in version 3.1.2.
Exploitation Scenario
An attacker who has obtained any Flowise API key — whether through a leaked `.env` file in a public repo, a compromised developer account, or social engineering — sends a standard HTTP GET request to `/api/v1/openai-assistants-vector-store` with the key in the Authorization header. The server processes the request without any permission check and returns all vector store metadata. The attacker follows up with file-level read operations to extract indexed documents — potentially including internal policies, customer data, or proprietary research used in the organization's RAG assistant. They then craft replacement content containing indirect prompt injection payloads and upload it via the PUT/POST endpoints, poisoning future LLM responses for all users of the assistant without any visible system error or alert.
Weaknesses (CWE)
CWE-862 — Missing Authorization: The product does not perform an authorization check when an actor attempts to access a resource or perform an action.
- [Architecture and Design] Divide the product into anonymous, normal, privileged, and administrative areas. Reduce the attack surface by carefully mapping roles with data and functionality. Use role-based access control (RBAC) [REF-229] to enforce the roles at the appropriate boundaries. Note that this approach may not protect against horizontal authorization, i.e., it will not protect a user from attacking others with the same role.
- [Architecture and Design] Ensure that access control checks are performed related to the business logic. These checks may be different than the access control checks that are applied to more generic resources such as files, connections, processes, memory, and database records. For example, a database may restrict access for medical records to a specific database user, but each record might only be intended to be accessible to the patient and the patient's doctor [REF-7].
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H References
Timeline
Related Vulnerabilities
CVE-2025-71338 10.0 Flowise: unauthenticated file write enables RCE
Same package: flowise CVE-2025-59528 10.0 Flowise: Unauthenticated RCE via MCP config injection
Same package: flowise CVE-2025-61913 9.9 Flowise: path traversal in file tools leads to RCE
Same package: flowise CVE-2026-40933 9.9 Flowise: RCE via MCP stdio command injection
Same package: flowise CVE-2026-46442 9.9 Flowise: sandbox escape enables authenticated RCE
Same package: flowise