VulnWatch Weekly: The Agentic Explosion & The LiteLLM Emergency
This week marks a turning point for AI security as agentic frameworks become the primary attack surface. With a known-exploited vulnerability in LiteLLM and critical RCEs in MCP hubs, immediate patching is required.
Week in Review: The Agentic Explosion & The LiteLLM Emergency
Week of August 31 – September 6, 2026
The dominant theme of this week is the maturation of the "Agentic" attack surface. As organizations move from static chatbots to dynamic, tool-using agents, the vulnerability landscape has shifted dramatically from simple prompt injection to complex orchestration failures, unauthorized tool execution, and supply-chain compromises in agent bundles. The single most urgent item for all CISOs and platform teams is CVE-2026-59822 in BerriAI LiteLLM, which is now confirmed as known-exploited in the wild; this authentication bypass allows unauthenticated attackers to hijack MCP sessions and steal provider credentials. Simultaneously, we are seeing a cascade of critical Remote Code Execution (RCE) vulnerabilities in Model Context Protocol (MCP) hubs and agent runtimes, suggesting that the infrastructure designed to connect LLMs to the real world is currently the weakest link in the AI stack. Immediate action is required to patch agent orchestration layers and audit multi-tenant access controls.
Top Items of the Week
The following entries represent the highest impact risks identified this week. Priority is given to active exploitation, critical severity, and widespread adoption of the affected components.
-
CVE-2026-59822 (BerriAI LiteLLM)
- Severity: High (CVSS 8.8) | Status: KNOWN EXPLOITED
- Component: MCP Streamable HTTP Endpoint
- Impact: Improper authentication allows unauthenticated attackers to establish sessions with arbitrary Bearer tokens, leading to full compromise of upstream provider keys.
- Action: Upgrade LiteLLM immediately to the latest patched version. Rotate all exposed API keys and audit MCP session logs for anomalous token usage.
- Source
-
CVE-2026-79748 (MCPHub)
- Severity: Critical (CVSS 9.9)
- Component: Server Orchestration API (
/api/servers) - Impact: Authenticated non-admin users can spawn arbitrary stdio processes via
child_process.spawndue to missing authorization and command sanitization. This is a trivial path to container or host RCE. - Action: Upgrade MCPHub to v0.12.15+. Implement strict network policies to isolate MCP server processes from internal networks.
- Source
-
CVE-2026-85694 (LaVague)
- Severity: Critical (CVSS 9.2)
- Component:
PythonFromMarkdownExtractor - Impact: Indirect prompt injection via malicious web pages leads to arbitrary Python code execution (
eval) on the operator's host. This validates the "browse-to-rce" threat model. - Action: Disable automatic code execution in LaVague extractors. Sanitize all external URL inputs before processing.
- Source
-
GHSA-79wm-x847-7cvg (Claude Code Templates)
- Severity: High (CVSS 8.8)
- Component: Claude Code Studio Server (
--studio) - Impact: Unauthenticated RCE via shell injection in Express endpoints bound to
0.0.0.0. Any network-accessible instance is vulnerable to immediate takeover. - Action: Stop using
--studiomode in production or bind strictly to localhost with a reverse proxy enforcing authentication. - Source
-
CVE-2026-80098 (Microsoft Copilot Studio)
- Severity: Critical (CVSS 9.3)
- Component: Cryptographic Signature Verification
- Impact: Failure to verify signatures allows unauthorized privilege escalation over the network, potentially allowing attackers to modify bot logic or access sensitive data.
- Action: Apply Microsoft's emergency security update for Copilot Studio immediately.
- Source
-
GHSA-4mvj-m6j5-pmf7 (unstructured)
- Severity: Critical (CVSS 9.3)
- Component: URL Partitioning (
partition()) - Impact: Full-read SSRF allowing access to loopback admin APIs and cloud metadata. Affects LangChain, LlamaIndex, and Chainlit integrations.
- Action: Upgrade
unstructuredlibrary. Implement allow-lists for external URLs and block private IP ranges at the network egress level. - Source
-
CVE-2026-86169 (Axolotl)
- Severity: High (CVSS 8.7)
- Component: Model Loading (
trust_remote_code) - Impact: Defaulting
trust_remote_codetoNoneinstead ofFalseallows malicious Hugging Face models to execute arbitrary code during loading. - Action: Explicitly set
trust_remote_code=Falsein all model loading configurations. Audit base models used in fine-tuning pipelines. - Source
-
GHSA-jrrm-9hc7-2v3h (Omnigent)
- Severity: Critical (CVSS 9.0)
- Component: Agent Bundle Upload
- Impact: Authenticated users can overwrite shared/template agents with malicious bundles containing attacker-controlled stdio servers, leading to RCE in future runner sessions.
- Action: Restrict write permissions on shared agent templates. Implement integrity checks on agent bundles.
- Source
The Agentic Orchestration Crisis
The most alarming trend this week is the sheer volume of critical vulnerabilities in Model Context Protocol (MCP) hubs and agent orchestration layers. As companies rush to deploy agents that can "do things" (access files, run commands, query databases), the software glue holding these systems together—MCPHub, Omnigent, and various custom runners—has proven fragile.
MCPHub alone accounted for six distinct high-severity entries this week. The pattern is consistent: authentication is present, but authorization is absent or flawed. In CVE-2026-79748, any authenticated user could spawn OS processes. In CVE-2026-79750, non-admin users could invoke tools on servers owned by others, breaking multi-tenant isolation. Perhaps most insidiously, CVE-2026-79746 revealed a logic flaw where bearer keys scoped to specific servers granted access to entire groups if any server in the group matched, effectively bypassing least-privilege constraints.
Similarly, Omnigent (GHSA-jrrm-9hc7-2v3h) demonstrated how agent supply chains can be poisoned. By allowing a user to overwrite a "shared" agent template, an attacker ensures that every subsequent session using that template executes their malicious code. This is the agentic equivalent of a compromised CI/CD pipeline.
The root cause across these entries is the assumption that "authenticated" equals "trusted." In agentic systems, the principle of least privilege must be enforced at the tool level, not just the session level. Engineers must assume that any user with login access might be compromised or malicious, and therefore, the agent's ability to execute code or access external resources must be strictly gated by role-based access control (RBAC) that is re-evaluated for every tool invocation.
Indirect Prompt Injection & The "Browse-to-RCE" Reality
Theoretical fears about indirect prompt injection have materialized into concrete, exploitable RCE vectors. This week, we saw multiple instances where an LLM's interaction with untrusted external data led directly to code execution on the host.
LaVague (CVE-2026-85694) is the poster child for this risk. Its PythonFromMarkdownExtractor blindly evaluated Python code found in markdown content fetched from the web. An attacker simply needs to host a webpage with a hidden code block to compromise the agent's host. This confirms that data ingestion pipelines are now execution boundaries. If your agent reads from the web, emails, or untrusted documents, that content must be treated as executable code until proven otherwise.
Eclipse Theia (CVE-2026-82217) and CodeWhale (GHSA-7j5w-7r7x-9v27, GHSA-c6mw-8xh8-gpq6) further illustrate the danger of trusting model outputs for file system operations. In Theia, an agent could be tricked via indirect injection into writing files outside the workspace (e.g., ../.bashrc). In CodeWhale, argument injection in git tools allowed arbitrary file reads and writes. These vulnerabilities highlight that tool arguments derived from LLM output must be strictly validated against an allow-list, not just sanitized. The "intent" of the model is irrelevant; the resulting system call must be constrained by the OS and the application logic.
The SSRF Epidemic in AI Infrastructure
Server-Side Request Forgery (SSRF) remains the most pervasive vulnerability class in AI infrastructure, particularly in components designed to fetch external data or connect to model repositories. This week's entries show that basic URL validation is insufficient against modern bypass techniques.
The unstructured library (GHSA-4mvj-m6j5-pmf7) vulnerability is particularly severe because of its ubiquity in RAG (Retrieval-Augmented Generation) pipelines. The lack of host validation in partition() allows attackers to force the server to read internal metadata endpoints (like AWS EC2 IMDS), exposing cloud credentials.
We also observed sophisticated bypasses involving redirects and DNS rebinding. LLaMA-Factory (CVE-2026-85673) and Ollama (CVE-2026-85180) both failed to re-validate URLs after HTTP redirects or during tensor-layer model pulls. An attacker can provide a benign URL that redirects to a private IP, or use a DNS rebinding attack (as seen in CodeWhale GHSA-6v2g-fpxh-pmmh) to swap the IP address between the validation check and the actual request. Furthermore, MCPHub (CVE-2026-79749) showed that IPv6 transition mechanisms (like NAT64 and Teredo) are often overlooked in blocklists, allowing attackers to tunnel into IPv4 private networks.
The mitigation strategy here must be defense-in-depth: validate URLs at the application layer, block private IP ranges (including IPv6 special ranges) at the library level, and enforce strict egress filtering at the network perimeter to prevent AI services from accessing internal infrastructure.
Supply Chain & Model Loading Risks
The AI supply chain extends beyond just the model weights; it includes the code used to load them, the configuration files parsed at startup, and the dependencies installed to run them.
Axolotl (CVE-2026-86169) highlighted a dangerous default in model loading: trust_remote_code was effectively enabled by default in certain paths, allowing malicious models on Hugging Face to execute code upon loading. This is a reminder that models are not just data; they are potential code carriers.
Configuration file parsing also proved risky. aider (CVE-2026-85674) automatically executed commands defined in .aider.conf.yml upon cloning a repository, turning a simple git clone into an RCE vector. Similarly, CodeWhale (GHSA-gx45-xrj5-g6c4) allowed repository config files to silently enable shell access. These vulnerabilities demonstrate that configuration files in version control must be treated as untrusted code. Auto-execution of config directives should be disabled by default, requiring explicit user consent.
Additionally, Scrapy (GHSA-76g3-c3x4-crvx, CVE-2026-84366) was found to send signed S3 requests over plaintext HTTP by default. For AI data collection pipelines scraping the web, this means credentials and scraped data could be intercepted by network attackers, leading to data poisoning or credential theft.
Known Exploited Vulnerabilities (KEV)
There is one entry this week marked as actively exploited:
- CVE-2026-59822 (BerriAI LiteLLM): This vulnerability allows an unauthenticated attacker to establish an authenticated MCP session using an arbitrary Bearer token. Given LiteLLM's role as a universal proxy for LLM APIs, this flaw allows attackers to intercept traffic, steal API keys, and potentially inject malicious prompts into downstream models. This is a Code Red situation. If you run LiteLLM, patch it now. If you cannot patch immediately, take the service offline or restrict network access to the proxy.
What to Do This Week
- Patch LiteLLM Immediately: Prioritize upgrading BerriAI LiteLLM to the latest version to mitigate CVE-2026-59822. Rotate all API keys managed by the proxy.
- Audit MCP Hubs: If you use MCPHub, Omnigent, or similar orchestration layers, upgrade to the latest versions. Review your RBAC policies to ensure non-admin users cannot register servers or execute tools on behalf of others.
- Disable Auto-Execution: Review your agent frameworks (LaVague, aider, CodeWhale) and disable any features that automatically execute code or shell commands based on config files or external data without explicit user approval.
- Harden Egress: Implement strict egress filtering for your AI infrastructure. Block access to cloud metadata endpoints (169.254.169.254) and internal RFC1918 ranges unless explicitly required. Ensure IPv6 transition addresses are also blocked.
- Validate Model Sources: Enforce
trust_remote_code=Falsein all model loading scripts. Only load models from verified, internal registries where possible.
What to Watch Next Week
Next week, we expect to see more fallout from the "agentic" boom, specifically focusing on memory corruption in vector databases as they scale to handle massive context windows. Additionally, keep an eye on cross-tenant data leakage in multi-tenant LLM platforms; as seen in the Langflow and Helicone entries this week, isolation failures in shared environments are becoming a prime target for attackers looking to steal competitor data or API keys. Finally, watch for new variants of DNS rebinding attacks targeting local AI development tools that expose APIs to localhost.
Covered entries (101)
-
Critical nvd · CVE-2026-79748 · CVSS 9.9CVE-2026-79748: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
Critical nvd · CVE-2026-85216 · CVSS 9.5CVE-2026-85216: MISP contains an authentication bypass vulnerability in its LDAP and LinOTP authentication components due to insufficien
-
High github · GHSA-7j5w-7r7x-9v27 · CVSS 9.3CodeWhale: Argument Injection in `git_show` Tool Allows Arbitrary File Write Without Approval
-
Critical nvd · CVE-2026-80098 · CVSS 9.3CVE-2026-80098: Improper verification of cryptographic signature in Copilot Studio allows an unauthorized attacker to elevate privileges
-
Critical github · GHSA-4mvj-m6j5-pmf7 · CVSS 9.3unstructured: Server-Side Request Forgery in the URL-based partitioning
-
Critical nvd · CVE-2026-85694 · CVSS 9.2CVE-2026-85694: LaVague 0.2.35 contains a remote code execution vulnerability in PythonFromMarkdownExtractor.extract_as_object that eval
-
Critical github · GHSA-jrrm-9hc7-2v3h · CVSS 9.0Omnigent: Shared Agent Bundle Overwrite Leads to Authenticated Runner RCE
-
High nvd · CVE-2026-19298 · CVSS 8.8CVE-2026-19298: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote authenticated attacker to execute arbitrary code due to an au
-
High github · GHSA-79wm-x847-7cvg · CVSS 8.8Claude Code Templates: Unauthenticated OS command injection (RCE) in Claude Code Studio server (--studio)
-
High cisa_kev · CVE-2026-59822 · CVSS 8.8BerriAI LiteLLM Improper Authentication Vulnerability
-
High nvd · CVE-2026-72649 · CVSS 8.8CVE-2026-72649: Deserialization of Untrusted Data (CWE-502) in the Elasticsearch machine learning component can lead to remote code exec
-
High nvd · CVE-2026-79744 · CVSS 8.8CVE-2026-79744: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
High nvd · CVE-2026-82217 · CVSS 8.8CVE-2026-82217: In Eclipse Theia versions 1.73.0 up to but not including 1.75.0, the AI "Agent Mode" file-change tools (writeFileContent
-
High nvd · CVE-2026-86169 · CVSS 8.7CVE-2026-86169: Axolotl through 0.18.0 contains a remote code execution vulnerability in the multipack patch path where trust_remote_cod
-
High nvd · CVE-2026-85686 · CVSS 8.7CVE-2026-85686: ms-swift 4.5.2 contains a server-side request forgery vulnerability in the swift deploy OpenAI-compatible API that fetch
-
High nvd · CVE-2026-85673 · CVSS 8.7CVE-2026-85673: LLaMA-Factory contains a server-side request forgery vulnerability in the OpenAI-compatible API multimodal media URL han
-
High nvd · CVE-2026-85675 · CVSS 8.7CVE-2026-85675: OWL's DocumentProcessingToolkit contains a server-side request forgery vulnerability in the extract_document_content too
-
High nvd · CVE-2026-85664 · CVSS 8.7CVE-2026-85664: Chroma 1.5.9 fails to validate maximum bounds on HNSW index parameters max_neighbors, ef_construction, and ef_search in
-
High nvd · CVE-2026-85666 · CVSS 8.7CVE-2026-85666: OGX (formerly Llama Stack, affected at commit fbe8e0f) contains an unauthenticated server-side request forgery vulnerabi
-
High nvd · CVE-2026-85668 · CVSS 8.7CVE-2026-85668: Xinference (affected commit 4a94832, v3.x) contains an unauthenticated arbitrary-path file read vulnerability in the POS
-
High nvd · CVE-2026-85180 · CVSS 8.7CVE-2026-85180: Ollama fails to validate redirect destinations when pulling tensor-layer models, allowing unauthenticated attackers to r
-
High nvd · CVE-2026-83497 · CVSS 8.7CVE-2026-83497: Unrestricted deserialization of untrusted data in the cursor pagination component in the OpenSearch SQL plugin allows a
-
Critical github · GHSA-6v2g-fpxh-pmmh · CVSS 8.6CodeWhale: SSRF bypass - TOCTOU on DNS failure for DNS pinning
-
High nvd · CVE-2026-19305 · CVSS 8.6CVE-2026-19305: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote attacker to obtain sensitive information due to server-side r
-
High nvd · CVE-2026-84452 · CVSS 8.6CVE-2026-84452: Windows ML CLI is a command line tool for building portable, performant, and high-quality AI models for Windows ML. Prio
-
High nvd · CVE-2026-85674 · CVSS 8.5CVE-2026-85674: aider (aider-chat) automatically loads a .aider.conf.yml configuration file from the root of the git repository it is la
-
High nvd · CVE-2026-85178 · CVSS 8.3CVE-2026-85178: Helicone's VaultManager.getDecryptedProviderKeyById() function in the GET /v1/vault/key/{providerKeyId} endpoint fails t
-
High nvd · CVE-2026-82404 · CVSS 8.3CVE-2026-82404: TOON is a compact, human-readable serialization of JSON data for LLM prompts. Prior to 2.3.1, decoding attacker-controll
-
High nvd · CVE-2026-85730 · CVSS 8.2CVE-2026-85730: smol-toml is a small, fast, and correct TOML parser and serializer. Prior to 1.7.1, parse() can enter an infinite loop w
-
High nvd · CVE-2026-19303 · CVSS 8.1CVE-2026-19303: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote authenticated attacker to delete arbitrary local files or dir
-
High nvd · CVE-2026-84779 · CVSS 8.1CVE-2026-84779: Subscriber Broken Access Control in Agentimus – AI SEO, llms.txt & MCP for AI Agents <= 1.51.0 versions.
-
High nvd · CVE-2026-79746 · CVSS 8.1CVE-2026-79746: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
High github · GHSA-gx45-xrj5-g6c4 · CVSS 7.8CodeWhale: Project config `allow_shell` override enables arbitrary shell command execution via cloned repository
-
High github · GHSA-wrj3-vj8c-784f · CVSS 7.8CodeWhale: rlm_eval auto-approves arbitrary Python execution, bypassing the user's approval policy (RCE)
-
High nvd · CVE-2026-19304 · CVSS 7.7CVE-2026-19304: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote authenticated attacker to obtain sensitive information from i
-
High nvd · CVE-2026-19306 · CVSS 7.7CVE-2026-19306: IBM Langflow OSS 1.0.0 through 1.11.2 allows an authenticated attacker to read arbitrary files from the server filesyste
-
High nvd · CVE-2026-79750 · CVSS 7.7CVE-2026-79750: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
High nvd · CVE-2026-79749 · CVSS 7.6CVE-2026-79749: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
High github · GHSA-h539-c7r8-3xq4 · CVSS 7.5CodeWhale: js_execution leaks parent environment to model context via missing env scrub
-
High github · GHSA-62f5-cp2p-vq95 · CVSS 7.5CodeWhale: Project config `instructions` override enables arbitrary file read into AI system prompt via cloned repository
-
High github · GHSA-w7wx-5q49-r59w · CVSS 7.5CodeWhale: image_analyze follows workspace symlinks, leaking external file bytes
-
High nvd · CVE-2026-19300 · CVSS 7.5CVE-2026-19300: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote attacker to obtain sensitive information due to incomplete sc
-
High nvd · CVE-2026-52130 · CVSS 7.5CVE-2026-52130: llama.cpp b5693 and before is vulnerable to Uncontrolled Recursion in common/json-schema-to-grammar.cpp, resulting in a
-
High nvd · CVE-2026-52132 · CVSS 7.5CVE-2026-52132: llama.cpp through commit 97f06e9, when started with the --reranking flag, allows remote attackers to cause a denial of s
-
High github · GHSA-c6mw-8xh8-gpq6 · CVSS 7.4CodeWhale: Argument Injection in `git_blame` Tool Allows Arbitrary File Read Without Approval
-
High github · GHSA-76g3-c3x4-crvx · CVSS 7.4Scrapy: S3DownloadHandler sends signed S3 requests over plaintext HTTP by default
-
High nvd · CVE-2026-84366 · CVSS 7.4CVE-2026-84366: Scrapy is a high-level web crawling and scraping framework for Python. Prior to 2.17.0, in scrapy/core/downloader/handle
-
High nvd · CVE-2026-81315 · CVSS 7.4CVE-2026-81315: Origin Validation Error vulnerability in ash-project ash_ai allows a malicious web page to bypass the MCP server's DNS-r
-
High nvd · CVE-2026-19592 · CVSS 7.3CVE-2026-19592: OpenAI Codex CLI for Windows, macOS, and Linux and Codex Desktop for Windows and macOS automatically collected Git repos
-
High github · GHSA-f8fg-pg57-v4j8 · CVSS 7.2league/commonmark XSS: `on*` event-handler filter in `AttributesExtension` bypassed with a U+000C form feed
-
High nvd · CVE-2026-85787 · CVSS 7.1CVE-2026-85787: An incomplete list of disallowed inputs in the SQL validation component in Amazon awslabs postgres-mcp-server before ve
-
High nvd · CVE-2026-85689 · CVSS 7.1CVE-2026-85689: llmware 0.4.6 contains an SQL injection vulnerability in the collection-database layer (llmware/resources.py) where filt
-
High nvd · CVE-2026-85670 · CVSS 7.1CVE-2026-85670: tokenizers (Hugging Face) is affected by an out-of-bounds buffer access in BpeBuilder::build (tokenizers/src/models/bpe/
-
High nvd · CVE-2026-85093 · CVSS 7.1CVE-2026-85093: Cheshire Cat AI's GET /memory/collections/{collection_id}/points endpoint fails to apply per-user filtering when retriev
-
High github · GHSA-7mqg-cx4g-x2rf · CVSS 7.1Omnigent Guardrail policy bypass: shell-command parser fails open in policies/builtins/_shell.py
-
High nvd · CVE-2026-84810 · CVSS 7.1CVE-2026-84810: claude-skill-antivirus fails to analyze executable files when scanning local skill directories, reading only SKILL.md wh
-
High github · GHSA-2rx9-3g3h-c2jv · CVSS 7.1pnpm: pacquet trust-lockfile install can create dependency symlinks outside the project
-
High nvd · CVE-2026-79747 · CVSS 7.1CVE-2026-79747: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
High nvd · CVE-2026-79745 · CVSS 7.1CVE-2026-79745: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
High github · GHSA-g29h-pfmp-qp9r · CVSS 7.0CodeWhale: exec_shell_interact sends LLM-controlled input to a running shell without an approval prompt (privilege escalation)
-
Medium nvd · CVE-2026-79743 · CVSS 6.9CVE-2026-79743: MCPHub is a unified hub for centrally managing and dynamically orchestrating multiple MCP servers/APIs into separate end
-
Medium nvd · CVE-2026-17622 · CVSS 6.5CVE-2026-17622: IBM Langflow OSS 1.0.0 through 1.10.2 could allow a remote authenticated attacker to obtain sensitive information due to
-
Medium nvd · CVE-2026-14470 · CVSS 6.5CVE-2026-14470: IBM Langflow OSS 1.0.0 through 1.10.2 could allow an authenticated attacker to traverse directories on the system. An at
-
Medium nvd · CVE-2026-19645 · CVSS 6.5CVE-2026-19645: IBM MQ Agent CD: v1.0.0, v1.0.1, v2.0.0, v2.0.1 An authenticated user with a valid session cookie can submit arbitrarily
-
Medium nvd · CVE-2026-19302 · CVSS 6.5CVE-2026-19302: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote authenticated attacker to obtain sensitive information due to
-
Medium nvd · CVE-2026-19299 · CVSS 6.5CVE-2026-19299: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote authenticated attacker to obtain sensitive information due to
-
Medium nvd · CVE-2026-9138 · CVSS 6.5CVE-2026-9138: IBM Langflow OSS 1.0.0 through 1.11.2 Langflow could allow an authenticated attacker to write arbitrary files to the ser
-
Medium nvd · CVE-2026-9186 · CVSS 6.5CVE-2026-9186: IBM Langflow OSS 1.0.0 through 1.11.2 allows remote authenticated attackers to bypass localhost-only MCP configuration i
-
Medium github · GHSA-h6cj-26g5-67fv · CVSS 6.5OpenList: Authenticated arbitrary file write via Content-Disposition path traversal in SimpleHttp offline-download tool
-
Medium github · GHSA-78x9-fhhx-v2g6 · CVSS 6.5CKAN MCP Server: Cache-key canonicalization collision enables cache confusion / poisoning
-
Medium nvd · CVE-2026-84377 · CVSS 6.5CVE-2026-84377: LiteLLM is a proxy server (AI Gateway) to call LLM APIs in OpenAI (or native) format. Prior to versions 1.88.6 and 1.96.
-
Medium nvd · CVE-2026-72654 · CVSS 6.5CVE-2026-72654: Execution with Unnecessary Privileges (CWE-250) in the Kibana machine learning feature can lead to information disclosur
-
Medium nvd · CVE-2026-53600 · CVSS 6.3CVE-2026-53600: async-tar is a tar archive reading/writing library for async Rust. Prior to version 0.6.1, async-tar mis-applies a buffe
-
Medium nvd · CVE-2026-8447 · CVSS 6.1CVE-2026-8447: IBM Langflow OSS 1.0.0 through 1.11.2 suffer from a stored cross-site scripting vulnerability in the Playground chat int
-
Medium nvd · CVE-2026-85703 · CVSS 5.5CVE-2026-85703: A flaw has been found in ramon-victor freegpt-webui up to 098db3dfeb41555c2ca9269df0f13e10ec1c35dc. Affected by this iss
-
Medium nvd · CVE-2026-84886 · CVSS 5.5CVE-2026-84886: A vulnerability was determined in simular-ai Agent-S up to 0.3.2. Affected by this vulnerability is the function ImageDa
-
Medium nvd · CVE-2026-17621 · CVSS 5.4CVE-2026-17621: IBM Langflow OSS 1.0.0 through 1.10.2 could allow a remote attacker to traverse directories on the system. An attacker c
-
Medium nvd · CVE-2026-78598 · CVSS 5.4CVE-2026-78598: Incorrect Authorization (CWE-863) in the Kibana machine learning feature can lead to information disclosure via Exploiti
-
Medium github · GHSA-9hjf-w35w-6vx2 · CVSS 5.4elFinder: CSRF in netmount allows forced FTP mounts and server-side FTP connections
-
Medium nvd · CVE-2026-86122 · CVSS 5.3CVE-2026-86122: Rowboat through 0.9.1 fails to validate custom MCP server and webhook URLs, allowing authenticated users to configure ar
-
Medium nvd · CVE-2026-85090 · CVSS 5.3CVE-2026-85090: FreeRDP before 3.31.0 contains a heap out-of-bounds read vulnerability in the general_ChromaV1ToYUV444 function during A
-
Medium github · GHSA-83x6-42hr-jc76 · CVSS 5.3CKAN MCP Server: MQA server allowlist bypass via unanchored regex (`isValidMqaServer`)
-
Medium nvd · CVE-2026-17631 · CVSS 5.0CVE-2026-17631: IBM Langflow OSS 1.0.0 through 1.10.2 could allow a remote authenticated attacker to obtain sensitive information due to
-
Medium nvd · CVE-2026-19301 · CVSS 5.0CVE-2026-19301: IBM Langflow OSS 1.0.0 through 1.11.2 could allow a remote authenticated attacker to obtain sensitive information due to
-
Medium nvd · CVE-2026-17627 · CVSS 4.9CVE-2026-17627: IBM Langflow OSS 1.0.0 through 1.10.2 could allow a remote authenticated attacker to obtain sensitive information and in
-
Medium nvd · CVE-2026-82293 · CVSS 4.3CVE-2026-82293: Incorrect Authorization (CWE-863) in the Kibana machine learning feature can lead to unauthorized resource consumption v
-
Medium osv · GHSA-pr7f-p5mw-fc87 · CVSS 4.0vLLM: Incomplete CVE-2025-62164 remediation can be bypassed by concurrent prompt parts
-
Low github · GHSA-6f9w-9hf2-5rg3 · CVSS 3.7CKAN MCP Server: Information disclosure via verbose error reflection
-
Low osv · GHSA-48jh-3gj7-fg8v · 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 · GHSA-hwrm-c4cx-rf4j · CVSS 3.1vLLM: Unauthenticated Internal Path and Username Disclosure via Validation Error Messages
-
Low osv · GHSA-8737-qx52-hjff · CVSS 3.1vLLM: Derender endpoints decode caller-supplied GenerateResponse token IDs without output bounds
-
Low osv · GHSA-gqvg-gmmx-x4hm · CVSS 3.1MLFLOW_ALLOW_PICKLE_DESERIALIZATION=False safety control bypassed by mlflow.statsmodels flavor — RCE via crafted model artifact
-
Low nvd · CVE-2026-85704 · CVSS 2.9CVE-2026-85704: A security flaw has been discovered in ramon-victor freegpt-webui up to 098db3dfeb41555c2ca9269df0f13e10ec1c35dc. This i
-
Low nvd · CVE-2026-86228 · CVSS 2.1CVE-2026-86228: A security vulnerability has been detected in JeecgBoot up to 3.9.3. This vulnerability affects the function exportXls o
-
Low nvd · CVE-2026-85021 · CVSS 2.1CVE-2026-85021: A vulnerability was determined in langgenius dify 1.13.0. Affected is the function router.replace of the file web/app/(s
-
Low nvd · CVE-2026-84887 · CVSS 2.1CVE-2026-84887: A vulnerability was identified in simular-ai Agent-S up to 0.3.2. Affected by this issue is some unknown functionality o
-
Low nvd · CVE-2026-84885 · CVSS 2.1CVE-2026-84885: A vulnerability has been found in simular-ai Agent-S 0.3.1/0.3.2. This impacts an unknown function of the file code_agen
-
Low nvd · CVE-2026-82834 · CVSS 2.1CVE-2026-82834: A security flaw has been discovered in Doccano Open Source Annotation Tools for Machine Learning Practitioners and Auto
-
Low nvd · CVE-2026-82833 · CVSS 2.1CVE-2026-82833: A vulnerability was identified in Doccano Open Source Annotation Tools for Machine Learning Practitioners and Auto Label
-
Low nvd · CVE-2026-85022 · CVSS 2.0CVE-2026-85022: A vulnerability was identified in langgenius dify 1.13.0. Affected by this vulnerability is the function router.replace
-
Critical github · GHSA-fg9p-mrxr-hvq7 · CVSS 0.0Orval: RCE via OpenAPI path -> unescaped request-URL template literal (backtick breakout)