VulnWatch Weekly: Agentic RCE Surge & LiteLLM Exploitation
Critical RCEs plague agent platforms like FastGPT and PraisonAI. LiteLLM SQLi is actively exploited. Supply chain risks rise with PyTorch Lightning compromise.
Week in Review
The week of May 4-10, 2026, marked a significant escalation in threats targeting the AI orchestration layer, shifting focus from model weights to agent execution environments. The dominant theme is the prevalence of Remote Code Execution (RCE) vulnerabilities within agentic platforms, driven by insecure sandboxing and tool invocation logic. The single most urgent item is CVE-2026-42208 in LiteLLM, which is confirmed as actively exploited in the wild, posing an immediate risk to proxy deployments managing LLM credentials. Security teams must prioritize patching agent frameworks and auditing supply chain dependencies, as evidenced by the critical compromise of PyTorch Lightning packages.
Top Items of the Week
The following vulnerabilities represent the highest immediate risk to AI infrastructure. Prioritize remediation based on exploitability and exposure.
-
CVE-2026-42208 (LiteLLM SQL Injection)
- Severity: High (9.3) | Status: KNOWN EXPLOITED
- Affected Component: LiteLLM Proxy Server
- Impact: Allows attackers to read and modify proxy database data, leading to unauthorized access to managed LLM credentials and proxy configuration.
- Action: Upgrade to the latest patched version immediately. Rotate all API keys stored within the proxy. Audit database logs for suspicious queries.
- Source
-
CVE-2026-41512 (ai-scanner RCE)
- Severity: Critical (9.9)
- Affected Component: ai-scanner (NVIDIA garak wrapper)
- Impact: Remote Code Execution via JavaScript injection in the Playwright service allows full server compromise during model safety scanning.
- Action: Upgrade to version 1.4.1 or later. Isolate scanning services in ephemeral containers with no network egress.
- Source
-
CVE-2026-42302 (FastGPT Agent Sandbox RCE)
- Severity: Critical (9.8)
- Affected Component: FastGPT Agent Sandbox
- Impact: Unauthenticated RCE due to
code-serverinitializing with--auth noneon all interfaces, granting full control over the sandbox environment. - Action: Upgrade to version 4.14.13. Ensure sandbox services are not exposed to public networks and enforce authentication on all development tools.
- Source
-
GHSA-w37p-236h-pfx3 (PyTorch Lightning Supply Chain)
- Severity: Critical (Supply Chain)
- Affected Component: PyTorch Lightning PyPI Package
- Impact: Compromised package versions include malicious code consistent with credential harvesting mechanisms.
- Action: Audit all
requirements.txtand lockfiles for PyTorch Lightning versions. Rebuild artifacts from known good sources. Rotate credentials on affected build systems. - Source
-
GHSA-5c57-rqjx-35g2 (Cline Kanban WebSocket Hijacking)
- Severity: Critical (9.6)
- Affected Component: Cline CLI Kanban Server
- Impact: Cross-Origin WebSocket Hijacking allows websites to leak workspace data, inject prompts, and execute remote code via the agent terminal.
- Action: Update the
clineCLI. Block WebSocket connections to localhost ports from untrusted browser contexts via browser policies. - Source
-
CVE-2026-33324 (SQLBot Prompt Injection)
- Severity: Critical (9.4)
- Affected Component: SQLBot Text-to-SQL Interface
- Impact: Prompt injection allows attackers to manipulate the LLM into generating and executing arbitrary SQL statements against the backend database.
- Action: Upgrade to version 1.7.1+. Implement strict output validation on generated SQL queries before execution.
- Source
-
GHSA-x8qc-fggm-mpqg (Ollama GGUF Heap OOB)
- Severity: High (9.1)
- Affected Component: Ollama Model Loader
- Impact: Heap out-of-bounds read during GGUF quantization can leak environment variables, API keys, and conversation data.
- Action: Upgrade Ollama to version 0.17.1 or later. Validate model files before loading into production environments.
- Source
-
GHSA-9whx-c884-c68q (Langflow Path Traversal)
- Severity: Critical (9.6)
- Affected Component: Langflow Knowledge Bases API
- Impact: Authenticated attackers can delete arbitrary directories on the server filesystem via unsanitized knowledge base names.
- Action: Upgrade Langflow. Restrict API access to trusted internal networks only.
- Source
-
CVE-2026-42076 (Evolver Command Injection)
- Severity: Critical (9.8)
- Affected Component: Evolver Self-Evolving Engine
- Impact: Command injection in
_extractLLM()allows arbitrary shell command execution via unsanitized corpus parameters. - Action: Upgrade to version 1.69.3. Review all external inputs passed to shell execution functions.
- Source
-
GHSA-cx4m-2p55-rw7j (Apache OpenNLP RCE)
- Severity: Critical (9.8)
- Affected Component: Apache OpenNLP ExtensionLoader
- Impact: Arbitrary Class Instantiation via Model Manifest allows attackers to load and execute malicious classes.
- Action: Upgrade to version 2.5.9 or 3.0.0-M3. Validate model archives before deployment.
- Source
The Agentic Explosion: RCE in Orchestration Layers
This week's vulnerability landscape underscores a critical trend: as organizations adopt agentic workflows, the attack surface expands from the model itself to the orchestration logic surrounding it. We observed a cluster of Critical severity RCE vulnerabilities in platforms designed to build and manage AI agents, including FastGPT, Evolver, and PraisonAI. These vulnerabilities often stem from a fundamental misunderstanding of trust boundaries within agent sandboxes.
For instance, FastGPT's agent-sandbox component (CVE-2026-42302) initialized code-server with authentication disabled (--auth none) and bound it to all network interfaces. This configuration effectively hands over the keys to the kingdom to any network actor who can reach the port. Similarly, Evolver (CVE-2026-42076) suffered from command injection via string concatenation in shell commands, a classic vulnerability type that has found new life in AI engineering pipelines where dynamic code generation is common. PraisonAI (CVE-2026-44336) exposed similar risks through its Model Context Protocol (MCP) server, where file-handling tools accepted unchecked paths.
The implication for security engineers is clear: agent orchestration layers must be treated with the same rigor as public-facing web applications. Sandboxes are not secure by default. The assumption that an agent running “locally” or within a “container” is safe is dangerous when network bindings and authentication flags are misconfigured. We recommend enforcing strict network segmentation for all agent execution environments and disabling any development tools (like code-server) in production configurations.
Model Supply Chain Integrity Under Fire
Supply chain security took a significant hit this week with the confirmation of a compromise in the PyTorch Lightning PyPI package (GHSA-w37p-236h-pfx3). Lightning AI identified malicious code in certain released versions consistent with credential harvesting. This incident highlights the fragility of the open-source AI ecosystem, where a single compromised dependency can cascade through thousands of downstream projects.
Additionally, we saw vulnerabilities in model loading mechanisms that could facilitate supply chain attacks. Ollama's heap out-of-bounds read (GHSA-x8qc-fggm-mpqg / CVE-2026-7482) in the GGUF model loader allows attackers to leak memory contents, including API keys, by uploading malicious model files. Keras (GHSA-mgx6-5cf9-rr43) is vulnerable to a Denial of Service via “shape bombs” in HDF5 weight files, where declared tensor shapes exceed actual file lengths, causing petabyte allocation attempts.
Diffusers also released patches for a trust_remote_code bypass (GHSA-j7w6-vpvq-j3gm / GHSA-98h9-4798-4q5v), allowing arbitrary code execution despite security flags. These issues collectively suggest that model artifacts themselves are becoming viable attack vectors. ML platform teams must implement integrity verification for all model weights and dependencies. Use lockfiles, verify checksums, and consider running model loading processes in isolated environments with restricted system calls.
The Model Context Protocol (MCP) Security Gap
The Model Context Protocol (MCP) is rapidly becoming a standard for connecting AI assistants to external tools, but this week's data reveals it is also becoming a standard vector for attacks. Multiple MCP servers, including n8n-MCP, rmcp, and PraisonAI, shipped with severe security flaws.
n8n-MCP (CVE-2026-42449 / CVE-2026-44694) had SSRF vulnerabilities where IPv6 validation was missing, allowing attackers to bypass cloud metadata protections. The rmcp crate (GHSA-89vp-x53w-74fx) suffered from DNS rebinding vulnerabilities due to missing Host header validation, violating the MCP specification's own security guidance. PraisonAI's MCP server allowed path traversal via tool arguments.
The root cause across these entries is a lack of input validation on tool arguments and transport layer security. Because MCP servers often run with high privileges to access local files or APIs, compromising an MCP server often equates to compromising the host. Developers integrating MCP must validate all tool inputs, enforce strict allowlists for accessible resources, and ensure transport layers validate host headers to prevent rebinding attacks.
Platform Privilege Escalation & Data Leakage
Beyond RCE, we observed a wave of authentication bypasses and data leakage issues in popular AI platforms like Open WebUI, Dify, and Langflow. Open WebUI was particularly affected, with multiple advisories covering Redis cache poisoning (GHSA-3x8w-4f7p-xxc2), knowledge base destruction (GHSA-7r82-qhg4-6wvj), and model routing bypasses (GHSA-9vvh-qmjx-p4q8). These vulnerabilities allow authenticated users to escalate privileges, access other tenants' data, or poison RAG contexts.
Dify (CVE-2026-41950) allowed authenticated users to read files uploaded by others within the same tenant by manipulating file UUIDs. Langflow (GHSA-9whx-c884-c68q) allowed directory deletion. These issues stem from insufficient multi-tenant isolation and access control checks on object identifiers. For CISOs, this reinforces the need for regular access control audits. Just because a user is authenticated does not mean they should have access to every object ID they can guess. Implement indirect reference maps and enforce ownership checks at the database query level.
Prompt Injection Evolving into SQLi
Prompt injection is no longer just about making the model say something rude; it is now a vector for database compromise. CVE-2026-33324 in SQLBot demonstrated how user-provided questions could be concatenated directly into LLM prompts, manipulating the model into generating arbitrary SQL statements that are then executed without validation. This is a classic indirect prompt injection leading to SQLi.
Coupled with the actively exploited LiteLLM SQL injection (CVE-2026-42208), the message is clear: never trust LLM output that interacts with sensitive systems. All SQL generated by an LLM must be parsed, validated against a schema, and executed with least-privilege database credentials. Read-only connections should be the default for any RAG or Text-to-SQL system.
What to Do This Week
- Patch LiteLLM Immediately: Given the active exploitation of CVE-2026-42208, this is your top priority. Rotate all proxy credentials.
- Audit Agent Sandboxes: Review configurations for FastGPT, Evolver, and PraisonAI. Ensure no development tools (code-server, debug ports) are exposed to networks.
- Verify Supply Chain: Scan your Python environments for compromised PyTorch Lightning versions. Validate checksums for all Ollama and Keras model files.
- ** Harden MCP Servers:** If you run MCP servers, update to the latest versions and restrict network access to localhost or trusted internal subnets only.
- Review Access Controls: Audit Open WebUI and Dify instances for multi-tenant isolation. Ensure users cannot access objects belonging to other workspaces.
What to Watch Next Week
Expect further disclosures regarding MCP security as adoption grows. We anticipate more research into “confused deputy” attacks where AI agents are tricked into accessing resources they have permission for but shouldn't. Additionally, monitor supply chain channels for any fallout from the PyTorch Lightning incident, as attackers may pivot to similar high-value ML libraries. Security teams should prepare for increased scanning activity targeting unpatched agent orchestration platforms.
Covered entries (99)
-
Critical nvd · CVE-2026-41512 · CVSS 9.9CVE-2026-41512: ai-scanner is an AI model safety scanner built on NVIDIA garak. From version 1.0.0 to before version 1.4.1, there is a r
-
Critical nvd · CVE-2026-42302 · CVSS 9.8CVE-2026-42302: FastGPT is an AI Agent building platform. From version 4.14.10 to before version 4.14.13, the agent-sandbox component of
-
Critical github · GHSA-cx4m-2p55-rw7j · CVSS 9.8Apache OpenNLP ExtensionLoader Vulnerable to Arbitrary Class Instantiation via Model Manifest
-
Critical nvd · CVE-2026-42076 · CVSS 9.8CVE-2026-42076: Evolver is a GEP-powered self-evolving engine for AI agents. Prior to version 1.69.3, a command injection vulnerability
-
Critical github · GHSA-5c57-rqjx-35g2 · CVSS 9.6Cline Kanban Server has a Cross-Origin WebSocket Hijacking Vulnerability
-
Critical github · GHSA-9whx-c884-c68q · CVSS 9.6Langflow Knowledge Bases API is Vulnerable to Path Traversal
-
Critical nvd · CVE-2026-44336 · CVSS 9.4CVE-2026-44336: PraisonAI is a multi-agent teams system. Prior to version 4.6.34, PraisonAI's MCP (Model Context Protocol) server (prais
-
Critical nvd · CVE-2026-33324 · CVSS 9.4CVE-2026-33324: SQLBot is an intelligent Text-to-SQL system based on large language models and RAG. In versions 1.7.0 and earlier, the T
-
Critical github · GHSA-w9f3-qc75-qgx9 · CVSS 9.3PrestaShop has a stored XSS executable in customer service view
-
High cisa_kev · CVE-2026-42208 · CVSS 9.3BerriAI LiteLLM SQL Injection Vulnerability
-
Critical github · GHSA-8hg8-63c5-gwmx · CVSS 9.1vm2 NodeVM `nesting: true` bypasses `require: false` allowing sandbox escape and arbitrary OS command execution
-
Critical github · GHSA-9h64-2846-7x7f · CVSS 9.1Axonflow fixed bugs by implementing multi-tenant isolation and access-control hardening
-
High github · GHSA-x8qc-fggm-mpqg · CVSS 9.1Ollama contains a heap out-of-bounds read vulnerability in the GGUF model loader
-
High nvd · CVE-2026-32207 · CVSS 8.8CVE-2026-32207: Improper neutralization of input during web page generation ('cross-site scripting') in Azure Machine Learning allows an
-
High github · GHSA-j7w6-vpvq-j3gm · CVSS 8.8Diffusers has a `trust_remote_code` bypass via `custom_pipeline` and local custom components
-
High github · GHSA-89vp-x53w-74fx · CVSS 8.8rmcp Streamable HTTP server transport has a DNS rebinding vulnerability
-
High github · GHSA-cfcj-hqpf-hccf · CVSS 8.8@evomap/evolver: Path Traversal in `evolver fetch` default-branch `safeId` allows Hub-controlled overwrite of project files (RCE)
-
High nvd · CVE-2026-7482 · CVSS 8.8CVE-2026-7482: Ollama before 0.17.1 contains a heap out-of-bounds read vulnerability in the GGUF model loader. The /api/create endpoint
-
High github · GHSA-3x8w-4f7p-xxc2 · CVSS 8.7Open WebUI: Redis Cache Keys tool_servers and terminal_servers Missing Instance Prefix Enable Cross-Instance Cache Poisoning
-
High nvd · CVE-2026-42271 · CVSS 8.7CVE-2026-42271: LiteLLM is a proxy server (AI Gateway) to call LLM APIs in OpenAI (or native) format. From version 1.74.2 to before vers
-
High nvd · CVE-2026-35228 · CVSS 8.7CVE-2026-35228: Vulnerability in the Oracle MCP Server Helper Tool product of Oracle Open Source Projects (component: helper tool). The
-
High nvd · CVE-2026-41705 · CVSS 8.6CVE-2026-41705: Spring AI's MilvusVectorStore#doDelete(List) implementation is vulnerable to filter-expression injection via unsanitized
-
High nvd · CVE-2026-42203 · CVSS 8.6CVE-2026-42203: LiteLLM is a proxy server (AI Gateway) to call LLM APIs in OpenAI (or native) format. From version 1.80.5 to before vers
-
High github · GHSA-89g2-xw5c-v95p · CVSS 8.6PPTAgent: Arbitrary Code Execution via Python eval() of LLM-Generated Code with Builtins in Scope
-
High nvd · CVE-2026-42079 · CVSS 8.6CVE-2026-42079: PPTAgent is an agentic framework for reflective PowerPoint generation. Prior to commit 418491a, PPTAgent is vulnerable t
-
High nvd · CVE-2026-42449 · CVSS 8.5CVE-2026-42449: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. In ve
-
High github · GHSA-xcmw-grxf-wjhj · CVSS 8.4PraisonAI has unauthenticated RCE via `tool_override.py` (CVE-2026-40287 patch bypass)
-
High github · GHSA-v228-72c7-fx8j · CVSS 8.2open-websearch has SSRF in `fetchWebContent` MCP tool: bracketed IPv6 literals and non-resolving hostname check bypass `isPrivateOrLocalHostname`
-
High github · GHSA-7r82-qhg4-6wvj · CVSS 8.1Open WebUI has Knowledge Base Destruction and RAG Poisoning via Unauthorized Collection Overwrite
-
High github · GHSA-pjv4-3c63-699f · CVSS 8.1opentelemetry-collector-contrib's azureauthextension Authenticate method does not validate bearer tokens, allowing auth bypass via replay
-
High github · GHSA-jxh8-jh77-xh6g · CVSS 8.1@evomap/evolver's validator sandbox allowlist permits `npm`/`npx`, yielding RCE from Hub-delivered validation tasks via lifecycle scripts
-
High nvd · CVE-2026-42075 · CVSS 8.1CVE-2026-42075: Evolver is a GEP-powered self-evolving engine for AI agents. Prior to version 1.69.3, a path traversal vulnerability in
-
High github · GHSA-f89h-2fjh-2r9q · CVSS 7.8gix-fs: Symlink prefix-reuse allows worktree escape during checkout
-
High github · GHSA-v87r-6q3f-2j67 · CVSS 7.8GitPython: Newline injection in config_writer().set_value() enables RCE via core.hooksPath
-
High nvd · CVE-2026-42345 · CVSS 7.7CVE-2026-42345: FastGPT is an AI Agent building platform. In versions 4.14.11 and prior, FastGPT's isInternalAddress() function in packa
-
High nvd · CVE-2026-40068 · CVSS 7.7CVE-2026-40068: In versions 2.1.63 through 2.1.83 of Claude Code, the folder trust determination logic used the git worktree commondir f
-
High github · GHSA-9vvh-qmjx-p4q8 · CVSS 7.6Open WebUI's Base Model Routing Bypasses Access Control via Model Chaining
-
High github · GHSA-gphh-9q3h-jgpp · CVSS 7.5banks has Critical Remote Code Execution (RCE) via Jinja2 SSTI
-
High nvd · CVE-2026-33111 · CVSS 7.5CVE-2026-33111: Improper neutralization of special elements used in a command ('command injection') in Copilot Chat (Microsoft Edge) all
-
High nvd · CVE-2026-26129 · CVSS 7.5CVE-2026-26129: Improper neutralization of special elements in M365 Copilot allows an unauthorized attacker to disclose information over
-
High nvd · CVE-2026-26164 · CVSS 7.5CVE-2026-26164: Improper neutralization of special elements in output used by a downstream component ('injection') in M365 Copilot allow
-
High github · GHSA-c4rq-3m3g-8wgx · CVSS 7.5Nokogiri CSS selector tokenizer has regular expression backtracking
-
High github · GHSA-9pgh-j74g-qj6m · CVSS 7.3Open WebUI Vulnerable to Arbitrary File Upload and Path Traversal
-
High github · GHSA-4vg5-rp28-gvjf · CVSS 7.3Open WebUI has Improper Authorization Control
-
High github · GHSA-gf5m-wcrh-7928 · CVSS 7.3open-webui Vulnerable to Stored XSS via Model Description
-
High nvd · CVE-2026-44694 · CVSS 7.2CVE-2026-44694: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. From
-
High nvd · CVE-2026-42339 · CVSS 7.1CVE-2026-42339: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. In versions 0.1
-
High nvd · CVE-2026-41432 · CVSS 7.1CVE-2026-41432: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. Prior to versio
-
High github · GHSA-hp5m-24vp-vq2q · CVSS 7.1Open WebUI's responses passthrough endpoint lacks access control authorization
-
Medium nvd · CVE-2026-42138 · CVSS 6.9CVE-2026-42138: Dify is an open-source LLM app development platform. Prior to version 1.13.1, using the method POST /api/files/upload, a
-
Medium github · GHSA-3r68-x3xc-rxpg · CVSS 6.8wireshark-mcp vulnerable to arbitrary file write via export_objects when WIRESHARK_MCP_ALLOWED_DIRS is not configured
-
Medium github · GHSA-h36f-rqpx-j5wx · CVSS 6.5Open WebUI has Unauthorized File and Knowledge Base Content Access via RAG Vector Search
-
Medium github · GHSA-37j4-88rp-2f6h · CVSS 6.5Electerm's full process.env exposed to renderer via window.pre.env
-
Medium nvd · CVE-2026-41691 · CVSS 6.5CVE-2026-41691: Copilot said: i18nextify is a JavaScript library that adds i18nextify is a JavaScript library that adds website internat
-
Medium github · GHSA-q4w7-56hr-83rm · CVSS 6.5Nginx-UI Settings API Exposes Protected Secrets
-
Medium github · GHSA-7jrr-xw9c-mj39 · CVSS 6.5Nginx-UI: Authenticated settings disclosure exposes node.secret and enables trusted-node authentication abuse, backup exfiltration, and restore-based nginx-ui state rollback
-
Medium nvd · CVE-2026-42092 · CVSS 6.5CVE-2026-42092: titra is an open source time tracking project. In version 0.99.52, the globalsettings Meteor publication returns all glo
-
Medium nvd · CVE-2026-44284 · CVSS 6.3CVE-2026-44284: FastGPT is an AI Agent building platform. Prior to version 4.14.17, FastGPT had an inconsistent SSRF protection gap in M
-
Medium nvd · CVE-2026-42344 · CVSS 6.3CVE-2026-42344: FastGPT is an AI Agent building platform. In versions 4.14.11 and prior, FastGPT's isInternalAddress() function in packa
-
Medium nvd · CVE-2026-42343 · CVSS 6.3CVE-2026-42343: FastGPT is an AI Agent building platform. In versions 4.14.13 and prior, the code-sandbox component suffers from insuffi
-
Medium github · GHSA-xq4x-622m-q8fq · CVSS 6.2LobeHub has a Cross-Site Scripting issue that escalates to Remote Code Execution
-
Medium nvd · CVE-2026-41950 · CVSS 6.0CVE-2026-41950: Dify before version 1.14.0 contains an authorization bypass vulnerability that allows authenticated users to read the fu
-
Medium github · GHSA-pgf8-2hgj-grqg · CVSS 5.5Vercel: Non-interactive mode includes CLI arguments in suggested command output
-
Medium github · GHSA-rcvp-6fgw-c7fh · CVSS 5.4Open WebUI's Ollama Model Access Control Bypass via /api/generate, /api/embed, /api/embeddings, and /api/show
-
Medium nvd · CVE-2026-41495 · CVSS 5.3CVE-2026-41495: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. Prior
-
Medium nvd · CVE-2026-41487 · CVSS 5.3CVE-2026-41487: Langfuse is an open source large language model engineering platform. From version 3.68.0 to before version 3.167.0, the
-
Medium nvd · CVE-2026-42077 · CVSS 5.2CVE-2026-42077: Evolver is a GEP-powered self-evolving engine for AI agents. Prior to version 1.69.3, a prototype pollution vulnerabilit
-
Medium nvd · CVE-2026-41686 · CVSS 4.8CVE-2026-41686: Claude SDK for TypeScript provides access to the Claude API from server-side TypeScript or JavaScript applications. From
-
Medium github · GHSA-39j6-4867-gg4w · CVSS 4.7utcp-http vulnerable to SSRF via attacker-controlled OpenAPI servers[0].url in HTTP communication protocol
-
Medium nvd · CVE-2026-42080 · CVSS 4.6CVE-2026-42080: PPTAgent is an agentic framework for reflective PowerPoint generation. Prior to commit 418491a, there is an arbitrary fi
-
Medium nvd · CVE-2026-42078 · CVSS 4.6CVE-2026-42078: PPTAgent is an agentic framework for reflective PowerPoint generation. Prior to commit 418491a, PPTAgent is vulnerable t
-
Medium nvd · CVE-2026-42456 · CVSS 4.3CVE-2026-42456: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
Medium nvd · CVE-2026-42282 · CVSS 4.3CVE-2026-42282: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. Prior
-
Medium nvd · CVE-2026-42276 · CVSS 4.3CVE-2026-42276: Onyx is an open-source AI platform. Prior to versions 3.0.9, 3.1.6, and 3.2.6, the POST /chat/stop-chat-session/{chat_se
-
Low osv · GHSA-pjwx-r37v-7724 · CVSS 3.1LangChain vulnerable to unsafe deserialization of attacker-controlled objects through overly broad `load()` allowlists
-
Low osv · GHSA-mcfx-4vc6-qgxv · CVSS 3.1BentoML has Information Disclosure in `bentoml build` via symlink traversal in the build context
-
Low osv · GHSA-98h9-4798-4q5v · CVSS 3.1Diffusers has a `trust_remote_code` bypass via `custom_pipeline` and local custom components
-
Low osv · GHSA-83vm-p52w-f9pw · CVSS 3.1vLLM: extract_hidden_states speculative decoding crashes server on any request with penalty parameters
-
Low osv · GHSA-hpv8-x276-m59f · CVSS 3.1vLLM Vulnerable to Remote DoS via Special-Token Placeholders
-
Low github · GHSA-jv4p-mhmp-69vw · CVSS 2.6Langchain-Chatchat Uses Insufficiently Random Values
-
Low github · GHSA-wmvv-fhm6-w34x · CVSS 2.6Langchain-Chatchat Uses a Broken or Risky Cryptographic Algorithm
-
Low github · GHSA-x229-w2j4-h748 · CVSS 2.6Langchain-Chatchat has a Race Condition in its OpenAI-Compatible File Upload API
-
Low nvd · CVE-2026-44286 · CVSS 2.3CVE-2026-44286: FastGPT is an AI Agent building platform. Prior to version 4.14.17, an unauthenticated Server-Side Request Forgery (SSRF
-
Low nvd · CVE-2026-7844 · CVSS 2.1CVE-2026-7844: A vulnerability was detected in chatchat-space Langchain-Chatchat up to 0.3.1.3. This vulnerability affects the function
-
Low nvd · CVE-2026-7847 · CVSS 1.2CVE-2026-7847: A vulnerability was found in chatchat-space Langchain-Chatchat up to 0.3.1.3. The affected element is the function _get_
-
Low nvd · CVE-2026-7846 · CVSS 1.2CVE-2026-7846: A vulnerability has been found in chatchat-space Langchain-Chatchat up to 0.3.1.3. Impacted is the function files of the
-
Low nvd · CVE-2026-7845 · CVSS 1.2CVE-2026-7845: A flaw has been found in chatchat-space Langchain-Chatchat up to 0.3.1.3. This issue affects the function PIL.Image.toby
-
High github · GHSA-cmrh-wvq6-wm9r · CVSS 0.0n8n-mcp webhook and API client paths has an authenticated SSRF
-
Critical github · GHSA-2h64-c999-c9r6 · CVSS 0.0SiYuan Affected by Stored XSS via Attribute View Name to Electron Renderer RCE
-
High github · GHSA-52cq-7v8r-62c6 · CVSS 0.0gmaps-mcp's unauthenticated HTTP transport allows unlimited Google Maps API calls at operator expense
-
Critical github · GHSA-w37p-236h-pfx3 · CVSS 0.0Compromise of PyTorch Lightning PyPi Package Versions
-
Low github · GHSA-ff9q-rm55-q7qr · CVSS 0.0diesel-async may expose uninitialized padding bytes for MySQL temporal columns
-
High github · GHSA-mgx6-5cf9-rr43 · CVSS 0.0Keras vulnerable to DoS via Malicious .keras Model (HDF5 Shape Bomb Causes Petabyte Allocation in KerasFileEditor)
-
High github · GHSA-gj2p-p9m4-c8gw · CVSS 0.0Craft CMS's Missing Authorization in GraphQL Address Resolver Allows Cross-Scope PII Disclosure
-
High github · GHSA-v5c3-6wvc-pc2q · CVSS 0.0QuantumNous/new-api has an SSRF Filter Bypass via 0.0.0.0
-
Low github · GHSA-8cxw-cc62-q28v · CVSS 0.0ciguard: discover_pipeline_files follows symlinks out of scan root
-
Medium github · GHSA-xh8f-g2qw-gcm7 · CVSS 0.0MinIO vulnerable to Path Traversal via msgpack Body in `ReadMultiple` Storage-REST Endpoint
-
Critical github · GHSA-rpfr-x88x-xwcw · CVSS 0.0Pelican Web UI Affected by a Privilege Escalation Attack
-
Low github · GHSA-p4gq-3vxj-f4jq · CVSS 0.0Argo Affected by SSO RBAC Delegation Nil Pointer Dereference DoS (gatekeeper.go)