CVE-2026-46444: Flowise: missing authz on vector store CRUD ops
AWAITING NVDFlowise, 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 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.
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?
No CVSS score has been assigned yet.
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)
References
Timeline
Related Vulnerabilities
CVE-2025-59528 10.0 Flowise: Unauthenticated RCE via MCP config injection
Same package: flowise CVE-2026-40933 9.9 Flowise: RCE via MCP stdio command injection
Same package: flowise CVE-2025-61913 9.9 Flowise: path traversal in file tools leads to RCE
Same package: flowise CVE-2026-30821 9.8 flowise: Arbitrary File Upload enables RCE
Same package: flowise CVE-2026-30824 9.8 Flowise: auth bypass exposes NVIDIA NIM container endpoints
Same package: flowise