VulnWatch Weekly: MCP Servers Under Siege, LLM RCE via Pickle
This week's digest highlights a critical wave of vulnerabilities in Model Context Protocol (MCP) servers, featuring unauthenticated RCEs, SSRF chains, and token theft. We also cover severe pickle deserialization flaws in LLM serving stacks like LMDeploy and vLLM.
Week in Review: The MCP Supply Chain Crisis and the Return of Pickle
The week of September 14–20, 2026, will be remembered as a turning point for the security of the agentic web. The dominant theme is unequivocally the fragility of the Model Context Protocol (MCP) ecosystem. We observed a cascade of critical vulnerabilities across dozens of MCP servers, gateways, and SDKs, ranging from unauthenticated remote code execution (RCE) to severe server-side request forgery (SSRF) and credential exfiltration. The single most urgent item for all CISOs and platform teams is the immediate patching of MCP Context Forge (CVE-2026-53710) and LMDeploy (CVE-2025-66455 / CVE-2025-59953), as these flaws allow trivial, unauthenticated takeover of AI gateways and inference clusters. The narrative of the week is clear: the rush to connect agents to tools has outpaced the implementation of basic transport security, leaving the "agentic supply chain" wide open to exploitation.
Top Items of the Week
The following entries represent the highest-impact vulnerabilities discovered this week. Immediate action is required for all items marked Critical.
- CVE-2026-53710 (Critical, CVSS 10.0): MCP Context Forge contains a flaw in
python_sandbox_serverwhere rawgetattrexposure allows attackers to traverse the Python class hierarchy, reachsubprocess.Popen, and execute OS commands. This affects the core gateway logic for MCP, A2A, REST, and gRPC. View Details - CVE-2026-59971 (Critical, CVSS 10.0): MySQL MCP Server defaults to binding on
0.0.0.0without authentication when using SSE transport. Attackers can execute arbitrary SQL queries or use DNS rebinding to pivot from a victim's browser to the local database. View Details - CVE-2025-66455 / GHSA-2vh9-42vm-xmv2 (Critical, CVSS 9.8): LMDeploy suffers from remote code execution via insecure Pickle deserialization in its PyTorch DistServe control plane. An attacker can force the server to connect to a malicious ZeroMQ endpoint and deserialize arbitrary code. View Details | GitHub Advisory
- CVE-2026-61560 / GHSA-cv3r-c5h8-f4g5 (Critical, CVSS 9.8): @zereight/mcp-gitlab exposes all tools without authentication in SSE mode. The
upload_markdowntool allows arbitrary file reads (e.g.,/proc/self/environ), leading to GitLab PAT theft and full account takeover. View Details | GitHub Advisory - CVE-2026-85885 (Critical, CVSS 9.9): M365 Copilot contains a command injection vulnerability allowing authorized attackers to elevate privileges over the network. View Details
- CVE-2026-12944 (Critical, CVSS 9.6): IBM Langflow OSS allows attackers to execute arbitrary Python code with root privileges by submitting components with socket/urllib imports, bypassing the validator and enabling AWS credential theft via SSRF. View Details
- CVE-2026-54618 (Critical, CVSS 9.4): Obsidian Web MCP issues authorization codes without login or consent checks, allowing unauthenticated remote callers to read, write, and delete entire Obsidian vaults. View Details
- CVE-2026-33625 (High, CVSS 8.8): LMDeploy (again) contains a code injection flaw where
quant_dtypein model configs is passed toeval(), allowing RCE via malicious HuggingFace models. View Details - CVE-2026-58197 / GHSA-qg2g-g9w3-m5h8 (High, CVSS 8.8): ToolHive fails to isolate containerized MCP servers, allowing them to reach
host.docker.internaland perform lateral movement to the host or other services. View Details | GitHub Advisory - CVE-2026-93993 (High, CVSS 8.6): Mistral Vibe executes git hooks before trust validation during worktree creation, leading to RCE via crafted repositories. View Details
The MCP Meltdown: Agentic Supply Chain Compromise
The most alarming trend this week is the systemic failure of security controls in Model Context Protocol (MCP) implementations. The promise of MCP is to standardize how AI agents interact with external tools, but this week's disclosures reveal that many implementations treat "connectivity" as synonymous with "trust."
The @zereight/mcp-gitlab server (CVE-2026-61560, CVE-2026-61559, CVE-2026-61568) exemplifies this crisis. Multiple flaws allow unauthenticated attackers to read arbitrary files, perform DNS rebinding attacks against local listeners, and hijack API URLs via headers. The combination of an unauthenticated SSE transport and a file-read tool (upload_markdown) creates a trivial path to stealing GITLAB_PERSONAL_ACCESS_TOKEN from environment variables. Similarly, MySQL MCP Server (CVE-2026-59971) binds to all interfaces by default without auth, effectively exposing database engines to the public internet whenever an agent is spun up.
We also saw critical issues in Obsidian Web MCP (CVE-2026-54618), where the OAuth flow was completely broken, issuing tokens without user consent. This allows an attacker to fully compromise a user's knowledge base remotely. MCPVault (CVE-2026-57441, CVE-2026-57442) failed to properly restrict path traversal on case-insensitive filesystems, allowing agents to read .git directories and other sensitive metadata despite allow-lists.
The root cause across these entries is a lack of defense-in-depth at the transport layer. Many servers assume that because they are "local" or "internal," they do not need authentication or strict input validation. In an agentic world where browsers and LLMs can initiate requests, this assumption is fatal.
Model Serving & Inference: The Return of Pickle and Eval
While MCP struggles with transport security, the underlying inference stacks are grappling with legacy Python pitfalls. LMDeploy had a particularly rough week, with two distinct critical RCE vectors. The first (CVE-2025-66455) involves recv_pyobj() over ZeroMQ, which uses Python's pickle module. As security engineers know, unpickling data from an untrusted source is equivalent to executing arbitrary code. An attacker can simply point the LMDeploy control plane to a malicious ZeroMQ socket to gain execution.
The second LMDeploy flaw (CVE-2026-33625) is equally egregious: the use of eval() on quant_dtype strings loaded from HuggingFace model configurations. This turns the model registry into an execution vector; any user loading a malicious model from a public registry inadvertently executes the attacker's code. IBM Langflow OSS (CVE-2026-12944) suffered a similar fate, where its component validator failed to catch socket or urllib imports, allowing attackers to deploy components that exfiltrate AWS credentials via SSRF or execute code with root privileges.
vLLM also faced significant stability and security challenges. Multiple vulnerabilities (CVE-2026-93592, CVE-2026-93436, CVE-2026-93838) allow unauthenticated attackers to crash inference engines via negative token IDs, unbounded memory allocation in disaggregated modes, or metadata exhaustion. While some of these present primarily as Denial of Service (DoS), the ability to corrupt GPU context or trigger out-of-memory conditions in shared multi-tenant environments poses a severe availability risk.
Data Leakage and Path Traversal in Agent Tools
Beyond RCE, a significant number of vulnerabilities focused on data exfiltration through path traversal and improper file handling. PraisonAI (CVE-2026-57145, CVE-2026-57130) allowed LLM-controlled agents to read arbitrary files and inject IMAP commands, bypassing workspace boundaries. Flowise (CVE-2026-91932, CVE-2026-91935) failed to validate cwd parameters and base URLs, allowing authenticated users to escape sandboxes and redirect LLM traffic to internal metadata services to steal API keys.
SQLBot (CVE-2026-53557, CVE-2026-53554, CVE-2026-53556) demonstrated the dangers of dynamic SQL generation in AI systems. Flaws in its Excel parsing and datasource configuration allowed for second-order SQL injection, enabling attackers to execute OS commands via COPY TO PROGRAM or read arbitrary files via pg_read_file. These incidents underscore that AI applications handling user-uploaded content or dynamic configurations must treat all inputs as hostile, regardless of whether they originate from a human or an agent.
Known Exploited and Active Threats
Fortunately, as of this writing, no entries from this week's digest have been flagged as is_exploited=true. However, the simplicity of the exploits—particularly the unauthenticated endpoints in MySQL MCP Server and the pickle deserialization in LMDeploy—suggests that weaponization is imminent. The "low hanging fruit" nature of these bugs means that automated scanners and opportunistic attackers will likely begin probing for these specific versions within days.
What to Do This Week
- Patch MCP Servers Immediately: If you are running any MCP servers (GitLab, MySQL, Obsidian, Context Forge), apply patches immediately. If patches are unavailable, disable external network access to these services and enforce strict authentication at the proxy level.
- Audit LMDeploy and Langflow Deployments: Check your inference stacks for usage of
pickledeserialization oreval()on model configurations. Upgrade LMDeploy to v0.16.0+ and Langflow to the latest patched version. Consider blocking outbound traffic from model loading processes to prevent SSRF. - Network Segmentation: Isolate agent runtimes and MCP servers in dedicated network segments. Prevent them from accessing
host.docker.internal, cloud metadata endpoints (169.254.169.254), and internal databases unless explicitly required and proxied. - Validate Model Sources: Restrict model loading to trusted, private registries. Do not allow agents or users to load models directly from public HuggingFace repositories without a rigorous scanning pipeline that checks for malicious config parameters.
- Review OAuth Flows: For any AI tool integrating with SaaS platforms (GitLab, Obsidian, Microsoft 365), manually verify that OAuth flows require explicit user consent and that tokens are not issued to unauthenticated redirect URIs.
What to Watch Next Week
Next week, we anticipate a surge in advisories related to RAG (Retrieval-Augmented Generation) poisoning. As organizations rush to secure their agents, attackers will likely shift focus to the data layer, attempting to inject malicious contexts into vector databases (like the Chroma issues seen this week) to manipulate agent behavior. Additionally, expect deeper analysis of cross-tenant isolation in multi-tenant LLM serving platforms, as the vLLM and SGLang vulnerabilities hint at significant risks in shared GPU environments. Keep a close eye on the RMCP (Rust MCP) ecosystem as well; while Rust offers memory safety, the logic errors in session management and header forwarding seen this week prove that type safety does not equal security.
Covered entries (120)
-
Critical nvd · CVE-2026-53710 · CVSS 10.0CVE-2026-53710: MCP Context Forge is an AI gateway, registry, and proxy for MCP, A2A, REST, and gRPC APIs. Prior to 1.0.2, the python_sa
-
Critical nvd · CVE-2026-59971 · CVSS 10.0CVE-2026-59971: MySQL MCP Server is a Model Context Protocol server that enables secure interaction with MySQL databases. Prior to 0.4.2
-
Critical nvd · CVE-2026-82434 · CVSS 10.0CVE-2026-82434: Description When ZooKeeper authentication is configured, Storm deliberately retains `storm.zookeeper.topology.auth.payl
-
Critical nvd · CVE-2026-85885 · CVSS 9.9CVE-2026-85885: Improper neutralization of special elements used in a command ('command injection') in M365 Copilot allows an authorized
-
Critical nvd · CVE-2025-66455 · CVSS 9.8CVE-2025-66455: LMDeploy is a toolkit for compressing, deploying, and serving large language models. Starting in version 0.9.2 and prior
-
Critical github · GHSA-2vh9-42vm-xmv2 · CVSS 9.8LMDeploy has Remote Code Execution by Pickle Deserialization via handle_zmq_recv in lmdeploy/lmdeploy/pytorch/disagg/conn/engine_conn.py
-
Critical nvd · CVE-2025-59953 · CVSS 9.8CVE-2025-59953: LMDeploy is a toolkit for compressing, deploying, and serving large language models. Starting in version 0.9.1 and prior
-
Critical github · GHSA-cv3r-c5h8-f4g5 · CVSS 9.8@zereight/mcp-gitlab: Unauthenticated arbitrary file read via `upload_markdown` enables PAT exfiltration and full account takeover
-
Critical nvd · CVE-2026-90048 · CVSS 9.8CVE-2026-90048: In the Linux kernel, the following vulnerability has been resolved: fs/ntfs3: fix slab-out-of-bounds write in ni_create
-
Critical nvd · CVE-2026-89778 · CVSS 9.8CVE-2026-89778: In the Linux kernel, the following vulnerability has been resolved: isofs: fix out-of-bounds page array access on empty
-
Critical nvd · CVE-2026-61560 · CVSS 9.8CVE-2026-61560: `@zereight/mcp-gitlab` is a Model Context Protocol server for GitLab. Prior to version 2.1.27, the SSE transport mode (`
-
Critical nvd · CVE-2026-82435 · CVSS 9.8CVE-2026-82435: Description The worker's Netty message decoder is installed ahead of the SASL authentication handlers in the pipeline a
-
Critical nvd · CVE-2026-82431 · CVSS 9.8CVE-2026-82431: Description `SimpleACLAuthorizer` evaluated the user-level command set by returning early when `nimbus.users` was empty
-
Critical nvd · CVE-2026-82439 · CVSS 9.8CVE-2026-82439: Description The DRPC server kept a map from function name to request queue and created an entry the first time a functi
-
Critical nvd · CVE-2026-61568 · CVSS 9.6CVE-2026-61568: `@zereight/mcp-gitlab` is a Model Context Protocol server for GitLab. Versions prior to 2.1.30 expose the Streamable HTT
-
Critical nvd · CVE-2026-61559 · CVSS 9.6CVE-2026-61559: `@zereight/mcp-gitlab` is a Model Context Protocol server for GitLab. Starting in version 0.0.1 and prior to version 2.1
-
Critical github · GHSA-2h44-8472-frjj · CVSS 9.6@zereight/mcp-gitlab Vulnerable to Server-Side Request Forgery
-
Critical github · GHSA-vmp7-252j-cwp7 · CVSS 9.6@zereight/mcp-gitlab: DNS rebinding reaches local Streamable HTTP MCP transport
-
Critical nvd · CVE-2026-12944 · CVSS 9.6CVE-2026-12944: IBM Langflow OSS 1.0.0 through 1.10.0 can allow attackers to execute arbitrary Python code with root privileges (UID=0)
-
Critical nvd · CVE-2026-54618 · CVSS 9.4CVE-2026-54618: Obsidian Web MCP is a secure remote MCP server for Obsidian vaults. Prior to 0.2.0, /oauth/authorize issues an authoriza
-
Critical nvd · CVE-2026-90961 · CVSS 9.3CVE-2026-90961: The LdapAuth and LinOTPAuth authentication plugins in MISP contain an authentication bypass vulnerability. Both LdapAuth
-
Critical nvd · CVE-2026-91988 · CVSS 9.2CVE-2026-91988: atomic-agents-stack before 1.1.0 accepts cleartext HTTP schemes in the HTTP MCP server-registry backend factory, allowin
-
Critical nvd · CVE-2026-57145 · CVSS 9.1CVE-2026-57145: PraisonAI is a multi-agent teams system. Prior to 4.6.62, src/praisonai/praisonai/tools/multiedit.py passes the LLM-cont
-
Critical nvd · CVE-2026-91932 · CVSS 9.0CVE-2026-91932: Flowise before 3.1.4 contains a validation bypass vulnerability in MCP server configuration allowing authenticated attac
-
High nvd · CVE-2026-33625 · CVSS 8.8CVE-2026-33625: LMDeploy is a toolkit for compressing, deploying, and serving large language models. Versions 012.1 through 0.12.2 conta
-
High github · GHSA-xwmw-prc4-v3cr · CVSS 8.8Obot: OAuth Dynamic Client Registration Enables API Token Theft via Audience Confusion
-
High nvd · CVE-2026-58197 · CVSS 8.8CVE-2026-58197: ToolHive is a utility designed to simplify the deployment and management of Model Context Protocol servers. Prior to Too
-
High github · GHSA-qg2g-g9w3-m5h8 · CVSS 8.8ToolHive: containerized MCP servers can reach host services via host.docker.internal, enabling lateral movement
-
High github · GHSA-3hmm-rh5q-gwwr · CVSS 8.8LMDeploy vulnerable to arbitrary code execution via eval() of untrusted quant_dtype in model config loading
-
High nvd · CVE-2026-54519 · CVSS 8.8CVE-2026-54519: AI Agent Automation is a modular AI agent workflow automation platform with schedulers, tools, and observability. Prior
-
High nvd · CVE-2026-92972 · CVSS 8.8CVE-2026-92972: SGLang through 0.5.19 in prefill/decode disaggregation mode contains an unauthenticated PUT /route endpoint on the prefi
-
High nvd · CVE-2026-83411 · CVSS 8.8CVE-2026-83411: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-83410 · CVSS 8.8CVE-2026-83410: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-82428 · CVSS 8.8CVE-2026-82428: Description Dependency artifacts uploaded with `storm jar --artifacts` were stored under a blob key derived only from t
-
High nvd · CVE-2026-90938 · CVSS 8.8CVE-2026-90938: LangBot's plugin runtime (pip package langbot_plugin) through 0.4.17 starts a debug WebSocket server on 0.0.0.0:5401 (/p
-
High nvd · CVE-2026-93688 · CVSS 8.7CVE-2026-93688: SGLang through 0.5.19 in prefill/decode disaggregation mode with Mooncake KV transfer backend fails to validate bootstra
-
High nvd · CVE-2026-93592 · CVSS 8.7CVE-2026-93592: vLLM versions before 0.28.0 fail to validate the lower bound of token IDs in the /v1/embeddings and /pooling endpoints,
-
High nvd · CVE-2026-93436 · CVSS 8.7CVE-2026-93436: vLLM through 0.29.0 fails to properly clean up decode-side metadata for rejected inference requests in prefill/decode di
-
Critical github · GHSA-vfmf-q6x9-cw96 · CVSS 8.7Grav: detectXss() misses an event-handler attribute after an unpaired quote in an unquoted attribute value, giving stored XSS
-
High nvd · CVE-2026-58201 · CVSS 8.7CVE-2026-58201: Lokka is a Model Context Protocol server for Microsoft 365, including Microsoft Graph and other services. Prior to 2.1.2
-
High nvd · CVE-2026-91935 · CVSS 8.7CVE-2026-91935: Flowise before 3.1.4 fails to validate baseURL parameters in chat-model nodes, allowing authenticated users to redirect
-
High nvd · CVE-2026-55887 · CVSS 8.7CVE-2026-55887: MCP Gateway allows easy and secure running and deployment of MCP servers. From 0.21.0 until 0.42.2, Docker MCP Gateway Y
-
High nvd · CVE-2026-93993 · CVSS 8.6CVE-2026-93993: Mistral Vibe before 2.25.5 contains a remote code execution vulnerability in the worktree creation process that executes
-
High nvd · CVE-2026-68791 · CVSS 8.6CVE-2026-68791: Incorrect authorization in Azure Machine Learning allows an unauthorized attacker to disclose information over a network
-
High nvd · CVE-2026-92782 · CVSS 8.6CVE-2026-92782: Chroma through 1.5.9 fails to validate tenant and database segments when resolving collections, allowing authenticated a
-
High nvd · CVE-2026-59973 · CVSS 8.5CVE-2026-59973: FrontMCP is a TypeScript-first framework for the Model Context Protocol (MCP). From mcp-from-openapi 2.3.0 until 2.5.0 a
-
High nvd · CVE-2026-57441 · CVSS 8.4CVE-2026-57441: MCPVault is a lightweight Model Context Protocol server for safe access to files in an Obsidian vault. Prior to 0.11.4,
-
High nvd · CVE-2026-54549 · CVSS 8.3CVE-2026-54549: Meta Ads MCP is a Model Context Protocol (MCP) server that lets AI assistants run Meta Ads. Prior to version 1.0.115, th
-
High nvd · CVE-2026-93838 · CVSS 8.2CVE-2026-93838: SGLang versions through 0.5.20 contain an unbounded memory allocation vulnerability in handle_staging_req() that fails t
-
High github · GHSA-33f5-2c5q-wgwj · CVSS 8.2RMCP: Missing Resource Field Validation in OAuth Protected Resource Metadata Discovery
-
High nvd · CVE-2026-63127 · CVSS 8.2CVE-2026-63127: RMCP is an official Rust SDK for the Model Context Protocol. Prior to 2.0.0, the rmcp crate's OAuth implementation in cr
-
High nvd · CVE-2026-54520 · CVSS 8.1CVE-2026-54520: AI Agent Automation is a modular AI agent workflow automation platform with schedulers, tools, and observability. Prior
-
High nvd · CVE-2026-54446 · CVSS 8.1CVE-2026-54446: NetLicensing MCP Server is a natural-language interface that enables agentic applications to manage the software-licensi
-
High github · GHSA-5648-rgj9-v224 · CVSS 8.1@zereight/mcp-gitlab has multiple safety-control bypasses: execute_graphql read-only + allow-list bypass, unauthenticated transports, session-exhaustion DoS
-
High nvd · CVE-2026-83412 · CVSS 8.1CVE-2026-83412: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-82432 · CVSS 8.1CVE-2026-82432: Description Nimbus validated `topology.blobstore.map` against the calling subject at submission time only. The rebalanc
-
High nvd · CVE-2026-82438 · CVSS 8.1CVE-2026-82438: Description Three separate mechanisms allowed a web page on an unrelated origin to read responses that Storm's HTTP com
-
High nvd · CVE-2026-57130 · CVSS 8.1CVE-2026-57130: PraisonAI is a multi-agent teams system. Prior to praisonaiagents 1.6.59, src/praisonai-agents/praisonaiagents/tools/ema
-
High nvd · CVE-2026-89880 · CVSS 7.8CVE-2026-89880: In the Linux kernel, the following vulnerability has been resolved: media: rtl2832_sdr: release URBs and stream buffers
-
High nvd · CVE-2026-83071 · CVSS 7.8CVE-2026-83071: Vulnerability in the Oracle Business Intelligence Enterprise Edition product of Oracle Analytics (component: Machine Lea
-
High nvd · CVE-2026-82427 · CVSS 7.8CVE-2026-82427: Description A topology's `topology.blobstore.map` lets the submitter choose a local name for each blob that the supervi
-
High nvd · CVE-2026-82429 · CVSS 7.8CVE-2026-82429: Description The setuid-root `worker-launcher` binary adjusts ownership and permissions of worker directories by walking
-
High nvd · CVE-2026-82430 · CVSS 7.8CVE-2026-82430: Description When launching a Docker or OCI worker, the setuid-root `worker-launcher` first changes ownership of the ent
-
High nvd · CVE-2026-85887 · CVSS 7.7CVE-2026-85887: Incorrect permission assignment for critical resource in M365 Copilot allows an authorized attacker to disclose informat
-
High nvd · CVE-2026-53557 · CVSS 7.7CVE-2026-53557: SQLBot is an intelligent Text-to-SQL system based on large language models and RAG. Prior to 1.9.0, an authenticated use
-
High nvd · CVE-2026-50158 · CVSS 7.7CVE-2026-50158: yutu is an AI-powered toolkit for managing and growing YouTube channels. Prior to 0.10.9, the caption-download MCP tool
-
High nvd · CVE-2026-62997 · CVSS 7.7CVE-2026-62997: Kedro-Datasets provides data connectors for Kedro. From version 5.0.0 until 9.5.0, kedro_datasets_experimental.pytorch.P
-
High nvd · CVE-2026-19407 · CVSS 7.7CVE-2026-19407: Bucket Squatting in Google Cloud Gemini Enterprise Agent Platform SDK for Python versions prior to 1.166.1 allows an att
-
High nvd · CVE-2026-53957 · CVSS 7.7CVE-2026-53957: Contentful MCP Server is a Model Context Protocol server for the Contentful Management API. Prior to @contentful/mcp-ser
-
High nvd · CVE-2026-73496 · CVSS 7.7CVE-2026-73496: MCP Atlassian is a Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). Prior to 0.22.0, th
-
High nvd · CVE-2026-55253 · CVSS 7.7CVE-2026-55253: LangChain MongoDB provides integrations between MongoDB, Atlas, LangChain, and LangGraph. Prior to langgraph-checkpoint-
-
High github · GHSA-jgh3-fggc-mcpm · CVSS 7.6Obot: Server-Side Request Forgery via remote MCP server URL
-
High nvd · CVE-2026-91933 · CVSS 7.6CVE-2026-91933: Flowise before 3.1.4 fails to enforce workspace-level authorization checks in openai-realtime endpoints, allowing authen
-
High nvd · CVE-2026-50125 · CVSS 7.5CVE-2026-50125: MKP is a Model Context Protocol server for Kubernetes. Prior to 0.4.1, cmd/server/main.go exposes the default HTTP endpo
-
High github · GHSA-5gpm-rgj3-9q76 · CVSS 7.5Skipper has OPA body-authz bypass: truncated_body mitigation fails open on chunked/HTTP-2 (incomplete fix GHSA-8qqm-fp2q-v734)
-
High github · GHSA-9rm7-3qhh-h2mc · CVSS 7.5Wire: Unauthenticated decoder crash via 32-bit length integer overflow in ByteArrayProtoReader32 (incomplete fix of CVE-2026-45799)
-
High github · GHSA-9pj6-vhgr-3mwh · CVSS 7.5RMCP: Unauthenticated permanent session-table leak in rmcp Streamable HTTP server transport leads to remote denial-of-service
-
High nvd · CVE-2026-63126 · CVSS 7.5CVE-2026-63126: Wire provides gRPC and protocol buffers for Android, Kotlin, Swift, and Java. Prior to 6.4.5 and 7.0.0-alpha04, Wire pro
-
High nvd · CVE-2026-63128 · CVSS 7.5CVE-2026-63128: RMCP is an official Rust SDK for the Model Context Protocol. Prior to 2.0.0, the rmcp crate's stateful Streamable HTTP s
-
High nvd · CVE-2026-83415 · CVSS 7.5CVE-2026-83415: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-58483 · CVSS 7.5CVE-2026-58483: mcp-searxng is a Model Context Protocol server that gives AI assistants web search and URL-reading capabilities through
-
High nvd · CVE-2026-78501 · CVSS 7.4CVE-2026-78501: Improper neutralization of special elements used in a command ('command injection') in Microsoft 365 Copilot's Business
-
High nvd · CVE-2026-54547 · CVSS 7.4CVE-2026-54547: Meta Ads MCP is a Model Context Protocol (MCP) server that lets AI assistants run Meta Ads. Prior to version 1.0.115, Au
-
High nvd · CVE-2026-53554 · CVSS 7.3CVE-2026-53554: SQLBot is an intelligent Text-to-SQL system based on large language models and RAG. Prior to 1.9.0, the POST /api/v1/dat
-
High nvd · CVE-2026-58485 · CVSS 7.1CVE-2026-58485: mcp-searxng is a Model Context Protocol server that gives AI assistants web search and URL-reading capabilities through
-
Medium nvd · CVE-2026-94111 · CVSS 6.9CVE-2026-94111: Tencent BrowserSkill through 0.3.0 contains an authentication bypass vulnerability in the local daemon WebSocket origin
-
Medium nvd · CVE-2026-92220 · CVSS 6.9CVE-2026-92220: A vulnerability was found in vllm-project vLLM 0.26.0/0.27.0. Affected is the function MoRIIOConnectorScheduler.request_
-
Medium nvd · CVE-2026-57442 · CVSS 6.9CVE-2026-57442: MCPVault is a lightweight Model Context Protocol server for safe access to files in an Obsidian vault. Prior to 0.11.5,
-
Medium nvd · CVE-2026-90819 · CVSS 6.9CVE-2026-90819: A weakness has been identified in a2aproject a2a-java 1.2.0. The affected element is the function BasePushNotificationSe
-
Medium github · GHSA-9g45-5xwm-f3wc · CVSS 6.8RMCP: Custom HTTP headers leak to cross-origin redirect targets
-
Medium nvd · CVE-2026-64684 · CVSS 6.8CVE-2026-64684: RMCP is an official Rust SDK for the Model Context Protocol. Prior to 2.1.0, the rmcp crate's StreamableHttpClientTransp
-
Medium nvd · CVE-2026-55837 · CVSS 6.8CVE-2026-55837: dbt-mcp is a Model Context Protocol server for interacting with dbt. Prior to 1.20.0, the local OAuth helper in src/dbt_
-
Medium nvd · CVE-2026-53708 · CVSS 6.6CVE-2026-53708: ContextForge is an AI gateway, registry, and proxy that provides centralized discovery, guardrails, and management for M
-
High github · GHSA-47ch-6w46-6xm7 · CVSS 6.5Grav: media_directory() Twig function allows filesystem path traversal and file content disclosure from sandboxed page content
-
High github · GHSA-p597-crqc-m349 · CVSS 6.5Grav: The system, site, and theme Twig variables bypass the content sandbox entirely and are never covered by config_denied_paths
-
Medium nvd · CVE-2026-69147 · CVSS 6.5CVE-2026-69147: vLLM is an inference and serving engine for large language models. Prior to 0.28.0, request bodies for Chat Completions
-
Medium nvd · CVE-2026-57173 · CVSS 6.5CVE-2026-57173: vLLM is an inference and serving engine for large language models. Prior to 0.24.0, the input_audio handling path for /v
-
Medium nvd · CVE-2026-54688 · CVSS 6.5CVE-2026-54688: mcp-searxng is a Model Context Protocol server that gives AI assistants web search and URL-reading capabilities through
-
Medium nvd · CVE-2026-12767 · CVSS 6.5CVE-2026-12767: IBM Langflow OSS 1.0.0 through 1.11.5 is vulnerable to server-side request forgery (SSRF). This may allow an unauthentic
-
Medium nvd · CVE-2026-12765 · CVSS 6.5CVE-2026-12765: IBM Langflow OSS 1.0.0 through 1.10.2 is vulnerable to server-side request forgery (SSRF). This may allow an unauthentic
-
Medium nvd · CVE-2026-73497 · CVSS 6.5CVE-2026-73497: MCP Atlassian is a Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). From 0.17.0 until 0
-
Medium nvd · CVE-2026-82433 · CVSS 6.5CVE-2026-82433: Description `getNimbusConf` returned the complete daemon configuration without redaction after only a user-level author
-
Medium nvd · CVE-2026-82426 · CVSS 6.5CVE-2026-82426: Description Nimbus accepted the `uploadedJarLocation` argument of `submitTopology` / `submitTopologyWithOpts` as a serv
-
Medium nvd · CVE-2026-93841 · CVSS 6.3CVE-2026-93841: vLLM through 0.29.0 contains a memory corruption vulnerability in the Triton _bincount_kernel where prompt token IDs ind
-
Medium nvd · CVE-2026-93840 · CVSS 6.3CVE-2026-93840: vLLM before 0.29.0 validates allowed_token_ids against tokenizer length instead of model output logits width in Sampling
-
Medium nvd · CVE-2026-83354 · CVSS 6.3CVE-2026-83354: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). The supported version tha
-
Medium nvd · CVE-2026-54689 · CVSS 6.3CVE-2026-54689: mcp-searxng is a Model Context Protocol server that gives AI assistants web search and URL-reading capabilities through
-
Medium nvd · CVE-2026-54561 · CVSS 6.2CVE-2026-54561: MCP Memory Keeper is an MCP server for persistent context management in AI coding assistants. Prior to 0.13.0, context_i
-
Medium nvd · CVE-2026-77616 · CVSS 6.1CVE-2026-77616: Semantic MediaWiki is a free, open-source extension to MediaWiki that lets users store and query data within the wiki's
-
Medium github · GHSA-cx86-7xwp-w9wf · CVSS 6.1Semantic MediaWiki affected by reflected XSS in `Special:Ask` via a forged cursor pagination token
-
Medium nvd · CVE-2026-55946 · CVSS 6.1CVE-2026-55946: Improper neutralization of special elements used in a command ('command injection') in Microsoft Copilot allows an unaut
-
Medium nvd · CVE-2026-55093 · CVSS 6.1CVE-2026-55093: Tract is a tiny, no-nonsense, self-contained TensorFlow and ONNX inference toolkit. Prior to 0.21.16, 0.22.2, and 0.23.1
-
Medium nvd · CVE-2026-55832 · CVSS 6.1CVE-2026-55832: Tract is a tiny, no-nonsense, self-contained TensorFlow and ONNX inference toolkit. Prior to 0.21.17, 0.22.3, and 0.23.2
-
Medium nvd · CVE-2026-53556 · CVSS 6.0CVE-2026-53556: SQLBot is an intelligent Text-to-SQL system based on large language models and RAG. Prior to 1.9.0, the POST /api/v1/dat
-
High github · GHSA-4v9q-p283-qc2m · CVSS 5.9Grav: Unauthenticated Path Traversal via Missing Directory-Boundary Check in `plugin-asset-map.php` Static Asset Server (`index.php`)
-
Medium nvd · CVE-2026-12766 · CVSS 5.4CVE-2026-12766: IBM Langflow OSS 1.0.0 through 1.11.2 is vulnerable to server-side request forgery (SSRF). This may allow an authenticat
-
Medium nvd · CVE-2026-17628 · CVSS 5.4CVE-2026-17628: IBM Langflow OSS 1.0.0 through 1.10.2 could allow a remote authenticated attacker to change the password of an account d
-
Medium nvd · CVE-2026-89278 · CVSS 5.3CVE-2026-89278: The GPTranslate – Multilingual AI Translation Agent for WordPress: Translate Your Site with AI plugin for WordPress is v
-
Medium nvd · CVE-2026-59823 · CVSS 5.3CVE-2026-59823: LiteLLM is a proxy server (AI Gateway) to call LLM APIs in OpenAI (or native) format. Prior to 1.83.9, an authenticated
-
Medium nvd · CVE-2026-92365 · CVSS 5.3CVE-2026-92365: A vulnerability was found in vllm-project vllm up to 0.29.0. Affected by this issue is some unknown functionality of the