VulnWatch Weekly: The Flowise Apocalypse & Active Langflow Exploitation
This week marks a critical turning point for AI platform security with a massive cluster of RCE vulnerabilities in Flowise and active exploitation of IBM Langflow. Immediate patching is required for model serving stacks and agentic frameworks.
Week in Review: The Supply Chain Collapses
The week of August 3–9, 2026, will be remembered as one of the most catastrophic periods for AI infrastructure security in recent history. The dominant theme is unequivocally the systemic collapse of trust in low-code AI orchestration platforms, spearheaded by a devastating cluster of over fifteen critical vulnerabilities in Flowise, ranging from prompt injection to full remote code execution (RCE). Simultaneously, the threat landscape shifted from theoretical to kinetic with the confirmation that IBM Langflow vulnerabilities are being actively exploited in the wild, necessitating immediate incident response for any deployment of that software. While model serving layers like llama.cpp revealed deep memory safety issues, the most urgent item for CISOs this week is the active exploitation of Langflow (CVE-2026-9198); if you are running Langflow OSS 1.0.0–1.10.3, assume compromise and isolate immediately.
Top Items of the Week
The following entries represent the highest impact risks identified this week. These items demand immediate attention from platform engineering and security operations teams.
-
CVE-2026-9198 (IBM Langflow Code Injection)
- Severity: Critical (CVSS 9.8)
- Status: KNOWN EXPLOITED (CISA KEV)
- Component: IBM Langflow OSS
- Impact: Unauthenticated attackers can achieve full remote code execution on default deployments.
- Action: Isolate affected instances immediately. Upgrade to the latest patched version or disable the vulnerable component if a patch is unavailable. Review logs for unauthorized code execution attempts.
- Source: NVD
-
CVE-2026-70477 & CVE-2026-70470 (Flowise Prompt Injection & Validator Bypass)
- Severity: Critical (CVSS 9.5)
- Component: Flowise (CSV Agent Node)
- Impact: Prompt injection allows attackers to bypass blocklist validators using Unicode homoglyphs, leading to arbitrary Python execution in Pyodide and subsequent OS command execution.
- Action: Upgrade Flowise to version 3.1.3 or later immediately. Audit all chatflows utilizing CSV or Airtable agents for suspicious logic.
- Source: NVD - 70477 | NVD - 70470
-
CVE-2026-48168 (PraisonAI Command Injection)
- Severity: Critical (CVSS 10.0)
- Component: PraisonAI (GitHub Actions Workflow)
- Impact: Command injection via unquoted branch names in GitHub Actions allows arbitrary shell code execution by outside contributors.
- Action: Update PraisonAI to version 4.6.40+. Review GitHub Actions logs for unauthorized workflow triggers from forked repositories.
- Source: NVD
-
CVE-2026-61808 (LightRAG Unauthenticated Access)
- Severity: Critical (CVSS 9.8)
- Component: LightRAG API Server
- Impact: Default configuration binds to all interfaces with no authentication, allowing full read/write access to knowledge graphs and LLM resources.
- Action: Upgrade to 1.5.5rc1. Immediately firewall port 8000 (or custom config) to trusted networks only if upgrading is not instantly possible.
- Source: NVD
-
CVE-2026-67531 (FrontMCP Sandbox Escape)
- Severity: Critical (CVSS 9.3)
- Component: FrontMCP (Model Context Protocol)
- Impact: ECMAScript Proxy invariant failure allows scripts to escape the sandbox via Zod schema instances, achieving RCE in the server process.
- Action: Upgrade FrontMCP to version 1.5.7+. Audit custom MCP tools for untrusted code execution paths.
- Source: NVD
-
CVE-2026-43631 & CVE-2026-43629 (llama.cpp Use-After-Free & Overflow)
- Severity: Critical (CVSS 9.2)
- Component: llama.cpp (llama-server)
- Impact: Race conditions and heap overflows in tokenization and KV cache restore paths allow unauthenticated RCE or DoS.
- Action: Upgrade llama.cpp builds immediately. Disable
--sleep-idle-secondsuntil patched if upgrade is delayed. - Source: NVD - 43631 | NVD - 43629
-
CVE-2026-14526 (WordPress AI Copilot Auth Bypass)
- Severity: Critical (CVSS 9.8)
- Component: AI Copilot – Content Generator Plugin
- Impact: Unauthenticated attackers can create administrator accounts and achieve full site takeover via malicious workflow nodes.
- Action: Update the plugin immediately. Audit user accounts for unauthorized admins created in the last 48 hours.
- Source: NVD
The Flowise Catastrophe: A Platform Compromised
This week, the security community witnessed what can only be described as a total systemic failure of the Flowise platform. Prior to version 3.1.3, Flowise contained a staggering array of vulnerabilities that effectively nullified any security boundary between a user and the host operating system. The sheer volume of critical issues suggests a fundamental lack of secure coding practices in the handling of user-defined logic and external data.
The most severe vector involves the CSV Agent and Airtable Agent nodes. Vulnerabilities such as CVE-2026-70477 and CVE-2026-69256 demonstrate how prompt injection can coerce an LLM into generating malicious Python code. Crucially, the built-in validator (validatePythonCodeForDataFrame) was trivially bypassed using Unicode homoglyphs (CVE-2026-70470), allowing arbitrary code execution within the Pyodide environment. Because Pyodide was configured with access to the Node.js js bridge, attackers could break out of the Python sandbox entirely, importing child_process and executing OS commands as the root user running the container.
The attack surface extended far beyond code execution nodes. The SQLite Record Manager node (CVE-2026-69259) allowed authenticated attackers to overwrite the database path, writing arbitrary files to sensitive locations like /etc/chromium/. Similarly, the TypeORM DataSource configuration (CVE-2026-69251) permitted arbitrary connection options, facilitating database takeover. Perhaps most alarming was the exposure of credentials; the OAuth2 token refresh endpoint (CVE-2026-70478) was unauthenticated, allowing attackers to steal access tokens for connected services simply by knowing a credential ID. Furthermore, the /api/v1/upsert-history endpoint (CVE-2026-70473) leaked server-wide vector store configurations, including Qdrant URLs and collection names, to any authenticated user.
Supply chain risks within Flowise were also evident. The mitigation for a previous MCP vulnerability (CVE-2025-8943) was completely bypassed (CVE-2026-69263) by using npm_config_yes=true instead of the blocked --yes flag, reinstating the risk of arbitrary package installation during MCP server startup. Additionally, SSRF protections were rendered useless (CVE-2026-69257) due to a failure to normalize IPv4-mapped IPv6 addresses, allowing attackers to access cloud metadata services and localhost endpoints.
Active Exploitation: The Langflow Emergency
While Flowise represents a potential disaster, IBM Langflow represents an active one. The inclusion of CVE-2026-9198 in the CISA Known Exploited Vulnerabilities (KEV) catalog changes the posture required for this software from "patch when convenient" to "incident response now." This vulnerability allows unauthenticated attackers to inject and execute arbitrary code on default Langflow deployments.
The scope of the Langflow issues this week is breathtakingly broad, indicating a fragile security architecture. Multiple vectors exist for authenticated attackers to escalate privileges or execute code, including improper validation of Python code during AST scanning (CVE-2026-17632), cryptographic weaknesses in component validation (CVE-2026-9201), and command injection via MCP server configurations (CVE-2026-17623). Data leakage is also rampant; the MemoryComponent suffers from an authorization bypass (CVE-2026-9130) allowing cross-user chat history access, while path traversal vulnerabilities (CVE-2026-8183, CVE-2026-7646) allow reading of JWT secrets and environment variables. The presence of SSRF vulnerabilities in the Ollama provider validation (CVE-2026-9081) further exposes internal networks. Organizations must assume that any Langflow instance exposed to the internet prior to patching is compromised.
Model Serving & Infrastructure Instability
The foundational layer of local AI inference, llama.cpp, faced a severe reliability crisis this week. Multiple critical memory corruption vulnerabilities were disclosed affecting builds between b1283 and b9060. The most dangerous of these, CVE-2026-43631 and CVE-2026-43632, involve use-after-free conditions in the llama-server vocab handling, specifically triggered when the --sleep-idle-seconds feature is active. These race conditions can be weaponized for remote code execution. Additionally, heap buffer overflows in the KV cache state restore path (CVE-2026-43629) and integer overflows in batch initialization (CVE-2026-43627) provide attackers with reliable primitives to crash servers or hijack execution flow. Android-specific bindings also suffered from integer overflows (CVE-2026-70638) and double-free errors (CVE-2026-43622), threatening mobile AI applications.
Beyond llama.cpp, other infrastructure components showed significant weaknesses. LightRAG shipped with authentication disabled by default on all interfaces (CVE-2026-61808), a configuration error that essentially invites data exfiltration. Milvus vector database installations were found vulnerable to unauthenticated denial of service via a protected management endpoint (CVE-2026-69111), allowing attackers to shut down proxy and query nodes remotely. Emlog Pro disabled TLS certificate validation entirely (CVE-2026-67598), exposing API keys and model weights to man-in-the-middle attacks on any network path.
Agentic Risks and Supply Chain Poisoning
As AI agents become more autonomous, the attack surface expands into the tools they wield. The Model Context Protocol (MCP) ecosystem saw several critical failures. FrontMCP's sandbox escape (CVE-2026-67531) via Zod schema manipulation is a stark reminder that JavaScript sandboxes are fragile. Meta Ads MCP (CVE-2026-48039) and IBM Langflow MCP (CVE-2026-8446) both suffered from authentication bypasses, allowing unauthorized control over ad spend and internal tooling. Amazon Strands Agents faced prompt injection risks in shell tools (CVE-2026-18733) and insecure direct object references in memory tools (CVE-2026-19111), enabling cross-tenant data access.
Supply chain integrity remains a primary concern. Hugging Face PEFT libraries (CVE-2026-71281) were found to use torch.load() without weights_only=True, allowing malicious LoRA adapters to execute code upon loading. NLTK's downloader (CVE-2026-12261) is vulnerable to model poisoning, where attackers could replace legitimate resources with compromised versions. Even development workflows are at risk, with PraisonAI's GitHub Actions vulnerable to command injection (CVE-2026-48168) and Mistral Vibe susceptible to RCE via malicious git hooks (CVE-2026-67623).
What to Do This Week
- Emergency Langflow Response: If you run IBM Langflow OSS, treat it as compromised. Isolate instances from the internet immediately. Apply patches for CVE-2026-9198 and the associated cluster of auth/code injection flaws. Rotate all API keys, database credentials, and JWT secrets stored on or accessible by the Langflow instance.
- Upgrade Flowise Immediately: Move all Flowise deployments to version 3.1.3 or later. The combination of RCE, SSRF, and auth bypasses makes previous versions untenable. Audit existing chatflows for any custom code nodes that may have been injected by attackers.
- Harden Model Serving: Update
llama.cppto the latest build. Disable--sleep-idle-secondsuntil you have confirmed the patch level. Ensurellama-serveris not exposed directly to untrusted networks without a reverse proxy handling authentication. - Audit MCP Configurations: Review all Model Context Protocol server configurations. Ensure that authentication is explicitly enabled and that environment variables do not contain sensitive credentials that could be leaked via error messages or debug endpoints.
- Validate TLS Settings: Check configurations for Emlog Pro and other AI plugins to ensure
CURLOPT_SSL_VERIFYPEERis enabled. Man-in-the-middle attacks on AI traffic are now trivial if this is neglected.
What to Watch Next Week
Next week, expect a surge in automated scanning tools targeting the specific unauthenticated endpoints identified in Flowise and Langflow. We anticipate seeing ransomware groups attempting to leverage the RCE chains in llama.cpp and Flowise to encrypt model weights and vector databases. Additionally, monitor for new disclosures regarding data poisoning in the Hugging Face ecosystem, as the torch.load vulnerability may lead to widespread contamination of shared adapters. Finally, keep an eye on the Model Context Protocol specification itself; the frequency of implementation errors suggests the standard may need stricter security mandates for sandboxing and authentication.
Covered entries (116)
-
Critical nvd · CVE-2026-48168 · CVSS 10.0CVE-2026-48168: PraisonAI is a multi-agent teams system. In versions prior to 4.6.40, the bundled Claude GitHub Actions workflow is vuln
-
Critical nvd · CVE-2026-14526 · CVSS 9.8CVE-2026-14526: The AI Copilot – Content Generator plugin for WordPress is vulnerable to authorization bypass in all versions up to, and
-
Critical nvd · CVE-2026-61808 · CVSS 9.8CVE-2026-61808: LightRAG provides simple and fast retrieval-augmented generation. Through version 1.5.4, the LightRAG API server binds t
-
High cisa_kev · CVE-2026-9198 · CVSS 9.8IBM Langflow Code Injection Vulnerability
-
Critical nvd · CVE-2026-70477 · CVSS 9.5CVE-2026-70477: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, a prompt inject
-
Critical nvd · CVE-2026-70470 · CVSS 9.5CVE-2026-70470: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, Flowise validat
-
Critical nvd · CVE-2026-69259 · CVSS 9.4CVE-2026-69259: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the SQLite Reco
-
Critical nvd · CVE-2026-69256 · CVSS 9.4CVE-2026-69256: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the CSVAgent no
-
Critical nvd · CVE-2026-69254 · CVSS 9.4CVE-2026-69254: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, executeJavaScri
-
Critical nvd · CVE-2026-67531 · CVSS 9.3CVE-2026-67531: FrontMCP is a TypeScript-first framework for the Model Context Protocol (MCP). Prior to 1.5.7, the sandboxed codecall:ex
-
Critical nvd · CVE-2026-43632 · CVSS 9.2CVE-2026-43632: llama.cpp builds b7492 through the latest b9060 contains a use-after-free vulnerability in llama-server affecting six to
-
Critical nvd · CVE-2026-43631 · CVSS 9.2CVE-2026-43631: llama.cpp builds b7492 through the latest b9060 contains a use-after-free vulnerability in the vocab pointer of llama-se
-
Critical nvd · CVE-2026-43629 · CVSS 9.2CVE-2026-43629: llama.cpp builds b4882 through b9058 contain a heap buffer overflow vulnerability in the KV cache state restore path whe
-
Critical nvd · CVE-2026-70478 · CVSS 9.2CVE-2026-70478: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the POST /api/v
-
Critical nvd · CVE-2026-69255 · CVSS 9.2CVE-2026-69255: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the CSVAgent in
-
Critical nvd · CVE-2026-48039 · CVSS 9.1CVE-2026-48039: Meta Ads MCP is a Model Context Protocol (MCP) server that lets AI assistants run Meta Ads. Prior to version 1.0.109, `A
-
Critical nvd · CVE-2026-67598 · CVSS 9.1CVE-2026-67598: Emlog Pro through 2.6.23 contains a disabled TLS certificate validation vulnerability in include/service/ai.php that all
-
Critical nvd · CVE-2026-69253 · CVSS 9.0CVE-2026-69253: Flowise is a drag-and-drop user interface for building customized large language model (LLM) flows. Prior to version 3.1
-
Critical nvd · CVE-2026-69251 · CVSS 9.0CVE-2026-69251: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, Flowise record
-
High nvd · CVE-2026-9201 · CVSS 8.8CVE-2026-9201: IBM Langflow OSS 1.0.0 through 1.10.3 could allow an authenticated attacker to execute arbitrary code due to a cryptogra
-
High nvd · CVE-2026-8478 · CVSS 8.8CVE-2026-8478: IBM Langflow OSS 1.0.0 through 1.10.3 could allow a remote attacker to inject arbitrary code on the system, due to the i
-
High nvd · CVE-2026-8182 · CVSS 8.8CVE-2026-8182: IBM Langflow OSS 1.0.0 through 1.10.3 installations allow anyone on the internet to execute arbitrary code on the server
-
High nvd · CVE-2026-17632 · CVSS 8.8CVE-2026-17632: IBM Langflow OSS 1.0.0 through 1.10.3 could allow a remote authenticated attacker to execute arbitrary code due to impro
-
High nvd · CVE-2026-17626 · CVSS 8.8CVE-2026-17626: IBM Langflow OSS 1.0.0 through 1.10.3 Langflow could allow an authenticated attacker to read, modify, or expose sensitiv
-
High nvd · CVE-2026-17623 · CVSS 8.8CVE-2026-17623: IBM Langflow OSS 1.0.0 through 1.10.3 could allow a remote authenticated attacker to execute arbitrary commands due to i
-
High nvd · CVE-2026-71281 · CVSS 8.8CVE-2026-71281: Hugging Face peft's LoRA-GA and CorDA initialization modules (src/peft/tuners/lora/corda.py lines ~102 and ~163, and src
-
High nvd · CVE-2026-69258 · CVSS 8.8CVE-2026-69258: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the unauthentic
-
High nvd · CVE-2026-71847 · CVSS 8.7CVE-2026-71847: Ruby JSON is a JSON implementation for Ruby. From 2.20.0 until 2.21.2, Ruby's JSON native C extension clears the consume
-
High nvd · CVE-2026-69111 · CVSS 8.7CVE-2026-69111: Milvus through 2.6.22 and 3.0.0 contains an unauthenticated denial of service vulnerability that allows remote attackers
-
High nvd · CVE-2026-69263 · CVSS 8.7CVE-2026-69263: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the mitigation
-
High nvd · CVE-2026-19111 · CVSS 8.6CVE-2026-19111: Insecure direct object reference in the mongodb_memory, elasticsearch_memory, and mem0_memory tools in Amazon Strands Ag
-
High nvd · CVE-2026-66298 · CVSS 8.6CVE-2026-66298: Origin Validation Error vulnerability in livebook-dev livebook allows untrusted notebook output JavaScript to trigger se
-
High nvd · CVE-2026-67623 · CVSS 8.6CVE-2026-67623: Mistral Vibe before 2.23.3 contains a remote code execution vulnerability that allows attackers to execute arbitrary com
-
High nvd · CVE-2026-70638 · CVSS 8.5CVE-2026-70638: llama.cpp builds b1886 through b7445 contain an integer overflow vulnerability in the LLaMA-Android JNI wrapper where th
-
High nvd · CVE-2026-67622 · CVSS 8.5CVE-2026-67622: Flowise through 3.1.4 contains an insecure direct object reference vulnerability in the OpenAI Assistants integration th
-
High nvd · CVE-2026-43628 · CVSS 8.5CVE-2026-43628: llama.cpp builds b3978 through b9058 contain an integer underflow and out-of-bounds read vulnerability in the DRY sample
-
High nvd · CVE-2026-43627 · CVSS 8.5CVE-2026-43627: llama.cpp builds b1283 through b9058 contain an integer overflow vulnerability in the llama_batch_init() function where
-
High nvd · CVE-2026-43622 · CVSS 8.5CVE-2026-43622: llama.cpp builds b1886 through b7445 contain a double free vulnerability in the LLaMA-Android JNI wrapper where new_1bat
-
High nvd · CVE-2026-17633 · CVSS 8.5CVE-2026-17633: IBM Langflow OSS 1.0.0 through 1.10.3 could allow a remote authenticated attacker to execute arbitrary code due to code
-
High nvd · CVE-2026-17624 · CVSS 8.5CVE-2026-17624: IBM Langflow OSS 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1
-
High nvd · CVE-2026-9077 · CVSS 8.5CVE-2026-9077: IBM Langflow OSS 1.0.0 through 1.10.3 Langflow allows remote authenticated attackers to bypass localhost-only restrictio
-
High nvd · CVE-2026-69250 · CVSS 8.5CVE-2026-69250: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the OAuth2 toke
-
High nvd · CVE-2026-66065 · CVSS 8.4CVE-2026-66065: Ouroboros is a local-first runtime for AI coding agents that records their actions and applies user-defined policies to
-
High nvd · CVE-2026-70476 · CVSS 8.3CVE-2026-70476: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, several organiz
-
High nvd · CVE-2026-70473 · CVSS 8.3CVE-2026-70473: Flowise is a drag-and-drop user interface for building customized large language model (LLM) flows. Prior to 3.1.3, Flow
-
High nvd · CVE-2026-9196 · CVSS 8.1CVE-2026-9196: IBM Langflow OSS 1.0.0 through 1.10.3 could allow an authenticated attacker to execute unintended code during Agentic As
-
High nvd · CVE-2026-8183 · CVSS 7.7CVE-2026-8183: IBM Langflow OSS 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1
-
High nvd · CVE-2026-70474 · CVSS 7.6CVE-2026-70474: Flowise is a drag-and-drop user interface for building customized large language model (LLM) flows. Prior to 3.1.3, Flow
-
High nvd · CVE-2026-69257 · CVSS 7.6CVE-2026-69257: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, Flowise's HTTP
-
High nvd · CVE-2026-57819 · CVSS 7.5CVE-2026-57819: Apache CXF allows to set a limit on the number of form parameters in a JAX-RS message via the "maxFormParameterCount" co
-
High nvd · CVE-2026-8446 · CVSS 7.5CVE-2026-8446: IBM Langflow OSS 1.0.0 through 1.10.3 contain an authentication bypass vulnerability in the Model Context Protocol (MCP)
-
High nvd · CVE-2026-17613 · CVSS 7.5CVE-2026-17613: Penpot’s ::import-binfile RPC command lacks authorization on the optional file-id parameter, allowing any authenticated
-
High nvd · CVE-2026-6639 · CVSS 7.5CVE-2026-6639: The AI Chatbot & Workflow Automation by AIWU plugin for WordPress is vulnerable to Sensitive Information Exposure in all
-
High nvd · CVE-2026-18733 · CVSS 7.5CVE-2026-18733: A prompt injection vulnerability in the shell tool in Amazon Strands Agents Tools before 0.8.0 might allow remote actors
-
High nvd · CVE-2026-9205 · CVSS 7.4CVE-2026-9205: IBM Langflow OSS contains a weak cryptographic key derivation vulnerability in the ensure_fernet_key() function.
-
High nvd · CVE-2026-8470 · CVSS 7.4CVE-2026-8470: IBM Langflow OSS 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, and 1.0.0 through 1.10.3 use Python's
-
High nvd · CVE-2026-70640 · CVSS 7.3CVE-2026-70640: llama.cpp builds b1886 through b7445 contain a race condition use-after-free vulnerability in the LLaMA-Android JNI wrap
-
High nvd · CVE-2026-67621 · CVSS 7.2CVE-2026-67621: Flowise through 3.1.4 contains a missing authorization vulnerability that allows authenticated workspace members to perf
-
High nvd · CVE-2026-17625 · CVSS 7.2CVE-2026-17625: IBM Langflow OSS 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1.10.3, 1.0.0 through 1
-
High nvd · CVE-2026-17630 · CVSS 7.2CVE-2026-17630: IBM Langflow OSS 1.0.0 through 1.10.3 could allow a remote attacker to execute arbitrary code due to improper validation
-
High nvd · CVE-2026-69252 · CVSS 7.2CVE-2026-69252: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the /api/v1/fil
-
High nvd · CVE-2026-9130 · CVSS 7.1CVE-2026-9130: IBM Langflow OSS 1.0.0 through 1.10.3 contain an authorization bypass vulnerability in the MemoryComponent that allows a
-
High nvd · CVE-2026-9081 · CVSS 7.1CVE-2026-9081: IBM Langflow OSS 1.0.0 through 1.10.3, and 1.0.0 through 1.10.3 contains a Server-Side Request Forgery (SSRF) vulnerabil
-
High nvd · CVE-2026-71211 · CVSS 7.1CVE-2026-71211: MLflow's AI Gateway accepts an auth_config.api_base value when creating a gateway secret (mlflow/server/handlers.py, _cr
-
High nvd · CVE-2026-70475 · CVSS 7.1CVE-2026-70475: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, the PUT /api/v1
-
High nvd · CVE-2026-70471 · CVSS 7.1CVE-2026-70471: Flowise is a drag-and-drop user interface for building customized large language model (LLM) flows. Prior to 3.1.3, Flow
-
High nvd · CVE-2026-70472 · CVSS 7.1CVE-2026-70472: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, Flowise openai-
-
High nvd · CVE-2026-69262 · CVSS 7.1CVE-2026-69262: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.3, `DELETE /api/v1
-
High nvd · CVE-2026-67618 · CVSS 7.1CVE-2026-67618: marimo before 0.23.15 contains a configuration injection vulnerability that allows notebook authors to exfiltrate operat
-
High nvd · CVE-2026-18655 · CVSS 7.1CVE-2026-18655: Improper restriction of intended endpoints in the RabbitMQ broker connection tools of the Amazon MQ MCP Server (awslabs.
-
Medium nvd · CVE-2026-70639 · CVSS 6.8CVE-2026-70639: llama.cpp builds b1886 through b7445 contain a null pointer dereference vulnerability in the LLaMA-Android JNI wrapper w
-
Medium nvd · CVE-2026-48121 · CVSS 6.7CVE-2026-48121: @langchain/langgraph-checkpoint-mongodb provides a LangGraph.js CheckpointSaver implementation that uses MongoDB for sto
-
Medium nvd · CVE-2026-7658 · CVSS 6.5CVE-2026-7658: IBM Langflow OSS 1.0.0 through 1.10.3 does not properly validate the username field, allowing attackers to inject path t
-
Medium nvd · CVE-2026-7657 · CVSS 6.5CVE-2026-7657: IBM Langflow OSS 1.0.0 through 1.10.3 Langflow could allow server-side request forgery (SSRF) due to incomplete and inef
-
Medium nvd · CVE-2026-10128 · CVSS 6.5CVE-2026-10128: IBM Langflow OSS 1.0.0 through 1.10.3 allows authenticated users can exploit a built-in Langflow component to read arbit
-
Medium nvd · CVE-2026-7646 · CVSS 6.5CVE-2026-7646: IBM Langflow OSS 1.0.0 through 1.10.3 allows users to read arbitrary files from the server filesystem, including other u
-
Medium github · GHSA-rwrp-9823-p2xq · CVSS 6.5Flowise: Incomplete Credential Redaction Exposes Secrets via API
-
Medium nvd · CVE-2026-43630 · CVSS 6.3CVE-2026-43630: llama.cpp builds b5702 through b7653 contain an out-of-bounds read vulnerability in the recurrent memory state restore p
-
Medium nvd · CVE-2026-69659 · CVSS 5.9CVE-2026-69659: Uncontrolled Resource Consumption vulnerability in ash-project ash allows an attacker to exhaust the memory of the node
-
Medium nvd · CVE-2026-10547 · CVSS 5.9CVE-2026-10547: IBM Langflow OSS 1.0.0 through 1.10.3 does not properly validate ownership in the deprecated POST /api/v1/build/{flow_id
-
Medium nvd · CVE-2026-18954 · CVSS 5.7CVE-2026-18954: Incorrect authorization in the aggregation pipeline tool in Amazon AWS Labs DocumentDB MCP Server before 1.0.12 might al
-
Medium nvd · CVE-2026-7869 · CVSS 5.4CVE-2026-7869: IBM Langflow OSS 1.0.0 through 1.10.3 is vulnerable to Path Traversal in the Knowledge Bases API (`POST /api/v1/knowledg
-
Medium nvd · CVE-2026-12261 · CVSS 5.3CVE-2026-12261: A vulnerability in `nltk.downloader` in nltk/nltk versions <= 3.9.4 allows for cross-package resource and model poisonin
-
Medium github · GHSA-6xhv-rxhv-pwm4 · CVSS 5.3Open WebUI: Cross-user file content disclosure via request-scoped direct model knowledge metadata
-
Medium nvd · CVE-2026-19368 · CVSS 4.8CVE-2026-19368: A vulnerability was found in PV-Bhat gemsuite-mcp 1.0.0. Affected by this issue is some unknown functionality of the fil
-
Medium nvd · CVE-2026-47487 · CVSS 4.4CVE-2026-47487: NVIDIA Triton Inference Server for Linux contains a vulnerability where a user could cause files outside the model repos
-
Medium github · GHSA-g423-grf7-98rv · CVSS 4.3Open WebUI: Users denied the image-generation permission can still generate images via chat completions
-
Medium nvd · CVE-2026-16056 · CVSS 4.3CVE-2026-16056: The Contest Gallery WordPress plugin before 30.0.7 does not perform any capability or nonce check in one of its handler
-
Low nvd · CVE-2026-19019 · CVSS 2.9CVE-2026-19019: A security flaw has been discovered in poco-ai poco-agent up to 0.5.4. Affected is the function WorkspaceManager._setup_
-
Low nvd · CVE-2026-19268 · CVSS 2.1CVE-2026-19268: A vulnerability was identified in abdullah1854 MCPGateway up to 549f494a9e363f40530149de324b8097de424230. This impacts t
-
Low nvd · CVE-2026-19005 · CVSS 2.1CVE-2026-19005: A vulnerability was detected in nanocoai NanoClaw up to 2.0.64. Affected is the function handleCreateAgent of the file s
-
Low nvd · CVE-2026-18632 · CVSS 2.1CVE-2026-18632: A security flaw has been discovered in langgenius dify up to 1.14.2. This issue affects the function jinja2.Template of
-
Low nvd · CVE-2026-19371 · CVSS 1.9CVE-2026-19371: A vulnerability was identified in Nikolaibibo claude-comfyui-mcp 1.0.0. Affected is the function copyFileSync of the fil
-
Low nvd · CVE-2026-19370 · CVSS 1.9CVE-2026-19370: A vulnerability was determined in bartekke8it56w2 new-mcp 0.1.0. This impacts the function fs.writeFileSync/fs.existsSyn
-
Low nvd · CVE-2026-19334 · CVSS 1.9CVE-2026-19334: A flaw has been found in NightTrek Ollama-mcp up to 80cf2e17cfc144963a475b619093a2d13c13dbc9. This affects an unknown pa
-
Low nvd · CVE-2026-19327 · CVSS 1.9CVE-2026-19327: A flaw has been found in abracadabra50 claude-sesh 1.0.0. This issue affects the function getEnrichedData/enrichSession
-
Low nvd · CVE-2026-19282 · CVSS 1.9CVE-2026-19282: A weakness has been identified in andreahaku llm_memory_mcp up to f11dc8bcff3ff8cf943a2945f99ff3b0bdc8a6d0. This impacts
-
Low nvd · CVE-2026-19039 · CVSS 1.9CVE-2026-19039: A vulnerability was detected in Kino-Kafkaesque ssh-mcp-server up to 8ebbbb99b26f80ff6162fe00957c6dec73fbc5a5. Impacted
-
Low nvd · CVE-2026-18581 · CVSS 1.9CVE-2026-18581: A vulnerability was determined in ggml-org llama.cpp e15efe0. Affected by this issue is some unknown functionality of th
-
Low github · GHSA-9hj4-r449-hfvc · CVSS 0.0Ruby JSON: JSON::ResumableParser#partial_value dereferences a freed input buffer and crashes on truncated duplicate-key streams
-
High github · GHSA-x677-9fxg-v5c5 · CVSS 0.0Traefik: Incomplete fix for CVE-2026-33433 + CVE-2026-39858 cross-cohort: headerField underscore-variant identity spoofing in BasicAuth / DigestAuth / ForwardAuth
-
Critical github · GHSA-5xvg-pmgg-3mxr · CVSS 0.0Flowise: CSV Agent Prompt Injection Remote Code Execution Vulnerability
-
Medium github · GHSA-8gj2-2cvc-6xx7 · CVSS 0.0Flowise: Unauthenticated Credential Abuse via Text-to-Speech Endpoint Allows Unauthorized Use of Private Chatflow TTS Credentials
-
High github · GHSA-fr6g-7cq8-fg82 · CVSS 0.0Flowise: Information Disclosure in GET /api/v1/upsert-history returns the entire server-wide upsert history
-
High github · GHSA-chm3-vqcf-52rx · CVSS 0.0Flowise: Cross-workspace credential IDOR in openai-assistants-vector-store
-
Critical github · GHSA-4j8x-x6v7-w9rq · CVSS 0.0Flowise: RCE via CSVAgent csvFile data URI base64 segment is interpolated into Python source without validation
-
Critical github · GHSA-52fh-8v99-63c2 · CVSS 0.0Flowise: Pyodide validator Unicode homoglyph bypass leads to RCE
-
High github · GHSA-xc48-889x-5qmw · CVSS 0.0Flowise: CVE-2025-8943 Patch Bypass: npm_config_yes bypasses MCP environment variable blocklist (Unauthenticated RCE)
-
Critical github · GHSA-x3hf-7cj6-3r4m · CVSS 0.0Flowise RCE via SQLite Record Manager Node
-
High github · GHSA-6vh2-wg4h-4vwj · CVSS 0.0Flowise: Unauthenticated Property Injection into Flow Execution Context via Ungated `overrideConfig` Spread in Prediction API
-
High github · GHSA-c6xh-wv4j-ppv5 · CVSS 0.0Flowise: SSRF Protection Bypass via IPv4-Mapped IPv6 Addresses
-
Critical github · GHSA-x6vm-w76m-8j7g · CVSS 0.0Flowise: Remote Code Execution Vulnerability in CSVAgent
-
Critical github · GHSA-vmv7-4m6c-3cg5 · CVSS 0.0Flowise: CSV Agent Remote Code Execution via Pyodide Code Injection — Root Shell Verified
-
Critical github · GHSA-wg86-r78f-74mp · CVSS 0.0Flowise Sandbox Escape to RCE
-
Critical github · GHSA-g32j-mmxr-gfq5 · CVSS 0.0Flowise RCE via TypeORM DataSource
-
High github · GHSA-jwv3-5hgf-82ww · CVSS 0.0python-cryptography: Duplicate self-signed intermediates can cause exponential path-building