VulnWatch Weekly: The Agentic Apocalypse & The Langflow Meltdown
This week marks a turning point for AI security as critical RCEs plague agentic frameworks like Mistral Vibe and Langflow. With 89 new entries, the dominant theme is the collapse of trust boundaries in autonomous agents and model serving pipelines.
Week in Review: The Agentic Apocalypse & The Langflow Meltdown
Week: September 7 – September 13, 2026
Total Entries: 89
Dominant Themes: Agentic RCE, Model Supply Chain Poisoning, Inference Server DoS, MCP Transport Flaws
The security landscape for AI systems underwent a seismic shift this week, moving from theoretical prompt injections to catastrophic, unauthenticated Remote Code Execution (RCE) in production-grade agentic frameworks. The single most urgent item is the cluster of critical vulnerabilities in Mistral Vibe and IBM Langflow, which collectively dismantle the security boundaries between the LLM and the host operating system. These are not mere data leaks; they are full system compromises triggered by standard agent interactions. Simultaneously, the Model Context Protocol (MCP) ecosystem is showing its age, with multiple transport-level flaws allowing DNS rebinding and unauthenticated SQL execution. For CISOs and ML Platform teams, the message is clear: the "agent" abstraction layer has become the new attack surface, and current sandboxing mechanisms are failing to contain it.
Top Items of the Week
The following vulnerabilities represent the highest immediate risk to AI infrastructure. Immediate patching or mitigation is required.
-
Mistral Vibe: The Permission Bypass Cascade
- Identifiers: CVE-2026-87987, CVE-2026-87986, CVE-2026-87985, CVE-2026-87984, CVE-2026-87983
- Severity: Critical (CVSS 10.0 / 9.3)
- Affected Component: Mistral Vibe Agent Framework
- Impact: Complete bypass of command permission checks via environment variable injection, ANSI-C quoting, and shell construct parsing errors. Allows arbitrary code execution and file system access outside the workspace without user approval.
- Recommended Action: Upgrade Mistral Vibe immediately. If patching is delayed, disable all external tool usage and restrict the agent to read-only modes within a strictly containerized environment.
- Source: NVD CVE-2026-87987
-
IBM Langflow: The Authentication & Execution Collapse
- Identifiers: CVE-2026-85025, CVE-2026-81204, CVE-2026-79724
- Severity: Critical (CVSS 9.8)
- Affected Component: IBM Langflow OSS (v1.0.0 – v1.11.5)
- Impact: Unauthenticated attackers can execute arbitrary code via public MCP project endpoints due to broken session isolation. Additionally, graph construction flaws allow code injection and OS command execution.
- Recommended Action: Take public Langflow instances offline immediately. Upgrade to the latest patched version and audit all custom components for unsafe
eval()or subprocess calls. - Source: NVD CVE-2026-85025
-
MySQL MCP Server: DNS Rebinding to SQL Injection
- Identifier: GHSA-rqfv-2mw9-78g2
- Severity: Critical (CVSS 10.0)
- Affected Component:
mysql_mcp_server(SSE Transport Mode) - Impact: Missing Origin/Host validation in SSE transport enables DNS rebinding attacks. Attackers can trick the server into connecting to a malicious host, leading to unauthenticated SQL execution.
- Recommended Action: Disable SSE transport mode (
MCP_TRANSPORT=sse) until patched. Force usage of stdio mode or implement strict network segmentation for MCP servers. - Source: GitHub Advisory GHSA-rqfv-2mw9-78g2
-
DeepSeek Harness: Host Header Authentication Bypass
- Identifier: CVE-2026-82533
- Severity: Critical (CVSS 9.4)
- Affected Component: DeepSeek Harness (Local HTTP Control Plane)
- Impact: Attackers can bypass authentication by spoofing the
Hostheader, gaining full agent control, executing privileged commands, and retrieving all stored conversations. - Recommended Action: Configure the web server (nginx/Apache) in front of DeepSeek to validate and strip incoming
Hostheaders, or upgrade to v0.1.2-alpha.1+. - Source: NVD CVE-2026-82533
-
vLLM: Remote Code Execution via Processor Loader
- Identifier: CVE-2026-90553
- Severity: High (CVSS 8.5)
- Affected Component: vLLM (< v0.28.0)
- Impact: The
LlavaOnevision2processor loader ignores thetrust_remote_code=Falsesetting, allowing malicious models to execute arbitrary code during loading. - Recommended Action: Upgrade vLLM to v0.28.0 or later. Audit all loaded models for untrusted remote code dependencies.
- Source: NVD CVE-2026-90553
Theme: The Agentic RCE Epidemic
The most alarming trend this week is the systemic failure of agentic frameworks to enforce the principle of least privilege. We are seeing a pattern where "allowlisted" commands are trivially bypassed, turning helpful assistants into root shells.
The Mistral Vibe vulnerabilities are particularly instructive. The suite of CVEs (CVE-2026-87985 through CVE-2026-87988) reveals that the parser responsible for validating agent actions is fundamentally brittle. By exploiting edge cases in shell parsing—such as ANSI-C quoted arguments ($'...'), environment variable assignments preceding commands, and uninterpreted shell constructs—attackers can slip malicious payloads past the permission filter. This suggests that text-based command validation is insufficient for high-stakes agentic environments; structured, binary-intermediate representations of commands may be required to prevent such bypasses.
Similarly, IBM Langflow has become a honeypot for RCE. Beyond the critical authentication bypass in public flows (CVE-2026-85025), multiple vulnerabilities (CVE-2026-81204, CVE-2026-79724, CVE-2026-81941) highlight the dangers of dynamic graph construction. When users can define workflows that include custom code components or MCP tools, the platform fails to adequately sandbox these executions. CVE-2026-81941 is especially concerning as it allows non-admin users to bypass LANGFLOW_BLOCK_CODE_INTERPRETER_COMPONENTS controls by crafting specific MCP stdio subprocess transports. This indicates that configuration flags alone are insufficient guards against determined insider threats or compromised accounts.
We also observed critical flaws in the Amazon awslabs postgres-mcp-server (CVE-2026-87911). Here, a read-only enforcement mechanism was bypassed via a crafted COPY ... TO PROGRAM statement. This is a classic SQL injection variant adapted for the MCP era, proving that legacy database attack vectors remain potent when wrapped in modern AI protocols.
Theme: Model Supply Chain & Inference Integrity
While agents are executing code, the models themselves are becoming vectors for supply chain attacks. The trust boundary between the model weights and the inference engine is eroding.
vLLM continues to struggle with input validation in its multimodal processors. CVE-2026-90553 demonstrates that the trust_remote_code parameter, a primary defense against malicious model artifacts, is effectively ignored in the LlavaOnevision2 loader. This allows an attacker to host a model on Hugging Face that executes arbitrary Python code the moment it is loaded by a victim's inference server. Furthermore, CVE-2026-90555 and CVE-2026-90554 highlight Denial of Service (DoS) risks in audio processing, where forged headers can trigger excessive memory allocation, crashing the API server.
Hugging Face Accelerate (PYSEC-2026-3804) and Transformers (CVE-2026-9856) also revealed path traversal vulnerabilities. In Accelerate, sharded checkpoint weight maps are not sanitized, allowing attackers to read arbitrary files or cause DoS via named pipes. In Transformers, malicious chat template names in tokenizer_config.json can lead to arbitrary file writes when the tokenizer is saved. These vulnerabilities underscore the risk of treating model artifacts as data; they must be treated as executable code.
Additionally, MLflow (CVE-2026-79721) and GitPython (GHSA-284h-m62q-gf8w, GHSA-7833-fr7j-v32q) presented significant supply chain risks. MLflow allows malicious model artifacts to execute code upon loading, while GitPython's handling of .gitmodules and config files can lead to RCE or local file disclosure when cloning untrusted repositories—a common operation in ML engineering pipelines.
Theme: Server-Side Request Forgery (SSRF) & Data Leakage
As AI applications increasingly fetch external data to ground their responses, SSRF has emerged as a critical vector for cloud compromise.
Mistral.rs (GHSA-wfgq-w7cq-qj7j) and vLLM (GHSA-4hhp-h66f-j5j7) both suffer from unvalidated media fetching. Their vision and audio endpoints will blindly fetch URLs provided in user prompts, including file:// schemes and internal metadata addresses (e.g., 169.254.169.254). This allows attackers to exfiltrate cloud credentials or read sensitive local files directly from the inference server's filesystem.
Google Cloud Gemini Enterprise (CVE-2026-19486) also shipped with a high-severity SSRF in its App Builder, allowing unauthenticated attackers to leak Compute Engine service account tokens. This is a stark reminder that even managed cloud AI services are not immune to foundational web vulnerabilities.
Data leakage was also prevalent in Open WebUI (GHSA-pcvc-8vrv-8q6w), where knowledge base search filters were ignored by vector backends like Pinecone and Milvus, exposing restricted documents to unauthorized users. Langflow (CVE-2026-9225) similarly failed to enforce ownership checks on file reads, allowing low-privileged users to access other users' sensitive data.
Theme: Infrastructure & Protocol Flaws
The underlying infrastructure supporting AI workloads is also fracturing. Traefik (GHSA-f52w-8j3h-j724) revealed a subtle but dangerous routing bug where rootless HTTP request targets could bypass path-scoped middleware and access controls, potentially exposing internal AI services.
Central Dogma (GHSA-2j95-gqxf-v3vg) was found to use a hard-coded ZooKeeper replication secret (ch4n63m3), enabling trivial cluster takeover. This is a failure of basic security hygiene that could have catastrophic consequences for any organization relying on it for configuration management.
Furthermore, NVIDIA Triton Inference Server (CVE-2026-47625, CVE-2026-16497) faced issues with missing authorization and excessive iteration, leading to potential DoS and data tampering. These low-level infrastructure flaws remind us that the AI stack is only as strong as its weakest dependency.
Known Exploited Items
Fortunately, as of this writing, no entries in this week's digest are marked as is_exploited=true. However, the severity and simplicity of the exploits described—particularly the Mistral Vibe shell bypasses and the Langflow public endpoint RCE—suggest that active exploitation is imminent. The window for defensive action is closing rapidly.
What to Do This Week
- Patch Agentic Frameworks Immediately: Prioritize updating Mistral Vibe, Langflow, and DeepSeek Harness. These are not optional updates; they are critical survival patches.
- Audit MCP Implementations: If you are running MCP servers (MySQL, Postgres, etc.), verify that you are not using SSE transport without strict network controls. Audit all MCP tools for path traversal and command injection vulnerabilities.
- Enforce Network Segmentation: Isolate your inference servers and agent runtimes from the public internet and internal metadata services. Use egress firewalls to block requests to
169.254.169.254and other cloud metadata endpoints. - Review Model Sources: Stop loading models from untrusted sources. Implement a proxy or scanner that validates model artifacts (safetensors, configs) before they reach your inference engine to prevent supply chain RCE.
- Disable Dangerous Features: If you cannot patch immediately, disable features like
trust_remote_code, external tool usage, and public flow sharing in your AI platforms.
What to Watch Next Week
Next week, we anticipate a wave of follow-up advisories as security researchers dig deeper into the Model Context Protocol (MCP) specification. The flaws found in MySQL and Postgres MCP servers suggest that the protocol's transport layer security is fundamentally weak. We also expect to see more research into multimodal injection attacks, where malicious payloads hidden in images or audio trigger the SSRF and RCE bugs identified in vLLM and Mistral.rs. Finally, keep an eye on vector database vendors; the access control bypasses in Open WebUI suggest that the entire RAG (Retrieval-Augmented Generation) stack may need a security overhaul.
Covered entries (89)
-
Critical github · GHSA-rqfv-2mw9-78g2 · CVSS 10.0MySQL MCP Server: Missing Origin/Host Validation in SSE Transport Enables Unauthenticated SQL Execution (DNS Rebinding / Direct Exposure)
-
Critical nvd · CVE-2026-87988 · CVSS 10.0CVE-2026-87988: An arbitrary file access vulnerability in Mistral Vibe allows an attacker to bypass workspace restrictions through comma
-
Critical nvd · CVE-2026-87987 · CVSS 10.0CVE-2026-87987: An arbitrary code execution vulnerability in Mistral Vibe allows an attacker to bypass command permission checks using e
-
Critical nvd · CVE-2026-87986 · CVSS 10.0CVE-2026-87986: An arbitrary code execution vulnerability in Mistral Vibe allows an attacker to bypass command permission checks using s
-
Critical nvd · CVE-2026-87985 · CVSS 10.0CVE-2026-87985: An arbitrary code execution vulnerability in Mistral Vibe allows an attacker to bypass command permission checks using A
-
Critical nvd · CVE-2026-81204 · CVSS 9.8CVE-2026-81204: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote attacker to execute arbitrary code due to code injection duri
-
Critical nvd · CVE-2026-79724 · CVSS 9.8CVE-2026-79724: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote attacker to execute arbitrary OS commands due to improper neu
-
Critical nvd · CVE-2026-85025 · CVSS 9.8CVE-2026-85025: IBM Langflow OSS 1.0.0 through 1.11.5 Langflow could allow an unauthenticated attacker to execute arbitrary code and acc
-
Critical github · GHSA-284h-m62q-gf8w · CVSS 9.8GitPython: Dormant multi-line git-config values are corrupted into live injected directives (e.g. core.hooksPath) on any unrelated GitConfigParser write, enabling RCE
-
Critical nvd · CVE-2026-44950 · CVSS 9.5CVE-2026-44950: fs_read_glyphs() in the libXfont2 font-server client (src/fc/fserve.c) copies each glyph's bitmap into a single buffer.
-
Critical nvd · CVE-2026-82533 · CVSS 9.4CVE-2026-82533: DeepSeek Harness before 0.1.2-alpha.1 contains an authentication bypass vulnerability in its local HTTP control-plane AP
-
Critical nvd · CVE-2026-87984 · CVSS 9.3CVE-2026-87984: An arbitrary file write vulnerability in Mistral Vibe, introduced in version 1.3.4, allows an attacker to create or over
-
Critical nvd · CVE-2026-87983 · CVSS 9.2CVE-2026-87983: An arbitrary file read vulnerability in Mistral Vibe, introduced in version 2.6.0, allows an attacker to bypass workspac
-
Critical nvd · CVE-2026-13745 · CVSS 9.2CVE-2026-13745: A vulnerability in the Gemini CLI and associated GitHub Action allowed an unprivileged attacker to achieve an arbitrary
-
Critical nvd · CVE-2026-87911 · CVSS 9.0CVE-2026-87911: An OS command injection weakness in the read-only enforcement of the SQL validation component in Amazon awslabs postgres
-
High github · GHSA-j328-xmgp-j4q3 · CVSS 8.8Shopper: privilege escalation via improper Livewire admin component authorization
-
High nvd · CVE-2026-71416 · CVSS 8.8CVE-2026-71416: Headroom compresses data before the data reaches a large language model. Prior to version 0.35.0, the Headroom WebSocket
-
High nvd · CVE-2026-84889 · CVSS 8.8CVE-2026-84889: 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-81940 · CVSS 8.8CVE-2026-81940: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to execute arbitrary code due to impro
-
High nvd · CVE-2026-81941 · CVSS 8.8CVE-2026-81941: IBM Langflow OSS 1.0.0 through 1.11.5 allows an authenticated non-administrative user could execute arbitrary operating
-
High nvd · CVE-2026-81211 · CVSS 8.8CVE-2026-81211: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to execute arbitrary Python code due t
-
High nvd · CVE-2026-78575 · CVSS 8.8CVE-2026-78575: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to execute arbitrary commands due to i
-
High nvd · CVE-2026-79742 · CVSS 8.8CVE-2026-79742: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to execute arbitrary code due to an in
-
High nvd · CVE-2026-78571 · CVSS 8.8CVE-2026-78571: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to execute arbitrary code due to an un
-
High nvd · CVE-2026-78569 · CVSS 8.8CVE-2026-78569: IBM Langflow OSS 1.0.0 through 1.11.5 could allow an authenticated attacker to execute arbitrary code due to an incomple
-
High nvd · CVE-2026-76059 · CVSS 8.8CVE-2026-76059: IBM Langflow OSS 1.0.0 through 1.11.5 An attacker who could submit custom component source code could bypass the static
-
High nvd · CVE-2026-82578 · CVSS 8.7CVE-2026-82578: When XML batch processing is turned on and the XPath option is selected, the raw batch input goes through a default XPat
-
High nvd · CVE-2026-19486 · CVSS 8.7CVE-2026-19486: A Server-Side Request Forgery (SSRF) vulnerability in Google Cloud Gemini Enterprise Agent Platform App Builder versions
-
High nvd · CVE-2026-81213 · CVSS 8.6CVE-2026-81213: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote attacker to obtain sensitive information from internal networ
-
High nvd · CVE-2026-79721 · CVSS 8.6CVE-2026-79721: Code execution can occur in versions of the MLflow platform running version 0.0.1 or newer, enabling a maliciously craft
-
High nvd · CVE-2026-90553 · CVSS 8.5CVE-2026-90553: vLLM before 0.28.0 contains a remote code execution vulnerability in the LlavaOnevision2 processor loader that ignores t
-
High nvd · CVE-2026-19136 · CVSS 8.4CVE-2026-19136: A potential command injection vulnerability was reported in the Tianxi AI Agent PC Application, distributed exclusively
-
High github · GHSA-7833-fr7j-v32q · CVSS 8.4GitPython: Arbitrary local file content disclosure via [include] directive in untrusted .gitmodules (SubmoduleConfigParser never disables merge_includes)
-
High nvd · CVE-2026-37008 · CVSS 8.1CVE-2026-37008: CrewAI before fb2323b offers a Python blocklist approach that operates at the wrong level of abstraction, a different vu
-
High github · GHSA-243p-f3cv-c5wh · CVSS 8.1Shopper: Authorization bypass in Filament bulk actions allows browse-only staff to mass-delete attributes/tags and mass-toggle visibility of brands/categories/suppliers
-
High nvd · CVE-2026-81268 · CVSS 8.1CVE-2026-81268: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to execute flows and obtain sensitive
-
High github · GHSA-wcjj-9m6g-2fr2 · CVSS 7.8functype-mcp-server: MCP `set_functype_version` Package Alias RCE via Unsanitized pnpm install + Dynamic Import
-
High nvd · CVE-2026-81265 · CVSS 7.5CVE-2026-81265: IBM Langflow OSS 1.0.0 through 1.11.5.
-
High github · GHSA-m3wp-48jr-vr4g · CVSS 7.5mistral.rs: Unbounded Remote Media Fetch and Video Frame Expansion DoS
-
High github · GHSA-fxg7-897c-57mp · CVSS 7.5Nuxt Ollama: Public Runtime Config Exposes Ollama API Key to Browser Clients
-
High github · GHSA-8mcc-hrx5-hvxc · CVSS 7.5GitPython: clone_from()/clone() omit --separate-git-dir from unsafe_git_clone_options, enabling arbitrary git-directory creation outside the destination
-
High nvd · CVE-2026-47625 · CVSS 7.5CVE-2026-47625: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could abuse missing authorization. A
-
High nvd · CVE-2026-16497 · CVSS 7.5CVE-2026-16497: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could cause excessive iteration. A s
-
High github · GHSA-wfgq-w7cq-qj7j · CVSS 7.2mistral.rs Media Loader: Unauthenticated SSRF and arbitrary local file read via image_url
-
High nvd · CVE-2026-90555 · CVSS 7.1CVE-2026-90555: vLLM versions before 0.28.0 fail to validate audio sample rate headers in the transcription endpoint, allowing authentic
-
High nvd · CVE-2026-88938 · CVSS 7.1CVE-2026-88938: knowns through 0.33.0 fails to confine the path argument of the code.find MCP tool to the project root, allowing AI agen
-
High github · GHSA-2724-6cpj-gf3v · CVSS 7.1Open WebUI: Non-admin users can delete admin-owned external knowledge connections via knowledge base deletion
-
High nvd · CVE-2026-86082 · CVSS 7.1CVE-2026-86082: n8n is an open source workflow automation platform. Prior to 1.123.76, 2.37.7, and 2.38.2, the OpenAI Chat Model node en
-
High nvd · CVE-2026-82065 · CVSS 7.1CVE-2026-82065: A security issue in the MongoDB Server's storage engine integration layer allows an authenticated user with collection c
-
Medium nvd · CVE-2026-90554 · CVSS 6.9CVE-2026-90554: vLLM versions >=0.10.2 and <0.28.0 do not apply any audio decode-size or duration limit when extracting audio from video
-
Medium nvd · CVE-2026-90473 · CVSS 6.9CVE-2026-90473: msgpack-java through 0.9.12 contains an integer overflow vulnerability in MessageUnpacker.skipValue() when processing MA
-
Medium nvd · CVE-2026-86317 · CVSS 6.9CVE-2026-86317: A vulnerability was detected in ggml-org llama.cpp up to 0.4.0. This impacts the function rpc_server::deserialize_tensor
-
Medium github · GHSA-99h5-jhh7-v3r3 · CVSS 6.5Shopper: Media sub-form store() still lacks authorization (Incomplete fix for GHSA-h4mp-g9c6-xwph)
-
Medium nvd · CVE-2026-79725 · CVSS 6.5CVE-2026-79725: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to read arbitrary files due to imprope
-
Medium nvd · CVE-2026-9225 · CVSS 6.5CVE-2026-9225: IBM Langflow OSS 1.0.0 through 1.11.5 Langflow could allow an authenticated attacker to access sensitive files belonging
-
Medium nvd · CVE-2026-81381 · CVSS 6.5CVE-2026-81381: Insufficiently protected credentials in GitHub Copilot and Visual Studio Code allows an unauthorized attacker to disclos
-
Medium nvd · CVE-2026-53937 · CVSS 6.2CVE-2026-53937: MCP Kotlin SDK is the Kotlin Multiplatform software development kit for the Model Context Protocol. In versions 0.7.0 th
-
Medium nvd · CVE-2026-90534 · CVSS 6.1CVE-2026-90534: Flowise is a low-code platform for building LLM applications. In versions up to and including 3.1.3, the POST /api/v1/no
-
Medium nvd · CVE-2026-82063 · CVSS 6.0CVE-2026-82063: A use-after-free security issue in the cursor management component of MongoDB Server allows an authenticated user to cau
-
Medium nvd · CVE-2026-88055 · CVSS 5.5CVE-2026-88055: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
Medium github · GHSA-7ghq-v6jf-g56c · CVSS 5.3Traefik: respondingTimeouts.readTimeout is not applied to HTTP/3, leaving slow-body uploads unbounded
-
Medium nvd · CVE-2026-81380 · CVSS 5.3CVE-2026-81380: Improper neutralization of special elements used in a command ('command injection') in GitHub Copilot and Visual Studio
-
Medium nvd · CVE-2026-87913 · CVSS 5.1CVE-2026-87913: A missing S3 bucket ownership verification in the AWS Security Agent MCP server before 0.2.0 version might allow remote
-
Medium nvd · CVE-2026-79723 · CVSS 5.0CVE-2026-79723: IBM Langflow OSS 1.0.0 through 1.11.5 could allow a remote authenticated attacker to obtain sensitive information due to
-
Medium github · GHSA-pcvc-8vrv-8q6w · CVSS 4.3Open WebUI: Inaccessible knowledge bases are exposed through the built-in knowledge tool on most vector backends
-
Medium github · GHSA-fmqh-xp37-5hr8 · CVSS 4.3Open WebUI: Channel members can overwrite another member's message via the chat completions endpoint
-
Medium osv · PYSEC-2026-3938 · CVSS 4.0vLLM: Incomplete CVE-2025-62164 remediation can be bypassed by concurrent prompt parts
-
Medium osv · PYSEC-2026-3804 · CVSS 4.0Accelerate path traversal and denial of service via sharded checkpoint weight_map entries
-
Low osv · PYSEC-2026-3933 · CVSS 3.1vLLM: ReDoS via structured_outputs.regex in the lm-format-enforcer backend (no compile timeout) — missed sibling of GHSA-rwxx-mrjm-wc2m
-
Low osv · PYSEC-2026-3934 · CVSS 3.1vLLM: SSRF + arbitrary local file read in MiMoV2OmniMultiModalProcessor `_fetch_image` and audio loader bypass MediaConnector protections
-
Low osv · PYSEC-2026-3935 · CVSS 3.1vLLM: Cross-User Data Leak Vulnerability
-
Low osv · PYSEC-2026-3936 · CVSS 3.1vLLM: Derender endpoints decode caller-supplied GenerateResponse token IDs without output bounds
-
Low osv · PYSEC-2026-3937 · CVSS 3.1vLLM: Unauthenticated Internal Path and Username Disclosure via Validation Error Messages
-
Low osv · PYSEC-2026-3861 · CVSS 3.1LiteLLM vulnerable to server-side template injection in the /prompts/test endpoint
-
Low osv · PYSEC-2026-3865 · CVSS 3.1MLflow AI Gateway permits SSRF through an unvalidated api_base
-
Low osv · GHSA-4hhp-h66f-j5j7 · CVSS 3.1vLLM: SSRF + arbitrary local file read in MiMoV2OmniMultiModalProcessor `_fetch_image` and audio loader bypass MediaConnector protections
-
Low osv · GHSA-7m6h-x95x-82q5 · CVSS 3.1vLLM: Cross-User Data Leak Vulnerability
-
Low osv · PYSEC-2026-3929 · CVSS 3.0Transformers save_pretrained path traversal allows arbitrary file writes through chat template names
-
Low nvd · CVE-2026-82710 · CVSS 2.3CVE-2026-82710: Improper Neutralization of Escape, Meta, or Control Sequences vulnerability in ash-project usage_rules allows a maliciou
-
Low nvd · CVE-2026-82584 · CVSS 2.3CVE-2026-82584: Improper Neutralization of Escape, Meta, or Control Sequences vulnerability in ash-project igniter allows a malicious pa
-
Low nvd · CVE-2026-86288 · CVSS 2.1CVE-2026-86288: A vulnerability has been found in ModelCloud GPTQModel up to 7.2.0. This vulnerability affects unknown code of the file
-
Low nvd · CVE-2026-86289 · CVSS 2.1CVE-2026-86289: A vulnerability was found in Ollama up to 0.31.1. This issue affects the function readGGUFV1String of the file fs/ggml/g
-
Critical github · GHSA-2j95-gqxf-v3vg · CVSS 0.0Central Dogma: Hard-coded ZooKeeper replication secret 'ch4n63m3' with silent fallback enables cluster takeover
-
High github · GHSA-f52w-8j3h-j724 · CVSS 0.0Traefik: Rootless HTTP/1 request-target routes as "/" but is forwarded verbatim, bypassing path-scoped routing, middleware guards and access logging
-
Critical github · GHSA-hf57-cqmx-p4gr · CVSS 0.0OmniRoute ACP Custom-Agent Remote Code Execution (RCE)
-
High github · GHSA-34ff-336r-5q23 · CVSS 0.0n8n: Domain-Restriction Bypass via Unguarded Model-Search Endpoint in OpenAI Chat Model Node
-
High github · GHSA-7w5x-hrqm-74c2 · CVSS 0.0smol-toml: Denial of Service via malformed TOML documents
-
High github · GHSA-96p9-rh4f-92cf · CVSS 0.0Windows ML CLI: CORS misconfig enables localhost RCE
-
High github · GHSA-3gq4-3j92-5w49 · CVSS 0.0NLTK: Corpus Reader Sandbox Bypass