CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-69252

CVE-2026-69252: Broken Workspace Isolation and Missing Authorization in Flowise File Management API

Amit Schendel
Amit Schendel
Senior Security Researcher

Aug 4, 2026·5 min read·3 visits

Executive Summary (TL;DR)

Flowise prior to 3.1.3 allows authenticated users with low-privilege API keys to read and delete files across different workspaces due to missing authorization checks on the `/api/v1/files` endpoint.

CVE-2026-69252 represents a missing authorization check (CWE-862) in the files API route (`/api/v1/files`) of Flowise, a drag-and-drop user interface for building LLM flows. Prior to version 3.1.3, an authenticated API key or user could list, access, and delete files across arbitrary workspaces inside an organization, completely bypassing workspace logical boundaries.

Vulnerability Overview

Flowise serves as a graphical user interface and orchestrator for assembling customized Large Language Model (LLM) processing chains. To facilitate this, the system exposes a web UI and a set of backend HTTP APIs to handle storage, prompt management, and workflow parameters.\n\nWithin multi-tenant or multi-user enterprise deployments, Flowise relies on 'workspaces' to maintain isolation boundaries between different teams, projects, or users. Assets uploaded to one workspace must remain inaccessible to users of other workspaces, even if those users share the same parent organization structure.\n\nPrior to version 3.1.3, Flowise failed to enforce workspace-level authorization checks on the file management endpoint (/api/v1/files). While authentication was validated, individual authorization checks (checkPermission) were omitted entirely. Consequently, any authenticated API key—regardless of its scoped permissions—could invoke actions to retrieve directory listings and delete files globally within the parent organization directory.

Root Cause Analysis

The core defect lies in a combination of Missing Function-Level Access Control (CWE-862) and Broken Object-Level Authorization (BOLA). In the Express routing layer of Flowise, the endpoint registration failed to bundle proper role-based access control or workspace verification middleware.\n\nInstead, the route relied exclusively on a plan-based feature gate:\ntypescript\nrouter.use('/files', IdentityManager.checkFeatureByPlan('feat:files'), filesRouter)\n\nThis check only validated that the organization's subscription tier or configuration had the file manager enabled. It did not perform any validation of user permissions or logical boundaries.\n\nInside the controllers, the file operations were executed with organizational scope rather than workspace scope. When listing files, the backend retrieved all files under the directory path constructed using activeOrganizationId, disregarding the requester's activeWorkspaceId. For deletion operations, the system accepted a relative path and concatenated it to the organization's base directory, allowing a malicious actor to supply paths targeting files belonging to different workspaces.

Code-Level Architecture Analysis

