VulnWatch Weekly: The Langflow Catastrophe & MCP Supply Chain Risks
This week is dominated by a critical cluster of RCE and auth-bypass flaws in IBM Langflow, alongside severe multi-tenant isolation failures in the emerging Model Context Protocol (MCP) ecosystem. Immediate patching is required for Langflow instances and MCP servers handling sensitive workflows.
Week in Review: The Langflow Meltdown and the MCP Isolation Crisis
Week of July 13–19, 2026
The security landscape for AI infrastructure suffered a seismic shift this week with the disclosure of a catastrophic vulnerability cluster in IBM Langflow OSS, effectively rendering default deployments of versions 1.0.0 through 1.10.0 fully compromiseable by unauthenticated attackers. Simultaneously, as the industry rapidly adopts the Model Context Protocol (MCP) to connect agents to tools, we are seeing a wave of critical design flaws related to multi-tenant isolation, path traversal, and command injection across the MCP server ecosystem. The single most urgent item for CISOs and platform teams is the immediate isolation or patching of any exposed Langflow instance, as the chain of vulnerabilities allows for trivial remote code execution (RCE) without credentials. Beyond Langflow, the week highlights a systemic issue in how AI agents handle untrusted inputs, with severe implications for supply chain integrity in tools like n8n, LiteLLM, and various vector store integrations.
Top Items of the Week
The following vulnerabilities represent the highest immediate risk to AI/ML operations. These items are ranked by exploitability, impact, and the prevalence of the affected components.
-
CVE-2026-9198 / CVE-2026-9103 / CVE-2026-8481 (IBM Langflow)
- Severity: Critical (CVSS 9.8)
- Component: IBM Langflow OSS (v1.0.0–1.10.0)
- Impact: Unauthenticated Remote Code Execution. A chain of flaws allows an attacker to mint a superuser token via the
auto_loginendpoint (enabled by default) and immediately execute arbitrary Python code via thevalidate/codeAPI. - Action: EMERGENCY. Upgrade to v1.10.1+ immediately. If patching is not possible, disable the service or restrict network access to localhost only. Ensure
AUTO_LOGINandWEBHOOK_AUTH_ENABLEare explicitly set tofalsein configuration, though upgrading is the only reliable mitigation. - NVD Detail
-
CVE-2026-54052 / GHSA-j6r7-6fhx-77wx (n8n-MCP)
- Severity: Critical (CVSS 9.9)
- Component: n8n-MCP Server
- Impact: Multi-tenant Data Leakage and Integrity Loss. In HTTP mode with multi-tenancy enabled, workflow version backups are not isolated. Attackers can read, delete, or overwrite other tenants' workflow snapshots, exposing credentials and logic.
- Action: Upgrade n8n-MCP to v2.56.1+ immediately. Audit logs for cross-tenant access attempts if running affected versions.
- NVD Detail
-
CVE-2026-30623 (LiteLLM)
- Severity: Critical (CVSS 9.8)
- Component: LiteLLM Proxy
- Impact: Remote Code Execution via MCP Configuration. The MCP server creation functionality executes arbitrary OS commands specified in the JSON configuration without validation.
- Action: Upgrade LiteLLM to v1.83.10+ (and subsequent patches for related MCP flaws). Review all registered MCP servers for malicious command arguments.
- NVD Detail
-
CVE-2026-14890 (SGLang)
- Severity: Critical (CVSS 9.1)
- Component: SGLang Expert-Parallel Backup Subsystem
- Impact: Unauthenticated RCE via Pickle Deserialization. The ZeroMQ PULL socket exposed on routable interfaces accepts malicious pickle payloads.
- Action: Firewall the SGLang backup ports immediately. Upgrade to the patched version and ensure the backup subsystem is not exposed to untrusted networks.
- NVD Detail
-
CVE-2026-63093 (Cursor IDE)
- Severity: High (CVSS 8.7)
- Component: Cursor for Windows
- Impact: Binary Planting / RCE. Cloning a repository containing a malicious
git.exein the root causes the IDE to execute it automatically. - Action: Update Cursor IDE. Implement strict controls on cloning repositories from untrusted sources until the patch is widely deployed.
- NVD Detail
-
CVE-2026-58659 (PyTorch Lightning)
- Severity: High (CVSS 8.4)
- Component: PyTorch Lightning
- Impact: RCE via Checkpoint Loading. Malicious checkpoint files can bypass
weights_only=Trueprotections to execute arbitrary code. - Action: Upgrade PyTorch Lightning. Treat all external checkpoint files as untrusted executable code; verify hashes before loading.
- NVD Detail
-
CVE-2026-15643 (AWS HealthLake MCP)
- Severity: Critical (CVSS 9.2)
- Component: AWS HealthLake MCP Server
- Impact: SSRF leading to Credential Exfiltration. Pagination handling allows redirection to arbitrary endpoints, leaking AWS temporary security credentials.
- Action: Upgrade
awslabs.healthlake-mcp-serverto v0.0.14+. Rotate any credentials that may have been exposed if the server was previously accessible. - NVD Detail
-
CVE-2026-9810 (AI Copilot WordPress Plugin)
- Severity: Critical (CVSS 9.8)
- Component: AI Copilot WordPress Plugin
- Impact: Privilege Escalation. OAuth tokens are not bound to users, allowing attackers to hijack admin sessions and execute privileged MCP tools.
- Action: Update the plugin to v1.5.4+ immediately. Invalidate all active OAuth sessions.
- NVD Detail
Theme: The Langflow Supply Chain Collapse
The most significant event of the week is the comprehensive collapse of security boundaries in IBM Langflow OSS. This is not a single bug but a systemic failure affecting authentication, input validation, and serialization. The cluster includes:
- Authentication Bypass: CVE-2026-9103 and CVE-2026-9202 reveal that default configurations allow unauthenticated users to mint superuser tokens or create active accounts.
- Direct RCE: CVE-2026-8481 exposes a code validation API that executes user-supplied Python via
exec()without sandboxing. CVE-2026-8476 highlights unsafepickle.loads()usage in the caching mechanism. - Privilege Escalation: CVE-2026-8635 allows authenticated users to manipulate the database directly to become superusers.
- File System Compromise: CVE-2026-8859 and CVE-2026-7667 demonstrate path traversal vulnerabilities allowing arbitrary file writes.
Analysis: The combination of these flaws means that any network-accessible Langflow instance running a default configuration is effectively a public shell. The "secure by default" principle was entirely absent. Organizations using Langflow for prototyping or production flows must assume full compromise if they have not yet patched to v1.10.1 or later. The presence of hard-coded credentials (CVE-2026-13446) further complicates the trust model of the software supply chain.
Theme: Model Context Protocol (MCP) Growing Pains
As MCP becomes the standard for connecting LLMs to tools, we are seeing a rash of vulnerabilities stemming from improper trust boundaries between the agent, the MCP server, and the host system. The core issue is that many MCP servers treat configuration inputs or tool parameters as trusted, leading to injection and execution flaws.
- Command Injection: Multiple servers, including LiteLLM (CVE-2026-30623), LangBot (GHSA-3pvh-63gf-j9mw), and ForgeCode (CVE-2026-57860), allow attackers to specify arbitrary system commands in MCP configurations or tool parameters. ForgeCode is particularly dangerous as it auto-executes commands from
.mcp.jsonfiles in cloned repositories, creating a potent supply chain attack vector. - Multi-Tenant Isolation Failures: The n8n-MCP flaws (CVE-2026-54052, CVE-2026-55608) and MCP Python SDK issues (CVE-2026-52870, CVE-2026-52869) show that session management and data isolation are frequently broken. Attackers can access other tenants' tasks, workflow history, and credentials.
- SSRF in Agents: AWS HealthLake MCP (CVE-2026-15643), Grafana MCP (CVE-2026-15583), and CrewAI (CVE-2026-62240) all suffer from SSRF vulnerabilities where agent-controlled URLs can be used to probe internal networks or steal cloud metadata credentials.
- Path Traversal: yutu (GHSA-2c7f-fxww-6w6c) and AWS HealthOmics MCP (CVE-2026-15415) allow arbitrary file writes via unvalidated paths in tool arguments.
Analysis: The MCP ecosystem is maturing too fast, with security controls lagging behind feature development. The assumption that "the agent is trusted" is dangerous when the agent's context can be influenced by external prompts or untrusted repositories. Developers must implement strict allow-lists for commands, sandbox file access, and enforce rigorous session isolation.
Theme: Inference Engine & Model Loading Risks
Vulnerabilities in the underlying inference engines and model loading libraries continue to pose risks, particularly regarding deserialization and resource exhaustion.
- Unsafe Deserialization: PyTorch Lightning (CVE-2026-58659), NVIDIA TensorRT-LLM (CVE-2026-24233, CVE-2026-24220), and Keras (CVE-2026-12484) all have flaws where loading model weights or checkpoints can trigger arbitrary code execution. The industry's reliance on
pickleand similar serialization formats remains a critical weakness. - DoS via Resource Exhaustion: vLLM faces multiple issues, including ReDoS via regex compilation (GHSA-rwxx-mrjm-wc2m), OOM via audio decompression bombs (PYSEC-2026-3404), and GPU crashes via invalid token reinjection (GHSA-8wr5-jm2h-8r4f). Ollama (CVE-2026-15685) and NVIDIA Triton (CVE-2026-47479) also have DoS vectors.
- Data Leakage: vLLM (PYSEC-2026-3403) has a flaw where GGUF dequantization can leak uninitialized GPU memory containing data from other tenants. vLLM also logs authorization headers and chat payloads by default (CVE-2026-15574), risking PII exposure.
Theme: Prompt Injection & Data Integrity
While RCE dominates the headlines, prompt injection and data integrity issues remain prevalent, particularly in plugins and content generation tools.
- Stored Prompt Injection: The BetterDocs WordPress plugin (CVE-2026-11371) allows unauthenticated attackers to inject malicious payloads into AI-generated summaries, which then execute in the browsers of visitors.
- Data Leakage via Telemetry: dbt-mcp (CVE-2026-44970) and AWS Bedrock AgentCore (CVE-2026-15737) were found to be logging sensitive data (SQL queries, user prompts) to telemetry or span attributes without redaction.
- Output Sanitization: FacturaScripts (GHSA-hgjx-r89m-m7v4) and Kiota (CVE-2026-59864) have path traversal issues in file handling components that could be triggered by AI-generated file names or paths.
Known Exploited Items
Fortunately, as of this writing, none of the vulnerabilities disclosed this week are flagged as is_exploited=true in the wild. However, the simplicity of the Langflow exploit chain (a simple HTTP POST to mint a token, followed by another to execute code) suggests that active exploitation is imminent if not already occurring in automated scanning campaigns. The public availability of PoC details for the Langflow and n8n-MCP flaws significantly increases the risk of rapid weaponization.
What to Do This Week
- Patch Langflow Immediately: If you run IBM Langflow OSS, treat this as a P0 incident. Upgrade to v1.10.1+ or isolate the instance from all networks. Verify that
AUTO_LOGINandWEBHOOK_AUTH_ENABLEare disabled, but do not rely on config changes alone. - Audit MCP Servers: Inventory all MCP servers in your environment (n8n, LiteLLM, custom implementations). Apply patches for the specific CVEs listed above. Specifically, check for multi-tenant isolation configurations and ensure command execution is restricted to a strict allow-list.
- Secure Model Loading: Review pipelines that load external models (PyTorch, Keras, TensorRT). Ensure
weights_only=Trueis enforced where possible, and validate the integrity of checkpoint files via checksums before loading. Consider using safe serialization formats like Safetensors. - Sanitize Agent Inputs: For teams building agentic workflows, implement strict input validation for any tool parameters that involve file paths, URLs, or system commands. Assume the LLM's output can be maliciously influenced.
- Review Logging Configurations: Check vLLM, Bedrock AgentCore, and dbt-mcp configurations to ensure sensitive data (prompts, tokens, SQL) is not being logged to plaintext files or unsecured telemetry endpoints.
What to Watch Next Week
Next week, we expect to see the emergence of exploit scripts targeting the Langflow and n8n-MCP vulnerabilities in public repositories. We will also be monitoring for secondary disclosures related to the Cursor IDE binary planting issue, as attackers may begin distributing malicious repositories on GitHub to target developers. Additionally, keep an eye on the MCP specification itself; as these server-side flaws surface, there may be calls for protocol-level changes to enforce better authentication and isolation standards across the ecosystem.
Covered entries (120)
-
Critical nvd · CVE-2026-8859 · CVSS 9.9CVE-2026-8859: IBM Langflow OSS 1.0.0 through 1.10.0 Langflow could allow an attacker to write arbitrary files to unintended locations
-
Critical nvd · CVE-2026-8635 · CVSS 9.9CVE-2026-8635: IBM Langflow OSS 1.0.0 through 1.10.0 allows authenticated users to escalate privileges to superuser by directly manipul
-
Critical nvd · CVE-2026-8476 · CVSS 9.9CVE-2026-8476: IBM Langflow OSS 1.0.0 through 1.10.0 contain a critical remote code execution vulnerability in the disk-based caching m
-
Critical nvd · CVE-2026-8481 · CVSS 9.9CVE-2026-8481: IBM Langflow OSS 1.0.0 through 1.10.0 contain a critical remote code execution vulnerability in the code validation API
-
Critical nvd · CVE-2026-9135 · CVSS 9.9CVE-2026-9135: IBM Langflow OSS 1.0.0 through 1.10.0 Langflow versions up to 1.9.2 (commit 94981c443d4918517b9e8163d70fc598dc33a32d) co
-
Critical nvd · CVE-2026-54052 · CVSS 9.9CVE-2026-54052: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. Prior
-
Critical github · GHSA-hgjx-r89m-m7v4 · CVSS 9.9FacturaScripts: Path traversal in UploadedFile::move() via getClientOriginalName() — arbitrary file write outside MyFiles/ leading to RCE
-
Critical github · GHSA-j6r7-6fhx-77wx · CVSS 9.9n8n-MCP: Cross-tenant access to workflow version backups in multi-tenant HTTP deployments
-
High cisa_kev · CVE-2026-9198 · CVSS 9.8IBM Langflow Code Injection Vulnerability
-
Critical nvd · CVE-2026-13446 · CVSS 9.8CVE-2026-13446: IBM Langflow OSS 1.0.0 through 1.10.1 contains hard-coded credentials, such as a password or cryptographic key, which it
-
Critical nvd · CVE-2026-8505 · CVSS 9.8CVE-2026-8505: IBM Langflow OSS 1.0.0 through 1.10.0 has a vulnerability in Langflow's webhook authentication logic allows unauthentica
-
Critical nvd · CVE-2026-9103 · CVSS 9.8CVE-2026-9103: IBM Langflow OSS 1.0.0 through 1.10.0 could allow a remote attacker to gain unauthorized access due to improper authenti
-
Critical nvd · CVE-2026-9202 · CVSS 9.8CVE-2026-9202: IBM Langflow OSS 1.0.0 through 1.10.0 allows unauthenticated attackers to create unlimited user accounts on any Langflow
-
Critical nvd · CVE-2026-9810 · CVSS 9.8CVE-2026-9810: The AI Copilot WordPress plugin before 1.5.4 does not bind OAuth access tokens to a WordPress user, and accepts any val
-
Critical nvd · CVE-2026-30623 · CVSS 9.8CVE-2026-30623: LiteLLM 1.18.10 contains a remote code execution vulnerability in its MCP server creation functionality. The application
-
Critical nvd · CVE-2026-48561 · CVSS 9.6CVE-2026-48561: Improper neutralization of special elements used in a command ('command injection') in Microsoft Copilot allows an unaut
-
Critical nvd · CVE-2026-59864 · CVSS 9.3CVE-2026-59864: Kiota is an OpenAPI based HTTP Client code generator. Prior to 1.32.5, `kiota plugin add` and `kiota plugin generate` (w
-
Critical nvd · CVE-2026-59515 · CVSS 9.3CVE-2026-59515: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Sergey AIWU ai-cop
-
Critical nvd · CVE-2026-15643 · CVSS 9.2CVE-2026-15643: AWS HealthLake MCP Server (awslabs.healthlake-mcp-server) is a Model Context Protocol server that enables AI assistants
-
Critical nvd · CVE-2026-14890 · CVSS 9.1CVE-2026-14890: SGLang uses an expert-parallel backup subsystem that exposes a ZeroMQ PULL socket on a routable network interface that d
-
High nvd · CVE-2026-8056 · CVSS 8.8CVE-2026-8056: IBM Langflow OSS 1.0.0 through 1.10.0 allows authenticated users to override component parameters at runtime via the API
-
High nvd · CVE-2026-7755 · CVSS 8.8CVE-2026-7755: IBM Langflow OSS 1.0.0 through 1.10.0 Langflow could allow remote code execution due to incomplete validation enforcemen
-
High nvd · CVE-2026-7667 · CVSS 8.8CVE-2026-7667: IBM Langflow OSS 1.0.0 through 1.10.0 allows an authenticated attacker to create a malicious flow pointing to an attacke
-
High nvd · CVE-2026-14499 · CVSS 8.8CVE-2026-14499: IBM Langflow OSS 1.0.0 through 1.10.1 Langflow could allow an authenticated user to execute arbitrary commands with elev
-
High nvd · CVE-2026-58195 · CVSS 8.8CVE-2026-58195: Agentic-Flow is an AI agent orchestration platform. Prior to 2.0.14, agentic-flow MCP server tools in src/mcp/standalone
-
High github · GHSA-6f5r-5672-72j7 · CVSS 8.8@andrea9293/mcp-documentation-server: Web UI API binds to all interfaces without authentication by default
-
High github · GHSA-62gx-5q78-wrvx · CVSS 8.8obsidian-local-rest-api: Authenticated path traversal via URL-encoded %2F in /vault/{path} — arbitrary host file read/write/delete
-
High github · GHSA-3pvh-63gf-j9mw · CVSS 8.8LangBot: Authenticated RCE Via MCP Configuration
-
High nvd · CVE-2026-63093 · CVSS 8.7CVE-2026-63093: Cursor for Windows version 3.2.16 contains a binary planting vulnerability that allows remote attackers to achieve arbit
-
High nvd · CVE-2026-53597 · CVSS 8.7CVE-2026-53597: Prompty is a markdown file format (.prompty) for LLM prompts. From 2.0.0-alpha.1 until 2.0.0-beta.3, the @prompty/core T
-
High nvd · CVE-2026-15583 · CVSS 8.6CVE-2026-15583: A confused-deputy flaw in Grafana MCP Server allows an unauthenticated remote attacker to exfiltrate the server's enviro
-
High nvd · CVE-2026-12512 · CVSS 8.6CVE-2026-12512: The Quotes llama WordPress plugin before 3.1.6 does not properly sanitize and escape a user-supplied parameter before us
-
High github · GHSA-pqg7-v6wh-3pfp · CVSS 8.5TsDProxy: X-Forwarded-For header injection allows IP spoofing in proxied requests to backend services
-
High nvd · CVE-2026-57860 · CVSS 8.4CVE-2026-57860: ForgeCode (tailcallhq/forgecode), an AI pair-programming CLI, automatically loads and executes the MCP servers defined i
-
High nvd · CVE-2026-58659 · CVSS 8.4CVE-2026-58659: PyTorch Lightning through 2.6.5, fixed in commit d710d68, contains a remote code execution vulnerability in the _load_st
-
High nvd · CVE-2026-24233 · CVSS 8.4CVE-2026-24233: NVIDIA TensorRT-LLM for Linux contains a vulnerability in the restricted unpickler used for model weight deserialization
-
High github · GHSA-45gf-fjxp-cjpq · CVSS 8.3meta-ads-mcp: Server-Side Request Forgery (SSRF) in `upload_ad_image` via Unrestricted `image_url` Fetch
-
High nvd · CVE-2026-10673 · CVSS 8.3CVE-2026-10673: The Zephyr ADIN2111/ADIN1110 10BASE-T1S/T1L Ethernet driver (drivers/ethernet/eth_adin2111.c) reassembles received Ether
-
High nvd · CVE-2026-62240 · CVSS 8.3CVE-2026-62240: CrewAI before 1.15.1 contains a server-side request forgery vulnerability in the validate_url function that performs one
-
High nvd · CVE-2026-58500 · CVSS 8.2CVE-2026-58500: MCP Appium is an MCP server that provides AI assistants with tools to automate mobile app testing on Android and iOS. In
-
High nvd · CVE-2026-13445 · CVSS 8.1CVE-2026-13445: IBM Langflow OSS 1.0.0 through 1.10.1 can allow an authenticated attacker to exploit the SaveToFile component to read an
-
High nvd · CVE-2026-13448 · CVSS 8.1CVE-2026-13448: IBM Langflow OSS 1.0.0 through 1.10.1 Lanflow OSS contains an unauthenticated remote code execution vulnerability in the
-
High github · GHSA-x9vc-9ffq-p3gj · CVSS 8.1NetLicensing-MCP: Unauthenticated Use of Server-Side NetLicensing API Key in HTTP Mode
-
High nvd · CVE-2026-58617 · CVSS 8.1CVE-2026-58617: Improper access control in Microsoft 365 Copilot for iOS allows an unauthorized attacker to elevate privileges over a ne
-
High nvd · CVE-2026-12484 · CVSS 7.8CVE-2026-12484: A vulnerability in keras-team/keras version 3.15.0 allows unsafe deserialization of attacker-controlled PyTorch pickle d
-
High nvd · CVE-2026-47472 · CVSS 7.8CVE-2026-47472: NVIDIA TensorRT-LLM contains a vulnerability in its inter-process communication layer where an attacker with local same-
-
High nvd · CVE-2026-24272 · CVSS 7.8CVE-2026-24272: NVIDIA TensorRT contains a vulnerability where an attacker might cause an overflow to a heap-based buffer. A successful
-
High nvd · CVE-2026-24268 · CVSS 7.8CVE-2026-24268: NVIDIA TensorRT contains a vulnerability where an attacker might cause a heap-based buffer overflow. A successful exploi
-
High nvd · CVE-2026-24238 · CVSS 7.8CVE-2026-24238: NVIDIA TensorRT for contains a vulnerability where an attacker might cause an improper validation of array index. A succ
-
High nvd · CVE-2026-50510 · CVSS 7.8CVE-2026-50510: Improper restriction of names for files and other resources in Github Copilot allows an unauthorized attacker to execute
-
High nvd · CVE-2026-7754 · CVSS 7.7CVE-2026-7754: IBM Langflow OSS 1.0.0 through 1.10.0 Langflow 1.9.0 could allow server-side request forgery (SSRF) due to insecure defa
-
High nvd · CVE-2026-61613 · CVSS 7.7CVE-2026-61613: Cursor is a code editor built for programming with AI. Prior to the Cloud Agent fix on 03/31/2026, browser-enabled Curso
-
High github · GHSA-2c7f-fxww-6w6c · CVSS 7.7yutu: Arbitrary File Write via MCP `caption-download` Tool
-
High nvd · CVE-2026-59950 · CVSS 7.6CVE-2026-59950: The MCP Python SDK, called mcp on PyPI, is a Python implementation of the Model Context Protocol (MCP). Prior to 1.28.1,
-
High nvd · CVE-2026-52870 · CVSS 7.6CVE-2026-52870: The MCP Python SDK, called mcp on PyPI, is a Python implementation of the Model Context Protocol (MCP). From 1.23.0 unti
-
High nvd · CVE-2026-7872 · CVSS 7.5CVE-2026-7872: IBM Langflow OSS 1.0.0 through 1.10.0 allows an authenticated attacker to read arbitrary files including the JWT signing
-
High nvd · CVE-2026-53598 · CVSS 7.5CVE-2026-53598: Prompty is a markdown file format (.prompty) for LLM prompts. Prior to 2.0.0-beta.2, Prompty loaders expanded ${file:...
-
High nvd · CVE-2026-45804 · CVSS 7.5CVE-2026-45804: Diffusers is the a library for pretrained diffusion models. Prior to 0.38.0, Diffusers' DiffusionPipeline.from_pretraine
-
High nvd · CVE-2026-47471 · CVSS 7.5CVE-2026-47471: NVIDIA TensorRT-LLM for any platform contains a vulnerability in tensor deserialization, where an attacker could cause a
-
High nvd · CVE-2026-47482 · CVSS 7.5CVE-2026-47482: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause missing release of memory
-
High nvd · CVE-2026-47480 · CVSS 7.5CVE-2026-47480: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause an uncaught exception. A s
-
High nvd · CVE-2026-47479 · CVSS 7.5CVE-2026-47479: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause uncontrolled resource cons
-
High nvd · CVE-2026-47478 · CVSS 7.5CVE-2026-47478: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause the use of an expired file
-
High nvd · CVE-2026-47477 · CVSS 7.5CVE-2026-47477: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause a stack-based buffer overf
-
High nvd · CVE-2026-47476 · CVSS 7.5CVE-2026-47476: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause uncontrolled resource cons
-
High github · GHSA-qw5r-ppcg-f8rj · CVSS 7.5MKP: Unbounded Pod Log Read via Attacker-Controlled `limitBytes`/`tailLines` Causes Memory Exhaustion
-
High nvd · CVE-2026-15685 · CVSS 7.5CVE-2026-15685: Ollama downloadBlob Improper Validation of Array Index Denial-of-Service Vulnerability. This vulnerability allows remote
-
High nvd · CVE-2026-15574 · CVSS 7.5CVE-2026-15574: A flaw was found in the vllm-orchestrator-gateway component. The system's production binary logs all incoming authorizat
-
High github · GHSA-2v2f-mvfg-ph56 · CVSS 7.4meta-ads-mcp: X-Pipeboard-Token Header Auth Bypass Reuses Operator Meta Token
-
High nvd · CVE-2026-47473 · CVSS 7.4CVE-2026-47473: NVIDIA TensorRT-LLM contains a vulnerability where an attacker could cause a write-what-where condition. A successful ex
-
High nvd · CVE-2026-24229 · CVSS 7.3CVE-2026-24229: NVIDIA TensorRT-LLM for Linux contains a vulnerability in the disaggregated orchestrator component, where an attacker co
-
High nvd · CVE-2026-62186 · CVSS 7.2CVE-2026-62186: OpenClaw versions before 2026.6.8 contain an authorization bypass vulnerability in OpenAI-compatible HTTP model override
-
High nvd · CVE-2026-52869 · CVSS 7.1CVE-2026-52869: The MCP Python SDK, called mcp on PyPI, is a Python implementation of the Model Context Protocol (MCP). Prior to 1.27.2,
-
High nvd · CVE-2026-50144 · CVSS 7.1CVE-2026-50144: ncnn is a high-performance neural network inference framework optimized for the mobile platform. In commit e54f7b1f88434
-
Medium nvd · CVE-2026-63086 · CVSS 6.9CVE-2026-63086: text-generation-inference through 3.3.7 contains a server-side request forgery (SSRF) vulnerability in the OpenAI-compat
-
Medium nvd · CVE-2026-15746 · CVSS 6.9CVE-2026-15746: Strands Agents is an open-source Python SDK for building and running AI agents. The strands-agents-tools package provide
-
Medium nvd · CVE-2026-15415 · CVSS 6.8CVE-2026-15415: AWS HealthOmics is a HIPAA-eligible service that fully manages the compute, storage, and workflow engine infrastructure
-
Medium nvd · CVE-2026-49988 · CVSS 6.8CVE-2026-49988: Repomix is a tool that packs repositories into AI-friendly files. Prior to 1.14.1, the Repomix MCP server attach_packed_
-
Medium nvd · CVE-2026-24234 · CVSS 6.8CVE-2026-24234: NVIDIA TensorRT-LLM for Linux contains a vulnerability in the multimodal media fetching functions, where a network-acces
-
Medium nvd · CVE-2026-47481 · CVSS 6.5CVE-2026-47481: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker can cause an authentication bypass t
-
Medium nvd · CVE-2026-47282 · CVSS 6.5CVE-2026-47282: Insufficiently protected credentials in GitHub Copilot and Visual Studio Code allows an unauthorized attacker to disclos
-
Medium nvd · CVE-2026-24259 · CVSS 6.4CVE-2026-24259: NVIDIA TensorRT-LLM for Linux contains a vulnerability where an attacker could cause missing authentication for a critic
-
Medium nvd · CVE-2026-24220 · CVSS 6.4CVE-2026-24220: NVIDIA TensorRT-LLM for any platform contains a vulnerability in visual gen server, where an attacker could cause an uns
-
Medium nvd · CVE-2026-44968 · CVSS 6.3CVE-2026-44968: dbt-mcp is a Model Context Protocol server for interacting with dbt. Prior to 1.17.1, _run_dbt_command() in src/dbt_mcp/
-
Medium nvd · CVE-2026-24226 · CVSS 6.3CVE-2026-24226: NVIDIA TensorRT-LLM for Linux contains a vulnerability where an attacker could cause improper control of code generation
-
Medium nvd · CVE-2026-55145 · CVSS 6.3CVE-2026-55145: Improper neutralization of special elements used in a command ('command injection') in Outlook Copilot allows an authori
-
Medium nvd · CVE-2026-45067 · CVSS 6.3CVE-2026-45067: ### Description `Symfony\Component\Mime\Address` is the value-object every Symfony Mailer address (to/cc/bcc/from/reply
-
Medium github · GHSA-f7wf-v2vw-mpcx · CVSS 6.2mcp-memory-keeper: Arbitrary local file read in context_import via unvalidated filePath
-
Medium nvd · CVE-2026-47475 · CVSS 6.2CVE-2026-47475: NVIDIA TensorRT-LLM contains a vulnerability in the OpenAI-compatible inference API where an attacker could trigger a re
-
Medium nvd · CVE-2026-47470 · CVSS 6.2CVE-2026-47470: NVIDIA TensorRT-LLM for any platform contains a vulnerability in the gRPC server chat API endpoint, where an attacker co
-
Medium nvd · CVE-2026-24271 · CVSS 6.2CVE-2026-24271: NVIDIA TensorRT-LLM contains a vulnerability in the OpenAI-compatible inference API, where an attacker could cause alloc
-
Medium nvd · CVE-2026-46341 · CVSS 6.1CVE-2026-46341: The Apify MCP server enables AI agents to extract data from websites using ready-made scrapers, crawlers, and automation
-
Medium nvd · CVE-2026-11371 · CVSS 6.1CVE-2026-11371: The BetterDocs WordPress plugin before 4.5.5 does not sanitise an AI-generated documentation summary before storing and
-
Medium nvd · CVE-2026-15737 · CVSS 5.7CVE-2026-15737: AWS Bedrock AgentCore Python SDK is an open-source Python library that provides client tools for building AI agents on t
-
Medium nvd · CVE-2026-15995 · CVSS 5.4CVE-2026-15995: IBM Cognos Analytics 12.1.3 GA Version with build number through 12.1.3-2606251736 could allow an attacker to obtain inc
-
Medium nvd · CVE-2026-44433 · CVSS 5.3CVE-2026-44433: Quicly is an IETF QUIC protocol implementation intended primarily for use within the H2O HTTP server. Prior to commit 8b
-
Medium nvd · CVE-2026-47751 · CVSS 5.3CVE-2026-47751: Claude Code Action is a general-purpose GitHub action that runs Claude Code on GitHub pull requests and issues. Prior to
-
Medium nvd · CVE-2026-24227 · CVSS 5.3CVE-2026-24227: NVIDIA TensorRT for contains a vulnerability where a user might cause a deserialization of untrusted data. A successful
-
Low github · GHSA-pr64-jmmf-jp54 · CVSS 4.7ToolHive: SSRF in remote MCP server authentication discovery (host-side, bypasses container isolation)
-
Medium nvd · CVE-2026-14501 · CVSS 4.3CVE-2026-14501: IBM Db2 Genius Hub 1.1, 1.1.1, 1.1.2 and IBM Agentics 1.0 could allow an attacker to execute arbitrary code or obtain se
-
Medium nvd · CVE-2026-15610 · CVSS 4.3CVE-2026-15610: The WPBot – AI ChatBot for Live Support, Lead Generation, AI Services plugin for WordPress is vulnerable to authorizatio
-
Medium nvd · CVE-2026-55608 · CVSS 4.2CVE-2026-55608: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. Prior
-
Medium osv · GHSA-rwxx-mrjm-wc2m · CVSS 4.0vLLM: ReDoS via structured_outputs.regex compiled without timeout in xgrammar and outlines backends
-
Medium osv · PYSEC-2026-3405 · CVSS 4.0vLLM: temperature=NaN and temperature=Infinity bypass validation and propagate to GPU kernels
-
Medium osv · PYSEC-2026-3403 · CVSS 4.0vLLM: GGUF dequantize kernel int truncation exposes uninitialized GPU memory in multi-tenant serving
-
Medium osv · PYSEC-2026-3407 · CVSS 4.0vllm has Improper Resource Shutdown or Release
-
Medium osv · PYSEC-2026-2600 · CVSS 4.0LiteLLM allows a user to modify their own user_role via the /user/update endpoint
-
Medium osv · PYSEC-2026-2598 · CVSS 4.0LiteLLM allows an authenticated internal_user to create API keys with access to routes that their role does not permit
-
Medium osv · PYSEC-2026-2601 · CVSS 4.0LiteLLM has a sandbox escape in custom-code guardrail
-
Medium osv · PYSEC-2026-2602 · CVSS 4.0LiteLLM: Server-Side Template Injection in /prompts/test endpoint
-
Medium osv · PYSEC-2026-2599 · CVSS 4.0LiteLLM: Authenticated command execution via MCP stdio test endpoints
-
Medium osv · PYSEC-2026-2597 · CVSS 4.0LiteLLM: Privilege escalation via unrestricted proxy configuration endpoint
-
Medium osv · PYSEC-2026-2398 · CVSS 4.0BentoML Vulnerable to Arbitrary File Write via Symlink Path Traversal in Tar Extraction
-
Low osv · GHSA-v82g-2437-67m2 · CVSS 3.1vLLM: Speech-to-text upload size limit is enforced after full UploadFile read
-
Low osv · GHSA-8wr5-jm2h-8r4f · CVSS 3.1vLLM has Remote DoS via Invalid Recovered Token Reinjection
-
Low osv · GHSA-6c4r-fmh3-7rh8 · CVSS 3.1vLLM: Processing differential in multi-channel audio downmixing enables hidden-input/moderation bypass for audio models
-
Low nvd · CVE-2026-44970 · CVSS 3.1CVE-2026-44970: dbt-mcp is a Model Context Protocol server for interacting with dbt. Prior to 1.17.1, DefaultUsageTracker.emit_tool_call
-
Low nvd · CVE-2026-12482 · CVSS 3.1CVE-2026-12482: A vulnerability in keras-team/keras version 3.12.0 allows an attacker to craft a malicious tar archive that bypasses the
-
Low osv · PYSEC-2026-3404 · CVSS 3.1vLLM: OOM Denial of Service via Audio Decompression Bomb
-
Low osv · PYSEC-2026-3406 · CVSS 3.1vLLM: image EXIF Rotation & PNG tRNS Transparency Not Normalized, Causing Mismatch Between Model Input and Expectations