CVE-2025-71333
Analyzed Analyzed - Analysis Complete

Unauthenticated Arbitrary File Upload in Flowise

Vulnerability report for CVE-2025-71333, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-25

Last updated on: 2026-07-01

Assigner: VulnCheck

Description

Flowise through 2.2.4 contains an unauthenticated arbitrary file upload vulnerability in the /api/v1/attachments endpoint when storageType is set to local. Attackers can exploit path traversal in the chatId and chatflowId parameters to upload malicious files to arbitrary directories, potentially enabling remote code execution and server compromise.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-25
Last Modified
2026-07-01
Generated
2026-07-16
AI Q&A
2026-06-26
EPSS Evaluated
2026-07-15
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
flowiseai flowise to 2.2.4 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-73 The product allows user input to control or influence paths or file names that are used in filesystem operations.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in Flowise version 2.2.4 and involves an unauthenticated arbitrary file upload through the /api/v1/attachments endpoint when the storageType is set to local.

Attackers can exploit path traversal weaknesses in the chatId and chatflowId parameters to upload malicious files to arbitrary directories on the server.

This can potentially allow attackers to execute remote code and compromise the server.

Impact Analysis

The vulnerability can lead to severe security impacts including remote code execution and full server compromise.

An attacker exploiting this flaw could upload malicious files without authentication, potentially gaining control over the affected system.

Compliance Impact

The vulnerability allows unauthenticated attackers to upload malicious files to arbitrary directories, potentially leading to remote code execution, server compromise, and data theft.

Such a compromise can result in unauthorized access to sensitive data, which may violate data protection regulations like GDPR and HIPAA that require safeguarding personal and health information.

Because the vulnerability impacts confidentiality, integrity, and availability of data, it poses a significant risk to compliance with these standards, which mandate strict controls to prevent unauthorized data access and ensure system security.

Detection Guidance

Detection of this vulnerability involves monitoring for unauthorized or suspicious file uploads to the /api/v1/attachments endpoint, especially when the storageType parameter is set to local.

Since the vulnerability exploits path traversal in the chatId and chatflowId parameters, you can look for unusual requests containing traversal patterns such as '../' or encoded equivalents in these parameters.

Network detection commands could include using tools like curl or wget to test the endpoint for path traversal attempts, or using web server logs to grep for suspicious parameter values.

  • Example command to search web server logs for path traversal attempts: grep -E 'chatId=.*\.\./|chatflowId=.*\.\./' /var/log/nginx/access.log
  • Use curl to test the upload endpoint with path traversal payloads: curl -X POST 'http://<target>/api/v1/attachments?storageType=local&chatId=../../etc/passwd&chatflowId=1' -F 'file=@maliciousfile'

Additionally, monitoring for unexpected file creations or modifications in directories where uploads should not occur can help detect exploitation attempts.

Mitigation Strategies

Immediate mitigation steps include restricting or disabling the /api/v1/attachments endpoint if not required, especially when storageType is set to local.

Apply strict validation and sanitization on the chatId and chatflowId parameters to prevent path traversal attacks.

Implement authentication and authorization checks on the /api/v1/attachments endpoint to prevent unauthenticated access.

Restrict file types and enforce safe file upload handling to avoid uploading executable or malicious files.

Update Flowise to a version later than 2.2.4 where this vulnerability is patched, if such a version is available.

Monitor your systems for signs of compromise and review uploaded files for unauthorized content.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2025-71333. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart