惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
V
Visual Studio Blog

www.infosecurity-magazine.com

Just Three Ransomware Gangs Accounted for 40% of Attacks Last Month Google Chrome Rolls Out Protection Against Infostealers Targeting Session Cookies STX RAT Targets Finance Sector With Advanced Stealth Tactics Bitcoin Depot Reports $3.6m Crypto Theft After System Breach Atomic Stealer MacOS ClickFix Attack Bypasses Apple Security Warnings Middle East Hack-for-Hire Operation Traced to South Asian Cyber Espionage Group Governance Gaps Emerge as AI Agents Drive 76% Increase in NHIs Google Warns of New Threat Group Targeting BPOs and Helpdesks Google API Keys Quietly Gain Access to Gemini on Android Devices Critical Vulnerability in Ninja Forms Exposes WordPress Sites Anthropic Launches Project Glasswing to Use AI to Find and Fix Critical Software Vulnerabilities US Thwarts DNS Hijacking Network Controlled by Russian APT28 Hackers Claude Discovers Apache ActiveMQ Bug Hidden for 13 Years Iran‑Backed Threat Actors Hit US CNI Providers via Internet‑Facing OT Assets Russian APT28 Hackers Hijack Routers to Steal Credentials, UK Security Agency Warns GPU Rowhammer Attack Enables Privilege Escalation and Full System Compromise GrafanaGhost Exploit Bypasses AI Guardrails for Silent Data Exfiltration Over $17bn Lost to Cyber Fraud in the Last Year, Warns FBI Storm-1175 Exploits Flaws in High-Velocity Medusa Attacks Fortinet Releases Emergency Patch After FortiClient EMS Bug Is Exploited New Phishing Platform Used in Credential Theft Campaigns Against C-Suite Execs New 'Storm' Infostealer Remotely Decrypts Stolen Credentials NCSC Issues Security Alert Over Hackers Targeting WhatsApp and Signal Accounts Apple Expands iOS 18 Security Updates Amid DarkSword Threat Researchers Observe Sub-One-Hour Ransomware Attacks GitHub Used as Covert Channel in Multi-Stage Malware Campaign Most CNI Firms Face Up to £5m in Downtime from OT Attacks Google Introduces Android Dev Verification Amid Openness Debate New Venom Stealer MaaS Platform Automates Continuous Data Theft Chinese Hackers Target European Governments in Espionage Campaigns
Critical Flowise Flaw Gives Attackers Full Server Control
Alessandro Mascellino · 2026-06-01 · via www.infosecurity-magazine.com

A critical flaw in the open-source AI platform Flowise has been disclosed, along with working proof-of-concept (PoC) code, allowing an attacker to take over a server when a logged-in user simply imports a malicious workflow file.

According to new analysis from Obsidian Security, the bug, tracked as CVE-2026-40933, affects Flowise, a widely used platform for building large language model (LLM) workflows and AI agents with more than 52,000 GitHub stars. Self-hosted deployments are vulnerable by default, while the managed Flowise Cloud service is not affected.

The finding builds on the firm's earlier research into a similar remote code execution (RCE) flaw in Langflow, another open-source AI platform. Obsidian released a PoC exploit with its disclosure and warned that the official fix can be circumvented, leaving the latest release exposed.

Custom MCP Tool Spawns Server Commands

The weakness lies in Flowise's Custom MCP tool, a feature that lets users wire external services into the Model Context Protocol (MCP).

When set to the stdio transport, the tool launches a user-supplied command as a child process on the Flowise server, with no sandbox around it.

Because Flowise lets users export and share these workflows, known as chatflows, an attacker can hide a malicious command inside one.

Obsidian found that merely importing such a chatflow is enough to run the command, since the editor automatically queries the configured server as the workflow loads onto the canvas. No save, run or approval step is needed before the code executes.

A Patch That Can Be Bypassed

Flowise answered the disclosure with an input-validation layer that allow lists permitted commands and blocks risky arguments.

However, Obsidian said this treats the symptom rather than the cause, because the feature is built to execute code and an attacker can still express malicious behavior inside the allowed input.

Read more on RCE flaws in AI agent platforms: Hackers Exploit Critical Langflow Bug in Just 20 Hours

The upshot is that self-hosted installations, both open-source and enterprise, stay vulnerable by default even on the current version. Obsidian argued that stdio MCP should be switched off unless it is explicitly needed, rather than left running behind validation checks that can be worked around.

The most effective protection is to disable the stdio transport by switching Flowise's Custom MCP protocol to Server-Sent Events (SSE), which removes the execution path entirely. 

Teams that rely on the feature were urged to treat any imported MCP configuration as code, restrict it to trusted sources and avoid loading shared chatflows from unknown origins.