Loading...
Skip to main content

CVE-2026-70472

HIGH

Flowise: Cross-workspace credential IDOR in openai-assistants-vector-store

Published August 4, 2026Updated August 4, 2026Source: osv

Summary

# Summary These endpoints accept a client-controlled `credential` parameter. The server loads credentials by `id` and uses them directly, without checking whether that credential belongs to the caller’s workspace. If an attacker knows another workspace’s `credentialId`, they can use that workspace’s OpenAI key. # Details Route permissions (`assistants:*`) only check feature access. They do not check credential ownership. The controller passes `req.query.credential` straight to the service. The service does `findOneBy({ id: credentialId })`, decrypts the credential, and calls OpenAI APIs. There is no `workspaceId` check in this flow, so this is an IDOR. # Impact - Cross-workspace unauthorized use of stored OpenAI keys. - Unauthorized read/modify/delete of victim vector stores and files. - Direct billing impact on victim OpenAI account. - Multi-tenant boundary violation with practical exploitability. # Reproduction steps 1. Set up two workspaces: A (attacker) and B (victim), each with an OpenAI credential. 2. Log in as a user in workspace A (with assistants-related permissions). 3. Call `/api/v1/openai-assistants-vector-store` and set `credential` to B’s credential ID. 4. Example: `GET /api/v1/openai-assistants-vector-store?credential=<B_credentialId>`. 5. If responses/actions are executed using B’s credential context, the issue is confirmed.

Remediation

Upgrade to the fixed version using your package manager.

npm
Update flowise to 3.1.3 or later
npm install flowise@3.1.3

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (1)

PackageEcosystemAffectedFixed In
flowise
npm
All versions3.1.3

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

  • CWE-285
    Improper AuthorizationMITRE
  • CWE-863
    Incorrect AuthorizationMITRE

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 9.2 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Confidentiality
Integrity
Availability

CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:H/SA:H

Frequently Asked Questions

What is CVE-2026-70472?
Flowise: Cross-workspace credential IDOR in openai-assistants-vector-store This vulnerability has been assigned a severity rating of HIGH (CVSS score: 9.2/10).
How do I check if my project is affected by CVE-2026-70472?
CVE-2026-70472 affects flowise. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2026-70472 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
9.2

Exploitation is straightforward and causes maximum impact. Patch immediately.

Also Known As

GHSA-chm3-vqcf-52rx

Related CVEs

  • CVE-2025-71334
    CRITICAL

    Flowise has arbitrary file access due to missing chat flow id validation

  • CVE-2026-70478
    CRITICAL

    Flowise: Unauthenticated OAuth2 token refresh endpoint returns access tokens — enables token theft for any connected service

  • CVE-2026-41265
    CRITICAL

    Flowise: Airtable_Agent Code Injection Remote Code Execution Vulnerability

  • CVE-2026-69255
    CRITICAL

    Flowise: CSV Agent Remote Code Execution via Pyodide Code Injection — Root Shell Verified

  • CVE-2026-41274
    HIGH

    Flowise: Cypher Injection in GraphCypherQAChain

  • CVE-2026-56274
    HIGH

    Flowise has an MCP Security Bypass that Enables RCE

  • CVE-2026-46479
    HIGH

    FlowiseAI: Evaluation create+update mass-assignment allows cross-workspace evaluation takeover

  • CVE-2025-34267
    HIGH

    Flowise: Authenticated Command Execution and Sandbox Bypass via Puppeteer and Playwright Packages

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies