Hackers News Hackers News
  • CyberSecurity News
  • Threats
  • Attacks
  • Vulnerabilities
  • Breaches
  • Comparisons

Social Media

Hackers News Hackers News
  • CyberSecurity News
  • Threats
  • Attacks
  • Vulnerabilities
  • Breaches
  • Comparisons
Search the Site
Popular Searches:
technology Amazon AI
Recent Posts
How SOCs Detect and Stop AI Phishing Attacks Bypassing Email Gateways
August 4, 2026
Critical Flowise RCE Flaws Let Attackers Execute Code on AI Workflow Servers
August 4, 2026
OWASP Releases Subtractive Security Top 10 to Reduce Cyber Risks
August 4, 2026
Home/Threats/Critical Flowise RCE Flaws Let Attackers Execute Code on AI Workflow Servers
Threats

Critical Flowise RCE Flaws Let Attackers Execute Code on AI Workflow Servers

Key Takeaways Six critical remote code execution (RCE) vulnerabilities have been discovered in Flowise, an open-source platform for building AI agents and workflows. These flaws could enable...

Sarah simpson
Sarah simpson
August 4, 2026 5 Min Read
3 0

Key Takeaways

  • Six critical remote code execution (RCE) vulnerabilities have been discovered in Flowise, an open-source platform for building AI agents and workflows.
  • These flaws could enable authenticated attackers to execute arbitrary commands on the underlying server, compromising sensitive data and connected systems.
  • The vulnerabilities affect Flowise versions 3.1.1 and 3.1.2, stemming from incomplete patches for previously identified security issues.
  • Flowise has released updates to address these flaws, and administrators are urged to upgrade immediately.

A new report has revealed six severe remote code execution (RCE) vulnerabilities in Flowise, the popular open-source tool for developing AI agents and automated workflows. These security weaknesses could allow attackers with authenticated access to execute arbitrary commands on the server hosting Flowise, potentially leading to data breaches, credential theft, and compromise of interconnected systems.

Table Of Content

  • Key Takeaways
  • Detailed Analysis of Flowise RCE Flaws
  • CSV Agent Vulnerability
  • VM2 Sandbox Escape
  • Environment Variable Injection in Custom MCP
  • Additional Database-Related Issues
  • Hardening AI Workflow Servers
  • What You Should Do
  • Indicators of Compromise (IoCs)

The identified flaws exploit various Flowise components, including its CSV processing module, custom JavaScript functions, Multi-Chain Protocol (MCP) configurations, database nodes, and record management features. This discovery heightens existing concerns about the security of AI workflow servers, which have previously been targeted due to injection vulnerabilities.

Cybersecurity firm Elttam uncovered these issues during an audit of Flowise versions 3.1.1 and 3.1.2. Elttam said in a report that several prior security fixes implemented by Flowise were inadequate, allowing researchers to devise new bypasses. Given Flowise’s role in integrating language models with business applications, databases, and external services, a successful exploit could grant an attacker a significant foothold on the workflow host and access to all resources available to that server.

Detailed Analysis of Flowise RCE Flaws

CSV Agent Vulnerability

One critical vulnerability resided within Flowise’s CSVAgent feature, which enables users to input custom Python pandas code for processing uploaded CSV files. Despite Flowise employing a denylist to block hazardous Python functions, Elttam researchers found methods to manipulate pandas functionality, allowing command execution beyond the scope of data processing. An initial patch attempted to mitigate this by blocking unsafe deserialization and enforcing input to start with read_csv. However, Elttam circumvented these restrictions with a specially crafted expression that still leveraged pandas to access operating system functions. Subsequently, the developers chose to remove the problematic CSVAgent and AirtableAgent files due to ongoing normalization challenges.

VM2 Sandbox Escape

Another significant vulnerability involved Flowise’s utilization of the vm2 JavaScript sandbox. The sandbox, designed to isolate custom JavaScript code, inadvertently permitted access to certain external modules by default, such as moment. Researchers exploited this access to escape the confined environment and execute code directly on the host system. This finding underscores the risks associated with insecure integration settings, which can negate the intended protections of sandbox environments, mirroring concerns raised by previous critical Flowise MCP weaknesses.

Environment Variable Injection in Custom MCP

The report also detailed an environment-variable injection flaw within Custom MCP configurations. Attackers could exploit settings passed to a spawned process, including Python-related variables, to trigger arbitrary code execution. Although Flowise implemented checks for dangerous values, researchers identified a bypass that remained unpatched at the time of the report’s publication.

Additional Database-Related Issues

Three other vulnerabilities were pinpointed in the TypeORM DataSource options, the SQL Database Chain node, and the SQLite Record Manager node. Each of these components could be manipulated to write or load attacker-controlled content in an insecure manner. When combined with other Flowise functions, these flaws presented potential avenues for remote code execution.

Hardening AI Workflow Servers

These findings emphasize the necessity of treating AI workflow infrastructure with the same rigorous security measures applied to any internet-facing application. While MCP integrations expand an agent’s capabilities, they also introduce potential trust pathways that can be exploited, as demonstrated by research into MCP server execution risks.

What You Should Do

  • Immediate Patching: Administrators must promptly update their Flowise installations to the latest patched version to remediate these critical RCE flaws.
  • Node Review and Disablement: Conduct a thorough review of all deployed Flowise nodes. Disable or remove any components that are not strictly necessary for operational functionality.
  • Restrict Exposure: Avoid directly exposing Flowise administrative interfaces and APIs to the public internet, especially in environments where users can submit code, configuration data, files, or database connection details.
  • Principle of Least Privilege: Treat all MCP server settings as untrusted input. Limit the permissions granted to AI workflow processes, ensuring they operate with the minimum necessary privileges.
  • Isolation and Sandboxing: Run Flowise using a non-root account and isolate it within a restricted environment (e.g., Docker containers, virtual machines). Implement stringent controls over file-system access to minimize potential damage in the event of a successful exploit.
  • Proactive Monitoring: Implement robust monitoring for suspicious activities, including unexpected child processes, unusual outbound network connections, unauthorized changes to workflow configurations, and abnormal file uploads.
  • Vetting External Integrations: Restrict external MCP servers to verified and trusted sources. Mandate thorough security reviews before enabling any new integrations to prevent malicious prompt attacks from creating new attack vectors.
  • Adopt Allowlist Principles: Move away from denylist-based validation for dangerous inputs. Instead, prioritize allowlists, secure-by-default configurations, and the strict separation of untrusted code from the host environment as more reliable protection mechanisms for workflow platforms.

Indicators of Compromise (IoCs)

The following indicators were observed during the research and proof-of-concept demonstrations:

Type Indicator Description
IP address 172.17.0.1 Private Docker-network address used in proof-of-concept reverse-shell payloads.
IP address 192.168.122.62 Private laboratory address shown in proof-of-concept HTTP requests and URL injection examples.
IP address 0.0.0.0 Bind address used in the proof-of-concept Python HTTP server.
Hostname localhost Local host used in the Flowise prediction endpoint proof of concept.
URL http://localhost:3000/api/v1/prediction/UUID Local Flowise endpoint shown for triggering a vulnerable chatflow.
API endpoint POST /api/v1/node-custom-function Flowise endpoint used to execute custom JavaScript functions in the vm2 sandbox scenario.
API endpoint POST /api/v1/auth/login Flowise authentication endpoint referenced in the proof of concept.
API endpoint POST /api/v1/document-store/loader/process/:loaderId Flowise document-store endpoint referenced after uploading a JavaScript payload.
File name rce.js JavaScript reverse-shell payload file used in the researchers’ demonstration.
File path /root/.flowise/storage/ Default local Flowise storage path referenced in the proof of concept.
File path /etc/chromium/exploit.conf File path used in the SQL Database Chain and Chromium execution demonstration.
File path /proc/self/environ Linux process environment path used in an MCP configuration bypass demonstration.
File path /root/.flowise/database.sqlite Default Flowise SQLite database path referenced by the researchers.

Note: IP addresses and domains are intentionally defanged (e.g., [.]) to prevent accidental resolution or hyperlinking. Re-fang only within controlled threat intelligence platforms such as MISP, VirusTotal, or your SIEM.

Disclaimer: HackersRadar reports on cybersecurity threats and incidents for informational and awareness purposes only. We do not engage in hacking activities, data exfiltration, or the hosting or distribution of stolen or leaked information. All content is based on publicly available sources.

Tags:

AttackExploitPatchSecurityThreat

Share Article

Sarah simpson

Sarah simpson

Sarah is a cybersecurity journalist specializing in threat intelligence and malware analysis. With over 8 years of experience covering APT groups, zero-day exploits, and advanced persistent threats, Sarah brings deep technical expertise to breaking cybersecurity news. Previously, she worked as a security researcher at leading threat intelligence firms, where she analyzed malware samples and tracked cybercriminal operations. Sarah holds a Master's degree in Computer Science with a focus on cybersecurity and is a regular contributor to major security conferences.

Previous Post

OWASP Releases Subtractive Security Top 10 to Reduce Cyber Risks

Next Post

How SOCs Detect and Stop AI Phishing Attacks Bypassing Email Gateways

No Comment! Be the first one.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Popular Posts
Critical CUPS Vulnerability (CVE-2023-4586) Lets Attackers Gain Root Privileges
August 4, 2026
New Roblox Malware Steals Desktop Streams and Webcam Footage
August 4, 2026
Keyv npm package compromised in supply chain attack
August 4, 2026
Top Authors
Marcus Rodriguez
Marcus Rodriguez
Emy Elsamnoudy
Emy Elsamnoudy
Jennifer sherman
Jennifer sherman
Let's Connect
156k
2.25m
285k

Related Posts

Jennifer sherman
By Jennifer sherman
Threats

GlassWorm Attacks macOS via Malicious VS Code…

January 1, 2026
Emy Elsamnoudy
By Emy Elsamnoudy
Attacks

ClickFix Attack Hides Malicious Code via Stegan Security

January 1, 2026
Sarah simpson
By Sarah simpson
Vulnerabilities

MongoBleed Detector Tool Released to Detect MongoDB Vulnerability(CVE-2025-14847)

January 1, 2026
Emy Elsamnoudy
By Emy Elsamnoudy
Breaches

Conti Ransomware Gang Leaders & Infrastructure Exposed

January 1, 2026
Hackers News Hackers News
  • [email protected]

Quick Links

  • Contact Us
  • Privacy Policy
  • Terms of service

Categories

Attacks
Breaches
Comparisons
CyberSecurity News
Threats
Vulnerabilities

Let's keep in touch

receive fresh updates and breaking cyber news every day and week!

All Rights Reserved by HackersRadar ©2026

Follow Us