Skip to main content

Flowise CVE-2026-46475

| EUVDEUVD-2026-35112 HIGH
Improperly Controlled Modification of Dynamically-Determined Object Attributes (CWE-915)
2026-05-14 https://github.com/FlowiseAI/Flowise GHSA-78pr-c5x5-jggc
7.7
CVSS 4.0 · Vendor: https://github.com/FlowiseAI/Flowise
Share

Severity by source

Vendor (https://github.com/FlowiseAI/Flowise) PRIMARY
7.7 HIGH
CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X

Primary rating from Vendor (https://github.com/FlowiseAI/Flowise) · only source for this CVE.

CVSS VectorVendor: https://github.com/FlowiseAI/Flowise

CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
X

Lifecycle Timeline

7
Analysis Updated
Jun 08, 2026 - 16:39 vuln.today
v3 (cvss_changed)
Analysis Updated
Jun 08, 2026 - 16:38 vuln.today
v2 (cvss_changed)
Re-analysis Queued
Jun 08, 2026 - 16:22 vuln.today
cvss_changed
CVSS changed
Jun 08, 2026 - 16:22 NVD
7.7 (HIGH)
Source Code Evidence Fetched
May 14, 2026 - 21:46 vuln.today
Analysis Generated
May 14, 2026 - 21:46 vuln.today
CVE Published
May 14, 2026 - 16:19 nvd
HIGH

DescriptionCVE.org

Summary

Type: Mass assignment via Object.assign(entity, body) -> client-controlled workspaceId (and on create, id) overwritten on the Assistant entity -> cross-workspace data takeover and IDOR. File: packages/server/src/services/assistants/index.ts Root cause: The Assistant controller/service constructs a new Assistant() and copies the request body into it via Object.assign(...) without an explicit field allowlist. The request body therefore can include workspaceId, id, createdDate, updatedDate. The server only rebinds *some* of these after the assign (e.g. on create, it overwrites workspaceId but not id; on update, it overwrites id but not workspaceId). The remaining client-controlled values land directly on the persisted row, breaking workspace isolation. Same root pattern as the assistant entity's sibling controllers and as DocumentStore before it was patched in commit 840d2ae.

Affected Code

File: packages/server/src/services/assistants/index.ts

ts
// create (line 303) and update (line 381)
Object.assign(newAssistant, requestBody) // <-- BUG: requestBody.id, requestBody.workspaceId accepted

Why it's wrong: Object.assign(target, source) copies every own enumerable property of source onto target. The TypeORM/SQL persistence layer below it does not strip ownership-bearing columns, so workspaceId set in the request body lands as the new workspaceId of the persisted row. The DocumentStore patch (commit 840d2ae) demonstrated the intended fix shape (explicit field-by-field allowlist) but it has not been applied to this entity.

Exploit Chain

  1. Attacker is an authenticated member of workspace A. They have a session cookie / JWT for the Flowise web UI. State at this point: attacker can read and write entities scoped to workspace A.
  2. Attacker creates a assistant in workspace A via the documented API (or reuses an existing one they own). They note its entity id.
  3. Attacker issues a PUT /api/v1/assistants/<id> (or equivalent endpoint) with a JSON body that includes "workspaceId": "<workspace-B-id>" (an arbitrary other workspace's UUID). State at this point: the request reaches the controller as a workspace-A authenticated request.
  4. The controller calls Object.assign(updateEntity, body). The body's workspaceId overwrites the entity's workspaceId field. The persistence layer commits the row.
  5. Final state: the assistant row is now owned by workspace B. Workspace B members can see it, modify it, and use it. Workspace A loses access (it no longer satisfies their workspace filter). The original creator's workspace audit shows nothing because the operation looked like a normal update.

Security Impact

Severity: High. Cross-workspace boundary violation by any authenticated workspace member. Attacker capability: Any authenticated user with permission to update a assistant can move it to any workspace whose UUID they can guess or enumerate (workspace UUIDs are exposed in many API responses, so enumeration is trivial). Assistants encapsulate LLM configuration, instructions, attached tools, and credentials. Cross-workspace movement via workspaceId overwrite exposes the assistant (including its system prompt and tool list) to the destination workspace. Preconditions: Authenticated session with edit permission for the source assistant. No second factor required. Workspace UUIDs are exposed via the /api/v1/workspaces listing or via any cross-referenced object's workspaceId field, so target enumeration is trivial. Differential: PoC-verified by source inspection of the original GHSA-q4pr-4r26-c69r. Patched build (with the suggested fix below) refuses the workspaceId field; vulnerable build accepts it and persists it.

Suggested Fix

Already fixed in PR https://github.com/FlowiseAI/Flowise/pull/6128 (allowlist pattern applied).

ts
// Allowlist pattern (matches commit 840d2ae for DocumentStore):
const updatedAssistant = new Assistant()
if (body.<allowed_field_1> !== undefined) updatedAssistant.<allowed_field_1> = body.<allowed_field_1>
if (body.<allowed_field_2> !== undefined) updatedAssistant.<allowed_field_2> = body.<allowed_field_2>
// ...whitelist only the documented fields. Never copy id, workspaceId, createdDate, updatedDate from the client.

Regression tests should assert that a request body containing workspaceId, id, createdDate, or updatedDate is rejected (or at minimum: does not change those columns on the persisted row) for both create and update paths.

AnalysisAI

Cross-workspace assistant takeover in FlowiseAI Flowise <= 3.1.1 allows any authenticated workspace member to reassign Assistant entities (including their system prompts, tool configurations, and embedded credentials) to arbitrary other workspaces by submitting a client-controlled workspaceId in create or update request bodies. The flaw stems from unfiltered Object.assign() on user input in packages/server/src/services/assistants/index.ts, enabling tenant-isolation bypass and IDOR. No public exploit identified at time of analysis, though the vendor advisory GHSA-78pr-c5x5-jggc includes a detailed PoC walkthrough making weaponization straightforward.

Technical ContextAI

Flowise is an open-source low-code platform for building LLM applications and AI agents, distributed via npm as the 'flowise' package. The vulnerability is a textbook CWE-915 (Improperly Controlled Modification of Dynamically-Determined Object Attributes), commonly known as mass assignment. The Assistant service constructs a new TypeORM entity and uses JavaScript's Object.assign(target, source) to bulk-copy request body fields onto it, which copies every own enumerable property - including ownership-bearing columns like workspaceId, id, createdDate, and updatedDate. While the controller rebinds some of these fields after assignment, neither workspaceId (on update) nor id (on create) is consistently overwritten, so the client-supplied value reaches the SQL persistence layer. The same anti-pattern was previously fixed in the DocumentStore entity (commit 840d2ae) using an explicit allowlist, but the fix was not propagated to the sibling Assistant controller until PR #6128.

RemediationAI

Upgrade to vendor-released patch flowise 3.1.2 or later, which applies an allowlist pattern via a new stripProtectedFields() helper and explicitly re-binds workspaceId from the authenticated session - see PR https://github.com/FlowiseAI/Flowise/pull/6128 and commit https://github.com/FlowiseAI/Flowise/commit/1cf247eab35c7c3d4db381d23e4dca682fba527b. For deployments unable to upgrade immediately, place a reverse proxy or API gateway rule in front of /api/v1/assistants that strips workspaceId, id, createdDate, and updatedDate fields from incoming JSON request bodies on POST and PUT - this blocks the mass-assignment vector but will silently break any legitimate client that depends on submitting those fields. As a stronger compensating control in shared deployments, restrict Assistant create/update permissions to a small set of trusted operators via Flowise's RBAC until the upgrade is applied, accepting reduced self-service for tenant administrators. Also audit existing Assistant rows for unexpected workspaceId values that may indicate prior exploitation.

Share

CVE-2026-46475 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy