VulnWatch Weekly: Agentic RCE & Supply Chain Risks Surge
Critical vulnerabilities in Langflow, vLLM, and MCP servers highlight severe risks in AI tooling. Immediate patching required for agentic platforms and inference engines to prevent RCE and supply chain compromise.
VulnWatch Weekly Retrospective: June 22–28, 2026
Week in Review
This week marked a significant escalation in vulnerabilities affecting the AI agent ecosystem, with multiple critical remote code execution (RCE) flaws discovered in popular orchestration platforms like Langflow and ToolJet. The dominant themes emerging from the 120 tracked entries are the fragility of agentic tool invocation, severe supply chain risks in model serving infrastructure, and persistent authentication bypasses in multi-tenant AI platforms. The single most urgent item is the cluster of critical vulnerabilities in Langflow (CVE-2026-10561, CVE-2026-48519), which allow unauthenticated attackers to execute arbitrary code on host systems running AI workflows. Security teams must prioritize patching agentic frameworks and auditing their model serving pipelines for dependency confusion attacks immediately.
Top Items of the Week
The following entries represent the highest impact risks identified this week. These vulnerabilities offer direct paths to system compromise, data exfiltration, or supply chain poisoning.
-
CVE-2026-10561 (IBM Langflow)
- Severity: Critical (CVSS 10.0)
- Component: IBM Langflow OSS
- Impact: Authentication bypass combined with improper Python isolation allows unauthenticated attackers to execute arbitrary code on the host.
- Action: Upgrade to Langflow 1.9.3 or later immediately. Isolate Langflow instances from critical network segments.
- Source: NVD
-
GHSA-73cv-556c-w3g6 (mcp-pinot)
- Severity: Critical (CVSS 10.0)
- Component: mcp-pinot Server
- Impact: Unauthenticated tool invocation via default OAuth settings and host binding allows full control over MCP tools.
- Action: Upgrade to v3.1.0. Ensure OAuth is enabled and HTTP binds to localhost only.
- Source: GitHub Advisory
-
CVE-2026-12537 (Google Gemini CLI)
- Severity: Critical (CVSS 10.0)
- Component: Google Gemini CLI
- Impact: Improper neutralization in container launcher allows pre-sandbox host-level code execution via malicious .env files.
- Action: Update Gemini CLI to 0.39.1+ and run-gemini-cli Action to 0.1.22+. Audit CI/CD pipelines for untrusted env files.
- Source: NVD
-
CVE-2026-54232 (vLLM)
- Severity: High (CVSS 8.8)
- Component: vLLM Dockerfile
- Impact: Dependency confusion attack via
flashinfer-jit-cacheallows arbitrary code execution as root during Docker build. - Action: Upgrade to vLLM 0.22.1+. Pin dependencies and audit custom indexes in build pipelines.
- Source: NVD
-
CVE-2026-55413 (ToolJet)
- Severity: Critical (CVSS 9.4)
- Component: ToolJet Platform
- Impact: Authenticated users can overwrite globally-shared marketplace plugins with arbitrary JavaScript, achieving RCE and supply chain compromise.
- Action: Upgrade to ToolJet 3.20.178-lts. Review plugin permissions and restrict builder roles.
- Source: NVD
-
CVE-2026-50548 / CVE-2026-50549 (Cursor)
- Severity: Critical (CVSS 9.3)
- Component: Cursor Editor
- Impact: Sandbox escape via working directory manipulation and symlink attacks allows agents to write arbitrary files outside the workspace.
- Action: Update Cursor to v3.0. Disable agent terminal commands where possible.
- Source: NVD
-
GHSA-98x5-vq43-vc5p (semantic-router/litellm)
- Severity: Critical (Description)
- Component: semantic-router, LiteLLM
- Impact: Compromised
litellmwheel exfiltrates credentials and secrets via.pthfile execution on import. - Action: Audit Python environments for
litellm==1.82.8. Use lockfiles and verify wheel hashes. - Source: GitHub Advisory
-
CVE-2026-53753 (Crawl4AI)
- Severity: Critical (CVSS 9.8)
- Component: Crawl4AI
- Impact: Sandbox escape via AST validator bypass allows arbitrary code execution via crafted extraction schemas.
- Action: Upgrade to Crawl4AI 0.8.7. Disable JWT auth only if strictly internal.
- Source: NVD
Agentic RCE & Tooling Risks
The most alarming trend this week is the prevalence of Remote Code Execution (RCE) vulnerabilities within AI agent orchestration platforms. Langflow, a popular tool for building AI workflows, suffered a catastrophic week with multiple critical CVEs. CVE-2026-10561 is particularly severe because it combines an authentication bypass with improper isolation of Python execution. This means an attacker does not need valid credentials to compromise the host system; they simply need network access to the Langflow instance. Furthermore, CVE-2026-48519 exposes the "Shareable Playground" feature, allowing unauthenticated users to execute arbitrary Python code within nodes of a public flow. This highlights a fundamental design flaw in exposing agent execution capabilities to untrusted users without strict sandboxing.
Similarly, ToolJet (CVE-2026-55413) demonstrated how low-privilege users can compromise the entire platform supply chain. By overwriting globally-shared marketplace plugins, an attacker can ensure their malicious JavaScript executes server-side whenever any user triggers a query using that plugin. This is a classic supply chain attack vector enabled by insufficient isolation between tenant configurations and global resources. The Cursor editor vulnerabilities (CVE-2026-50548, CVE-2026-50549) further illustrate the risk of agentic tools having filesystem access. Even with a sandbox, flaws in how working directories and symlinks are handled allowed agents to write files outside the intended workspace, potentially overwriting critical system configurations or exfiltrating data.
The Model Context Protocol (MCP) is also emerging as a high-risk surface. The mcp-pinot vulnerability (GHSA-73cv-556c-w3g6) showed that default configurations often leave MCP servers bound to 0.0.0.0 without OAuth, allowing unauthenticated tool invocation. As organizations adopt MCP to connect LLMs to data sources, the security of these servers becomes paramount. We also saw issues in the GitHub MCP Server (CVE-2026-48529) where lockdown mode failed due to singleton confusion, and the Foreman MCP Server (CVE-2026-12112) which allowed session hijacking. These indicate that the MCP ecosystem is maturing rapidly but lacks consistent security baselines.
Model Serving & Supply Chain Integrity
Infrastructure supporting model inference faced significant supply chain and authentication challenges. vLLM, a critical component for high-throughput LLM serving, had a dependency confusion vulnerability (CVE-2026-54232) in its Dockerfile. Because the flashinfer-jit-cache package was not registered on PyPI but was installed via a custom index with an "unsafe-best-match" strategy, an attacker could register the package on PyPI and inject malicious code during the build process. This compromises every container image built thereafter, enabling persistent backdoors in production inference clusters.
Additionally, the semantic-router advisory (GHSA-98x5-vq43-vc5p) highlighted a compromised litellm wheel (version 1.82.8) that executed code on interpreter startup via a .pth file. This is a severe supply chain incident affecting any project depending on litellm without strict version pinning. The wheel exfiltrated environment variables, cloud credentials, and SSH keys. This serves as a stark reminder that AI infrastructure relies heavily on the Python ecosystem, which remains vulnerable to dependency confusion and package poisoning.
Authentication bypasses in model serving were also prevalent. CVE-2026-48746 in vLLM allowed attackers to bypass the OpenAI API AuthenticationMiddleware due to trust issues in ASGI web servers. This means protected inference endpoints could be accessed without an API key, leading to unauthorized usage, cost inflation, or potential prompt injection attacks against internal models. Ollama also faced information disclosure risks (CVE-2026-5757) in its quantization engine, allowing heap memory exfiltration. These vulnerabilities underscore the need for rigorous network segmentation around inference endpoints; they should never be exposed directly to the public internet without a robust API gateway.
Authentication & Multi-Tenancy Failures
A recurring theme across AI application platforms is the failure to properly enforce multi-tenancy and authorization. Langflow appeared again in this category with CVE-2026-55255 (IDOR) and CVE-2026-33760 (BOLA), where authenticated users could access or modify other users' flows and data simply by guessing resource IDs. Open WebUI (CVE-2026-54009, CVE-2026-54019) and LibreChat (CVE-2026-54027, CVE-2026-54029) exhibited similar Broken Object Level Authorization (BOLA) issues. In LibreChat, users could upload files to agents they did not own or delete other users' messages.
These vulnerabilities suggest that AI platform developers are prioritizing feature velocity over security governance. The complexity of managing state across agents, conversations, and knowledge bases often leads to missed authorization checks on secondary endpoints. For CISOs, this means that enabling "collaboration" features like shared playgrounds or public flows should be treated as high-risk decisions. Multi-tenancy must be enforced at the database query level, not just in the API middleware. The prevalence of these issues across Langflow, LibreChat, and Open WebUI indicates a systemic problem in the open-source AI application layer that requires defensive configuration rather than relying on vendor patches alone.
Data Leakage & SSRF in AI Crawlers
AI agents designed to interact with the web introduce significant Server-Side Request Forgery (SSRF) risks. Crawl4AI (CVE-2026-56266, CVE-2026-53755) had multiple SSRF vulnerabilities where internal address blocklists could be bypassed using IPv6-mapped IPv4 addresses or proxy configurations. This allows attackers to force the AI crawler to access internal cloud metadata services (e.g., AWS IMDS) or internal APIs. AutoGPT (CVE-2026-56663) similarly failed to normalize IPv4-mapped IPv6 addresses before checking blocked ranges.
Data leakage was also a concern beyond SSRF. The compromised LiteLLM wheel mentioned earlier directly targeted secret exfiltration. Additionally, vLLM (CVE-2026-53923) had an integer truncation bug in GGUF dequantize kernels that could leak residual GPU memory from other tenants in multi-tenant deployments. This is a novel side-channel risk specific to GPU sharing in AI clouds. Organizations running multi-tenant inference services must ensure that memory zeroing is enforced between context switches to prevent cross-tenant data leakage.
Known Exploited Status
Based on the data collected this week, none of the identified vulnerabilities are currently marked as known exploited (is_exploited=true) in public tracking systems. However, the severity of the RCE vulnerabilities in Langflow and the supply chain compromise in LiteLLM suggests they are prime candidates for immediate weaponization. The lack of public exploitation data should not induce complacency; the availability of proof-of-concept details in advisories lowers the barrier for opportunistic attackers.
What to Do This Week
- Patch Agentic Platforms: Immediately upgrade Langflow to 1.9.3+, ToolJet to 3.20.178-lts, and Cursor to v3.0. These patches address critical RCE vectors.
- Audit Python Dependencies: Scan all environments for
litellm==1.82.8andflashinfer-jit-cache. Enforce lockfiles and verify wheel hashes against known good repositories. - ** Harden MCP Servers:** Ensure all MCP servers (Pinot, Foreman, GitHub) are bound to localhost (
127.0.0.1) and require OAuth or token authentication. Disable HTTP exposure unless strictly necessary. - Review Inference Security: Update vLLM to 0.22.1+ to fix auth bypass and supply chain issues. Place inference endpoints behind an API gateway with strict rate limiting and authentication.
- Disable Public Features: Temporarily disable "Shareable Playground" or public flow features in Langflow and similar platforms until authorization models are verified.
- Network Segmentation: Isolate AI crawler services (Crawl4AI, AutoGPT) from internal networks. Use egress proxies to enforce allowlists on outbound requests.
What to Watch Next Week
Next week, we will be monitoring the adoption rate of the patches released for Langflow and vLLM, as telemetry suggests these platforms are widely deployed in production. We are also tracking potential follow-on vulnerabilities in the Model Context Protocol (MCP) ecosystem as more vendors integrate MCP servers. Expect increased scrutiny on AI agent sandboxing mechanisms, particularly around filesystem access and tool invocation permissions. Finally, keep an eye on supply chain advisories for Python AI packages, as the LiteLLM incident may trigger a wave of audits across the dependency graph.
Covered entries (120)
-
Critical github · GHSA-73cv-556c-w3g6 · CVSS 10.0mcp-pinot: Unauthenticated tool invocation via default oauth_enabled=False + host 0.0.0.0 bind
-
Critical nvd · CVE-2026-12537 · CVSS 10.0CVE-2026-12537: Improper Neutralization used in an OS Command in the container launcher in Google Gemini CLI (versions prior to 0.39.1)
-
Critical nvd · CVE-2026-10561 · CVSS 10.0CVE-2026-10561: IBM Langflow OSS 1.0.0 through 1.9.3 has an vulnerability due to an improper isolation of Python execution combined with
-
High cisa_kev · CVE-2026-55255 · CVSS 9.9Langflow Authorization Bypass Through User-Controlled Key Vulnerability
-
Critical github · GHSA-f6m5-xw2g-xc4x · CVSS 9.9Incus has an arbitrary file write on its client due to trusted image hash
-
Critical github · GHSA-v6mj-8pf4-hhw4 · CVSS 9.9Incus has an argument injection in backup compression algorithm leading to AFW and ACE
-
Critical nvd · CVE-2026-53753 · CVSS 9.8CVE-2026-53753: Crawl4AI is an open-source LLM friendly web crawler & scraper. Prior to 0.8.7, the _safe_eval_expression() function in t
-
Critical nvd · CVE-2026-7664 · CVSS 9.8CVE-2026-7664: IBM Langflow OSS 1.0.0 through 1.8.4 could allow unauthenticated attackers to access protected MCP project resources and
-
Critical nvd · CVE-2026-55447 · CVSS 9.6CVE-2026-55447: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.9.2, by controlling a files th
-
Critical nvd · CVE-2026-48519 · CVSS 9.6CVE-2026-48519: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.9.2, the "Shareable Playground
-
Critical github · GHSA-w7mq-r738-x278 · CVSS 9.6Budibase has arbitrary file read by workspace-builder via PWA-zip symlink upload
-
Critical nvd · CVE-2026-49468 · CVSS 9.5CVE-2026-49468: LiteLLM is a proxy server (AI Gateway) to call LLM APIs in OpenAI (or native) format. Prior to 1.84.0, This vulnerabili
-
Critical nvd · CVE-2026-55413 · CVSS 9.4CVE-2026-55413: ToolJet is the open-source foundation am AI-native platform for building and deploying internal tools, workflows and AI
-
Critical nvd · CVE-2026-11746 · CVSS 9.4CVE-2026-11746: A vulnerability has been identified in centraldogma-server versions prior to 0.84.0, where enabling ZooKeeper replicatio
-
Critical nvd · CVE-2026-56062 · CVSS 9.3CVE-2026-56062: Unauthenticated SQL Injection in Quotes llama <= 3.1.5 versions.
-
Critical nvd · CVE-2025-71336 · CVSS 9.3CVE-2025-71336: Flowise before 3.0.6 (affected versions 2.2.7-patch.1 and earlier) contains an unsandboxed remote code execution vulnera
-
Critical nvd · CVE-2025-71334 · CVSS 9.3CVE-2025-71334: Flowise before 3.0.6 (affected versions 2.2.8 and earlier) contains an arbitrary file access vulnerability due to missin
-
Critical nvd · CVE-2026-50549 · CVSS 9.3CVE-2026-50549: Cursor is a code editor built for programming with AI. Prior to 3.0, Cursor runs agent terminal commands in a sandbox by
-
Critical nvd · CVE-2026-50548 · CVSS 9.3CVE-2026-50548: Cursor is a code editor built for programming with AI. Prior to 3.0, Cursor runs agent terminal commands in a sandbox by
-
Critical nvd · CVE-2026-55450 · CVSS 9.3CVE-2026-55450: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.9.1, unauthenticated users can
-
Critical nvd · CVE-2026-56266 · CVSS 9.2CVE-2026-56266: Crawl4AI before 0.8.7 contains a server-side request forgery vulnerability in the /crawl, /crawl/stream, /md, and /llm e
-
Critical github · GHSA-jv46-xfwm-36j7 · CVSS 9.1Relyra SAML SignatureValue not cryptographically verified -> authentication bypass
-
Critical nvd · CVE-2026-48746 · CVSS 9.1CVE-2026-48746: vLLM is an inference and serving engine for large language models (LLMs). From 0.3.0 until 0.22.0, a vulnerability in AS
-
Critical github · GHSA-9m6g-wc8r-q59c · CVSS 9.1scimPatch vulnerable to prototype pollution via unfiltered keys in patch
-
High nvd · CVE-2026-58049 · CVSS 8.8CVE-2026-58049: FFmpeg's RASC video decoder (decode_dlta in libavcodec/rasc.c) performs 32-bit reads and writes at the row cursor before
-
High nvd · CVE-2026-48720 · CVSS 8.8CVE-2026-48720: Warp is an agentic development environment. From 0.2025.03.05.08.02.stable_00 until 0.2026.05.06.15.42.stable_01, Warp a
-
High nvd · CVE-2026-48732 · CVSS 8.8CVE-2026-48732: Warp is an agentic development environment. From 0.2023.03.21.08.02.stable_00 until 0.2026.05.06.15.42.stable_01, Warp c
-
High nvd · CVE-2026-48704 · CVSS 8.8CVE-2026-48704: Warp is an agentic development environment. From 0.2023.10.24.08.03.stable_00 until 0.2026.05.06.15.42.stable_01, Warp m
-
High nvd · CVE-2026-33760 · CVSS 8.8CVE-2026-33760: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.9.0, Langflow's /api/v1/monito
-
High nvd · CVE-2026-54232 · CVSS 8.8CVE-2026-54232: vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.22.1, the vLLM Dockerfile is vulner
-
High nvd · CVE-2025-71324 · CVSS 8.7CVE-2025-71324: Flowise before 3.0.6 contains an arbitrary file read vulnerability in the chatId parameter of the /api/v1/get-upload-fil
-
High nvd · CVE-2026-7574 · CVSS 8.7CVE-2026-7574: Anthropic Claude Desktop Cowork VM image handling (confirmed across v1.1348.0 through v1.2278.0, including v1.1348.0, v1
-
High nvd · CVE-2026-56274 · CVSS 8.7CVE-2026-56274: Flowise before 3.1.2 contains multiple OS command injection vulnerabilities in the Custom MCP Server feature due to inco
-
High nvd · CVE-2026-48721 · CVSS 8.6CVE-2026-48721: Warp is an agentic development environment. From 0.2025.10.08.08.12.stable_00 until 0.2026.05.06.15.42.stable_01, Warp c
-
High nvd · CVE-2026-53755 · CVSS 8.6CVE-2026-53755: Crawl4AI is an open-source LLM friendly web crawler & scraper. Prior to 0.8.9, the Docker API server applied its SSRF de
-
High nvd · CVE-2026-56663 · CVSS 8.5CVE-2026-56663: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
High nvd · CVE-2026-55412 · CVSS 8.3CVE-2026-55412: ToolJet is the open-source foundation am AI-native platform for building and deploying internal tools, workflows and AI
-
High nvd · CVE-2026-44016 · CVSS 8.2CVE-2026-44016: Docling simplifies document processing by parsing diverse formats and providing integrations with the generative AI ecos
-
High nvd · CVE-2026-48725 · CVSS 8.1CVE-2026-48725: Warp is an agentic development environment. From 0.2021.04.25.23.05.stable_00 until 0.2026.05.06.15.42.stable_01, Warp a
-
High nvd · CVE-2025-66336 · CVSS 8.1CVE-2025-66336: Apache Doris MCP Server contains a SQL injection vulnerability in a metadata query path. A user-controlled database name
-
High nvd · CVE-2026-54030 · CVSS 8.0CVE-2026-54030: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.5, LibreChat's MCP OAuth implem
-
High nvd · CVE-2026-48719 · CVSS 8.0CVE-2026-48719: Warp is an agentic development environment. From 0.2025.08.06.08.12.stable_00 until 0.2026.05.06.15.42.stable_01, Warp c
-
High nvd · CVE-2026-48731 · CVSS 7.8CVE-2026-48731: Warp is an agentic development environment. From 0.2024.02.20.08.01.stable_01 until 0.2026.05.06.15.42.stable_01, Warp c
-
High nvd · CVE-2026-48703 · CVSS 7.8CVE-2026-48703: Warp is an agentic development environment. From 0.2025.04.09.08.11.stable_00 until 0.2026.05.06.15.42.stable_01, Warp c
-
High nvd · CVE-2026-12112 · CVSS 7.8CVE-2026-12112: A flaw was found in the foreman-mcp-server. A session management vulnerability in the MCP Server allows unauthenticated
-
High nvd · CVE-2026-54555 · CVSS 7.8CVE-2026-54555: rtk filters and compresses command outputs before they reach your LLM context. Prior to 0.42.2, the permission splitter
-
High nvd · CVE-2026-54033 · CVSS 7.7CVE-2026-54033: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, LibreChat allows users t
-
High nvd · CVE-2026-33235 · CVSS 7.7CVE-2026-33235: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
High nvd · CVE-2026-54699 · CVSS 7.7CVE-2026-54699: Warp is an agentic development environment. From 0.2024.03.12.08.02.stable_01 until 0.2026.05.06.15.42.stable_01, Warp c
-
High nvd · CVE-2025-71340 · CVSS 7.6CVE-2025-71340: picklescan through 0.0.26 fails to detect malicious pickle files that invoke idlelib.pyshell.ModifiedInterpreter.runcode
-
High nvd · CVE-2026-55583 · CVSS 7.6CVE-2026-55583: Twenty is an open-source CRM (customer relationship management) platform. Prior to 2.9.0, Twenty was vulnerable to a cro
-
High github · GHSA-5wx6-mg75-v57r · CVSS 7.5pnpm: Manifest identity spoof satisfies allowBuilds and runs attacker lifecycle
-
High nvd · CVE-2026-5757 · CVSS 7.5CVE-2026-5757: Unauthenticated remote information disclosure vulnerability in Ollama's model quantization engine allows an attacker to
-
High nvd · CVE-2026-44017 · CVSS 7.5CVE-2026-44017: Docling simplifies document processing by parsing diverse formats and providing integrations with the generative AI ecos
-
High nvd · CVE-2026-44020 · CVSS 7.5CVE-2026-44020: Docling simplifies document processing by parsing diverse formats and providing integrations with the generative AI ecos
-
High nvd · CVE-2026-53754 · CVSS 7.5CVE-2026-53754: Crawl4AI is an open-source LLM friendly web crawler & scraper. Prior to 0.8.8, the Docker API server's SSRF protection (
-
High nvd · CVE-2026-55446 · CVSS 7.5CVE-2026-55446: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.0.19, an attacker can send a /
-
High nvd · CVE-2026-41523 · CVSS 7.5CVE-2026-41523: vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.22.0, an assert-based security chec
-
High nvd · CVE-2025-66389 · CVSS 7.5CVE-2025-66389: GitHub Copilot 1.372.0 allows filesystem access outside of a workspace folder (without user approval) via a file-handler
-
High github · GHSA-v7j5-vc4m-723w · CVSS 7.3Budibase has an Account Impersonation Issue — Chat Identity Link Hijacking via Missing Consent & CSRF
-
High nvd · CVE-2026-10845 · CVSS 7.3CVE-2026-10845: IBM WebSphere Application Server 8.5 and 9.0 could allow a remote attacker to bypass authentication and gain unauthorize
-
High github · GHSA-72r4-9c5j-mj57 · CVSS 7.1pnpm: `patch-remove` could delete project-selected files outside the patches directory
-
High github · GHSA-fr4h-3cph-29xv · CVSS 7.1pnpm: Hoisted install imports lockfile alias outside node_modules
-
High github · GHSA-v23m-ccfg-pq9h · CVSS 7.1pnpm: `stage download` writes outside its destination directory via manifest name/version traversal
-
High nvd · CVE-2026-47214 · CVSS 7.1CVE-2026-47214: Docling simplifies document processing by parsing diverse formats and providing integrations with the generative AI ecos
-
High nvd · CVE-2026-56221 · CVSS 7.1CVE-2026-56221: Cap-go before 12.128.2 contains multiple SQL injection vulnerabilities in cloudflare.ts where user-controlled values fro
-
Medium nvd · CVE-2026-45792 · CVSS 6.9CVE-2026-45792: rtk filters and compresses command outputs before they reach your LLM context. Prior to 0.32.0, RTK (Rust Token Killer)
-
Medium nvd · CVE-2026-54235 · CVSS 6.9CVE-2026-54235: vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.23.1rc0, ll temperature validation
-
Medium nvd · CVE-2026-53655 · CVSS 6.9CVE-2026-53655: node-tar is a full-featured Tar for Node.js. Prior to 7.5.16, tar (node-tar) applies a PAX extended header's size= recor
-
Medium nvd · CVE-2026-9699 · CVSS 6.8CVE-2026-9699: Mattermost Plugins versions <=11.6 10.18.11 11.3.6 11.6.5.0 fail to sanitize error responses from the OpenAI API before
-
Medium github · GHSA-fjqc-hq36-qh5p · CVSS 6.8LangGraph Checkpoint: Unsafe JSON deserialization in checkpoint loading
-
Medium nvd · CVE-2026-55411 · CVSS 6.8CVE-2026-55411: ToolJet is the open-source foundation am AI-native platform for building and deploying internal tools, workflows and AI
-
Medium github · GHSA-x6fg-52vr-hj4w · CVSS 6.5Nezha Monitoring: Authenticated users can claim the dashboard Host through NAT and preempt all dashboard routing
-
Medium nvd · CVE-2026-4339 · CVSS 6.5CVE-2026-4339: Mattermost versions 10.11.x <= 10.11.18, 11.6.x <= 11.6.3, 11.5.x <= 11.5.6 fail to validate attachment URLs against int
-
Medium nvd · CVE-2026-12993 · CVSS 6.5CVE-2026-12993: A flaw was found in Apicurio Registry. The DocumentBuilderAccessor correctly blocks external DTD and schema access but d
-
Medium nvd · CVE-2026-54037 · CVSS 6.5CVE-2026-54037: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, the fix for CVE-2025-710
-
Medium nvd · CVE-2026-54027 · CVSS 6.5CVE-2026-54027: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, the POST /api/files/imag
-
Medium nvd · CVE-2026-54024 · CVSS 6.5CVE-2026-54024: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, the fix for CVE-2024-111
-
Medium nvd · CVE-2026-54019 · CVSS 6.5CVE-2026-54019: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.6, Open
-
Medium nvd · CVE-2026-54009 · CVSS 6.5CVE-2026-54009: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.6, POST
-
Medium nvd · CVE-2026-42867 · CVSS 6.5CVE-2026-42867: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.9.0, Langflow is vulnerable to
-
Medium nvd · CVE-2026-54233 · CVSS 6.5CVE-2026-54233: vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.23.1rc0, vLLM's /v1/audio/transcrip
-
Medium nvd · CVE-2026-47155 · CVSS 6.5CVE-2026-47155: vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.22.0, vLLM's revision pinning contr
-
Medium nvd · CVE-2026-55249 · CVSS 6.3CVE-2026-55249: @rtk-ai/rtk-rewrite transparently rewrites shell commands executed via OpenClaw's exec tool to their RTK equivalents. In
-
Medium nvd · CVE-2026-54021 · CVSS 6.3CVE-2026-54021: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.6, sever
-
Medium nvd · CVE-2026-55423 · CVSS 6.1CVE-2026-55423: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.7.0, the logout button does no
-
Medium nvd · CVE-2026-48520 · CVSS 6.1CVE-2026-48520: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.10.0, the "Shareable Playgroun
-
Medium nvd · CVE-2026-12479 · CVSS 6.1CVE-2026-12479: A path traversal vulnerability exists in keras-team/keras version 3.14.0, specifically in the `DiskIOStore.make` method
-
Medium nvd · CVE-2026-48529 · CVSS 6.0CVE-2026-48529: GitHub MCP Server is GitHub's official MCP Server. From 0.22.0 until 1.1.2, when running in HTTP mode with --lockdown-mo
-
Medium github · GHSA-pjp5-fpmr-3349 · CVSS 6.0GitHub MCP Server: Lockdown mode singleton in HTTP server causes cross-user GraphQL client confusion
-
Medium nvd · CVE-2026-54316 · CVSS 6.0CVE-2026-54316: Claude Code is an agentic coding tool. From 0.2.54 until 2.1.163, because the hostname huggingface.co was pre-approved
-
Medium nvd · CVE-2026-54040 · CVSS 5.9CVE-2026-54040: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, the POST /api/auth/2fa/b
-
Medium nvd · CVE-2026-44018 · CVSS 5.5CVE-2026-44018: Docling simplifies document processing by parsing diverse formats and providing integrations with the generative AI ecos
-
Medium nvd · CVE-2026-44022 · CVSS 5.5CVE-2026-44022: Docling simplifies document processing by parsing diverse formats and providing integrations with the generative AI ecos
-
Medium nvd · CVE-2026-56823 · CVSS 5.4CVE-2026-56823: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
Medium nvd · CVE-2026-54025 · CVSS 5.4CVE-2026-54025: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, there is a vulnerability
-
Medium github · GHSA-hvqh-jw65-wcpq · CVSS 5.4devbridge-autocomplete has XSS in its default formatters: formatGroup and formatResult fail to escape HTML in untrusted inputs
-
Medium nvd · CVE-2025-32394 · CVSS 5.3CVE-2025-32394: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
Medium nvd · CVE-2025-32423 · CVSS 5.3CVE-2025-32423: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
Medium nvd · CVE-2026-54029 · CVSS 5.3CVE-2026-54029: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, the DELETE /api/messages
-
Medium nvd · CVE-2026-54036 · CVSS 5.3CVE-2026-54036: LibreChat is an enhanced ChatGPT clone that supports multiple AI providers. Prior to 0.8.4-rc1, the GET /api/auth/2fa/en
-
Medium nvd · CVE-2026-54236 · CVSS 5.3CVE-2026-54236: vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.23.1rc0, the fix for CVE-2026-22778
-
Medium nvd · CVE-2026-53923 · CVSS 5.3CVE-2026-53923: vLLM is an inference and serving engine for large language models (LLMs). From 0.5.5 until 0.23.1rc0, integer truncation
-
Medium github · GHSA-w856-8p3r-p338 · CVSS 5.3Glances: XML-RPC Server Missing Host Header Validation Enables DNS Rebinding Attack
-
Medium nvd · CVE-2026-55443 · CVSS 5.1CVE-2026-55443: LangChain is a framework for building agents and LLM-powered applications. Prior to 1.3.9, several LangChain components
-
Medium github · GHSA-3qq3-668m-v9mj · CVSS 4.9Gogs has a Denial of Service in repository/wiki file listing web pages
-
Medium nvd · CVE-2026-54686 · CVSS 4.3CVE-2026-54686: Warp is an agentic development environment. From 0.2021.04.25.23.05.stable_00 until 0.2026.05.06.15.42.stable_01, Warp a
-
Medium nvd · CVE-2026-48789 · CVSS 4.3CVE-2026-48789: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
Medium nvd · CVE-2026-57300 · CVSS 4.3CVE-2026-57300: A missing permission check in Jenkins MCP Server Plugin 0.177.v629fdb_2557fe and earlier allows attackers with Item/Read
-
Medium nvd · CVE-2026-54016 · CVSS 4.3CVE-2026-54016: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.6, Open
-
Low osv · PYSEC-2026-227 · CVSS 3.1PYSEC-2026-227
-
Low osv · PYSEC-2026-226 · CVSS 3.1PYSEC-2026-226
-
Low nvd · CVE-2026-12822 · CVSS 1.9CVE-2026-12822: A vulnerability was identified in langflow-ai langflow up to 1.9.3. This affects an unknown function of the component Bu
-
Low nvd · CVE-2026-13493 · CVSS 1.3CVE-2026-13493: A flaw has been found in AIDC-AI ComfyUI-Copilot up to 2.0.28. This issue affects some unknown processing of the file ba
-
Low nvd · CVE-2026-13484 · CVSS 1.3CVE-2026-13484: A vulnerability has been found in MLflow up to 4666cffc7912ea606d592fc38d6a75e2935f65e7. The impacted element is an unkn
-
High github · GHSA-4hf8-5mjm-rfgq · CVSS 0.0Streamable HTTP mode exposes LINE Desktop read/send tools without MCP authentication
-
Low github · GHSA-rp72-5v5q-2446 · CVSS 0.0@cardano402/mcp-server missing spending limits, LAN-exposed HTTP transport, and SSRF via catalog.server.url
-
Critical github · GHSA-98x5-vq43-vc5p · CVSS 0.0semantic-router exposed to compromised litellm wheel (CVE-2026-42208) via unbounded transitive pin
-
Critical github · GHSA-f65r-h4g3-3h9h · CVSS 0.0Backpropagate: backprop ui --auth and backprop ui --share do not enforce authentication
-
Medium github · GHSA-4vp2-6q8c-pvq2 · CVSS 0.0@anthropic-ai/claude-code has an Insecure Temporary File in /copy Command that Enables Response Disclosure and Symlink-Based File Write