To understand the logical failure, it is useful to visualize the flow of requests through the vulnerable components.\n\nmermaid\ngraph LR\n Attacker[\"Attacker (Low-Privilege API Key)\"] -->|\"GET/DELETE /api/v1/files\"| Router[\"Express Route Router\"]\n Router -->|\"Only checks plan feature\"| Controller[\"Files Controller\"]\n Controller -->|\"No checkPermission validation\"| Storage[\"Organization Storage Root\"]\n Storage -->|\"Accesses files in sibling workspace\"| VictimWorkspace[\"Victim Workspace Files\"]\n\n\nThe vulnerability was resolved in commit bc22bf8baec95b6a3d6e1b3563b4f03491cd6fbb by disabling the endpoint entirely. Below is an examination of the changes applied in the patch.\n\nIn packages/server/src/routes/index.ts, the files router was commented out to completely strip the attack surface:\ndiff\n-import filesRouter from './files'\n...\n-router.use('/files', IdentityManager.checkFeatureByPlan('feat:files'), filesRouter)\n+// router.use('/files', IdentityManager.checkFeatureByPlan('feat:files'), filesRouter)\n\n\nAdditionally, the API endpoint was hard-coded into the API key blacklist array in packages/server/src/utils/constants.ts to prevent standard API keys from accessing the route even if it is active:\ndiff\n-export const API_KEY_BLACKLIST_URLS = ['/api/v1/nvidia-nim', '/api/v1/account/delete']\n+export const API_KEY_BLACKLIST_URLS = ['/api/v1/nvidia-nim', '/api/v1/account/delete', '/api/v1/files']\n\n\nThis remediation path represents a temporary 'fail-secure' strategy. The complete removal of the feature eliminates the vulnerability but leaves the software without file manager functionality until a robust, workspace-aware permission model is integrated.

Exploitation Methodology

Exploitation of CVE-2026-69252 requires the attacker to possess an authenticated session or a valid API key within the organization. Even an API key restricted to minor scopes, such as tools:view, is sufficient because the target controller does not query key permissions.\n\nTo list the contents of sibling workspaces, an attacker makes a standard GET request to the file API:\nbash\ncurl -i \\\n -H 'Authorization: Bearer <low_privilege_api_key>' \\\n http://localhost:8080/api/v1/files\n\nIf files are present, the server responds with an array of objects. Each object reveals the underlying directory structure, disclosing the target workspace IDs:\njson\n[\n {\n \"name\": \"confidential_keys.txt\",\n \"path\": \"f92a9a4d-392e-4db2-af82-d14e1d553446/confidential_keys.txt\",\n \"size\": 128\n }\n]\n\n\nWith the leaked workspace ID and filename, the attacker can execute an unauthorized deletion. The attacker sends a DELETE request with the path pointing to the sibling workspace file:\nbash\ncurl -i -X DELETE --get \\\n -H 'Authorization: Bearer <low_privilege_api_key>' \\\n --data-urlencode 'path=f92a9a4d-392e-4db2-af82-d14e1d553446/confidential_keys.txt' \\\n http://localhost:8080/api/v1/files\n\nThe server processes the deletion directly, returning {\"message\": \"file_deleted\"}. No checks are executed to verify if the requesting API key possesses write or deletion permissions in workspace f92a9a4d-392e-4db2-af82-d14e1d553446.

Security & Business Impact

The impact of CVE-2026-69252 is twofold, affecting both the confidentiality and availability of sensitive deployment data. In enterprise environments, LLM orchestrators often host sensitive training sets, system prompts, API keys, and corporate documents containing proprietary information.\n\nFirst, the disclosure of file listings allows low-privileged insiders or compromised API tokens to map out the entire document library of the organization. This facilitates targeted data exfiltration by revealing the exact locations and filenames of private assets.\n\nSecond, the cross-workspace deletion capabilities introduce severe availability risks. Because LLM pipelines often rely on persistent document stores, vector databases, or local configurations to function, the deletion of these assets can disrupt user-facing services. This constitutes a full denial-of-service capability on dependent LLM agents.

Remediation & Detection

To resolve CVE-2026-69252, operators must upgrade their installations of Flowise to version 3.1.3 or higher. The update implements the complete deprecation of the /api/v1/files routes on both the backend and frontend.\n\nFor instances where an immediate upgrade is not feasible, security administrators should deploy manual mitigations. This can be accomplished by editing the routing files locally inside packages/server/src/routes/index.ts to comment out the /files endpoint registration, matching the modifications implemented in the official patch.\n\nAdditionally, detection of exploitation attempts can be achieved through web server log analysis. Security Operations Centers (SOCs) should monitor for any DELETE requests aimed at /api/v1/files and inspect the path URL parameter for attempts to reference folders outside of the user's active workspace. Any access to /api/v1/files by low-privileged API tokens should be investigated as unauthorized activity.

Official Patches

FlowiseAIOfficial commit removing files router implementation

Fix Analysis (1)

Technical Appendix

CVSS Score
7.2/ 10
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:H/SC:N/SI:N/SA:N
450
via Shodan

Affected Systems

Flowise LLM Orchestration Platform

Affected Versions Detail

Product
Affected Versions
Fixed Version
Flowise
FlowiseAI
< 3.1.33.1.3
AttributeDetail
CWE IDCWE-862
Attack VectorNetwork (AV:N)
CVSS v4.0 Score7.2 (High)
Exploit StatusPoC (Proof-of-Concept)
ImpactConfidentiality (High), Availability (High)
KEV StatusNot Listed

MITRE ATT&CK Mapping

T1068Exploitation for Privilege Escalation
Privilege Escalation
CWE-862
Missing Authorization

The software does not perform an authorization check when an actor attempts to access a resource or perform an action.

Known Exploits & Detection

GitHub Security Advisory GHSA-wp74-f5hh-5f3rPublic advisory containing the vulnerability analysis and validation step steps for listing and deleting files using a low-privilege token.

Vulnerability Timeline

Vulnerability resolved in codebase via Pull Request #6435
2026-05-26
GitHub Security Advisory GHSA-wp74-f5hh-5f3r published and CVE-2026-69252 assigned
2026-08-04

References & Sources

  • [1]GitHub Security Advisory: Missing Authorization on /api/v1/files
  • [2]Flowise Pull Request #6435
  • [3]Flowise Patch Commit bc22bf8baec95b6a3d6e1b3563b4f03491cd6fbb
  • [4]Flowise v3.1.3 Release Tag

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•6 minutes ago•CVE-2026-69262
7.1

CVE-2026-69262: Incorrect Authorization Flaw in Flowise Chatflow Deletion Endpoint

CVE-2026-69262 is a high-severity incorrect authorization vulnerability (CWE-863) within the Flowise drag-and-drop LLM flow platform. Prior to version 3.1.3, Flowise did not enforce resource-type validation on its deletion endpoint. Although routing middleware ensured users held deletion privileges for either chatflows or agentflows, the service level lacked validation checks to verify whether the target resource matched the user's specific permissions. Consequently, an authenticated user with only agentflow deletion permissions could delete arbitrary chatflow configurations, leading to unauthorized state modification and service disruption.

Amit Schendel
Amit Schendel
0 views•7 min read
•about 1 hour ago•CVE-2026-69258
8.8

CVE-2026-69258: Unauthenticated Property Injection and Authorization Bypass in Flowise

CVE-2026-69258 is a high-severity property injection and unauthenticated authorization bypass vulnerability in Flowise, a drag-and-drop orchestration interface for building customized LLM workflows. In affected versions prior to 3.1.3, the unauthenticated prediction API endpoint (`POST /api/v1/prediction/:id`) processed client-controlled parameters inside an `overrideConfig` payload without authorization checks. The backend unconditionally spread this object into internal context structures, enabling unauthenticated remote attackers to overwrite critical session values, pollute execution contexts, and bypass flow restrictions.

Amit Schendel
Amit Schendel
5 views•5 min read
•about 3 hours ago•CVE-2026-45584
8.1

CVE-2026-45584: Heap-Based Buffer Overflow in Microsoft Defender (mpengine.dll)

A comprehensive technical analysis of CVE-2026-45584, a high-severity heap-based buffer overflow in Microsoft Defender's QEX parsing logic. The vulnerability resides within mpengine.dll and allows unauthenticated remote code execution or denial of service when processing crafted archives designed to trigger threat remediation and QEX history logging.

Alon Barad
Alon Barad
3 views•7 min read
•about 3 hours ago•CVE-2026-16728
4.8

CVE-2026-16728: Downstream HTTP Response Desynchronization in Undici Retry Interceptor

A medium-severity vulnerability in Undici's retry interceptor causes body-length mismatches with the Content-Length header during HTTP 206 response resumption. Forwarding these inconsistent headers downstream leads to HTTP response desynchronization, connection hangs, or potential protocol smuggling.

Alon Barad
Alon Barad
2 views•7 min read
•about 4 hours ago•CVE-2026-16729
4.8

CVE-2026-16729: Cookie Attribute Injection in Undici via Unsanitized Domain and Unparsed Fields

CVE-2026-16729 (GHSA-v3r7-h72x-cjcm) is a medium-severity cookie attribute injection vulnerability in Undici's web-compliant cookie utility module. Due to insufficient validation of domain parameters and raw attributes in the unparsed options array, arbitrary attributes like SameSite, HttpOnly, and Secure can be injected. This allows attackers to bypass CSRF protections, strip security flags, or override intended cookie behaviors when applications pass user-controlled values to these properties.

Amit Schendel
Amit Schendel
3 views•7 min read
•about 5 hours ago•CVE-2026-14643
5.9

CVE-2026-14643: Shared Cache Pollution and Information Disclosure via Whitespace Parsing Discrepancies in Undici

An interpretation conflict (CWE-436) in the cache interceptor of the undici HTTP client for Node.js causes whitespace-padded Cache-Control directives to be parsed incorrectly, leading to shared cache pollution and the unauthorized disclosure of sensitive, private, or authenticated user information (CWE-524).

Amit Schendel
Amit Schendel
4 views•6 min read