Skip to main content

Flowise EUVDEUVD-2026-35116

| CVE-2026-46479 HIGH
Improperly Controlled Modification of Dynamically-Determined Object Attributes (CWE-915)
2026-05-14 https://github.com/FlowiseAI/Flowise GHSA-mq53-pc65-wjc4
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:34 vuln.today
v3 (cvss_changed)
Analysis Updated
Jun 08, 2026 - 16:33 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:48 vuln.today
Analysis Generated
May 14, 2026 - 21:48 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 Evaluation entity -> cross-workspace data takeover and IDOR. File: packages/server/src/services/evaluations/index.ts Root cause: The Evaluation controller/service constructs a new Evaluation() 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 evaluation entity's sibling controllers and as DocumentStore before it was patched in commit 840d2ae.

Affected Code

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

ts
// at line 69
Object.assign(newEvaluation, body)      // <-- BUG: body.id, body.workspaceId, body.createdDate, body.updatedDate 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 evaluation 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/evaluations/<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 evaluation 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 evaluation 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). Evaluation runs (which may include captured prompts, model outputs, scoring data) can be moved cross-workspace via workspaceId overwrite, exposing the data to attacker workspace members. Preconditions: Authenticated session with edit permission for the source evaluation. 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/6050 (allowlist pattern applied).

ts
// Allowlist pattern (matches commit 840d2ae for DocumentStore):
const updatedEvaluation = new Evaluation()
if (body.<allowed_field_1> !== undefined) updatedEvaluation.<allowed_field_1> = body.<allowed_field_1>
if (body.<allowed_field_2> !== undefined) updatedEvaluation.<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 data takeover in FlowiseAI Flowise versions 3.1.1 and earlier allows any authenticated workspace member to reassign Evaluation entities to arbitrary workspaces by exploiting a mass assignment flaw in the evaluations service. The vulnerability stems from unsanitized use of Object.assign() on user-controlled request bodies, enabling clients to overwrite protected fields including workspaceId and id. No public exploit identified at time of analysis, though the GHSA advisory and patch diff provide sufficient detail to reconstruct one trivially.

Technical ContextAI

Flowise is a Node.js/TypeScript LLM application builder using TypeORM for persistence. The bug lives in packages/server/src/services/evaluations/index.ts at line 69, where Object.assign(newEvaluation, body) copies every enumerable own property of the HTTP request body onto a new Evaluation entity before persistence. Because TypeORM does not filter ownership-bearing columns, client-supplied values for workspaceId, id, createdDate, and updatedDate are written directly to the database row. This is a textbook CWE-915 (Improperly Controlled Modification of Dynamically-Determined Object Attributes) - the same root pattern that previously affected the DocumentStore entity and was fixed in commit 840d2ae via an explicit field allowlist that was never propagated to the Evaluation entity. The affected package is identified by CPE pkg:npm/flowise.

RemediationAI

Vendor-released patch: upgrade to Flowise 3.1.2 or later (https://github.com/FlowiseAI/Flowise/releases/tag/flowise%403.1.2), which introduces a stripProtectedFields utility that filters id, createdDate, updatedDate, runDate, workspaceId, and organizationId from request bodies before Object.assign, and explicitly rebinds the server-derived workspaceId after assignment (patch PR https://github.com/FlowiseAI/Flowise/pull/6050, commit dc07f4062b852033554543a3cff3daf3433b0dac). If immediate upgrade is not possible, restrict access to the Evaluation API endpoints (PUT /api/v1/evaluations/<id> and the create endpoint) at the reverse proxy or WAF level to deny request bodies containing the workspaceId, id, createdDate, or updatedDate JSON keys - this preserves normal write operations while blocking the mass-assignment vector, with the side effect of breaking any legitimate client that mistakenly sends those fields. As a defense-in-depth measure, audit recently modified evaluation rows for unexpected workspaceId reassignments before applying the patch.

Share

EUVD-2026-35116 vulnerability details – vuln.today

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