VulnWatch Weekly: MCP Security Crisis & Model Loading RCE Surge
This week exposes critical risks in Model Context Protocol implementations, unsafe model deserialization in PyTorch/Diffusers, and agentic RCE chains. Immediate patching required for SOCFortress, ART, and Open WebUI.
Week in Review
The week of May 11-17, 2026, marks a turning point in AI infrastructure security, characterized by a cascade of critical vulnerabilities in the emerging Model Context Protocol (MCP) ecosystem and foundational machine learning libraries. The dominant theme is the fragility of agentic architectures; as systems grant LLMs greater autonomy to interact with tools and files, the attack surface expands exponentially. The single most urgent item is CVE-2026-42869 in SOCFortress CoPilot, where a hardcoded JWT secret allows unauthenticated attackers to forge admin tokens and seize control of security operations centers. However, the broader implication is systemic: from insecure deserialization in the Adversarial Robustness Toolbox to path traversal in Langflow, the supply chain supporting AI development is under siege. While no items are currently flagged as known-exploited in the wild, the severity scores (multiple 10.0 and 9.8 CVSS) suggest that exploitation is trivial and likely imminent.
Top Items of the Week
The following vulnerabilities represent the highest immediate risk to AI platform integrity. Security teams should prioritize these patches above all else.
-
CVE-2026-42869 (SOCFortress CoPilot)
Severity: Critical (10.0)
Component: Authentication Backend
Impact: Hardcoded JWT signing secret allows full admin takeover.
Action: Upgrade to version 0.1.57 immediately and rotate all JWT secrets.
Source -
CVE-2026-31229 (Adversarial Robustness Toolbox)
Severity: Critical (9.8)
Component: Kubeflow Model Loading
Impact: Insecure deserialization viatorch.load()enables RCE.
Action: Patch to version 1.20.1+ and enforceweights_only=True.
Source -
CVE-2026-43992 (JunoClaw)
Severity: Critical (9.8)
Component: MCP Write Tools
Impact: BIP-39 seed exposure in tool-call JSON logs.
Action: Upgrade to 0.x.y-security-1 and audit logs for leaked mnemonics.
Source -
GHSA-72w5-pf8h-xfp4 (DeepSeek TUI)
Severity: Critical (9.6)
Component: Task Create Tool
Impact: Sub-agents inherit unrestricted shell access via prompt injection.
Action: Disableallow_shelldefaults and require explicit approval for sub-agents.
Source -
CVE-2026-44827 (Diffusers)
Severity: High (8.8)
Component: Pipeline Loading
Impact: Remote code execution viaNone.pycustom pipeline bypass.
Action: Upgrade to version 0.38.0 and audit Hugging Face Hub dependencies.
Source -
CVE-2026-45401 (Open WebUI)
Severity: High (8.5)
Component: Retrieval Web Utils
Impact: SSRF bypass via HTTP redirect to internal metadata services.
Action: Patch to 0.9.5 and implement strict redirect validation.
Source -
CVE-2026-44484 (PyTorch Lightning)
Severity: Critical (9.3)
Component: Credential Handling
Impact: Credential harvesting mechanism introduced in versions 2.6.2.
Action: Downgrade or patch immediately; rotate all exposed credentials.
Source -
CVE-2026-45033 (GitHub Copilot CLI)
Severity: High (8.5)
Component: Git Operations
Impact: Arbitrary code execution via malicious bare git repository.
Action: Update to 1.0.43 and scan project directories for untrusted repos.
Source -
GHSA-vw82-7fv8-r6gp (Obot)
Severity: Critical (9.6)
Component: MCP Gateway
Impact: Authorization bypass allows any user to access restricted MCP servers.
Action: Patch gateway and review Access Control Rules for MCP IDs.
Source -
CVE-2026-42048 (Langflow)
Severity: Critical (9.6)
Component: Knowledge Bases API
Impact: Path traversal allows deletion of arbitrary server directories.
Action: Upgrade to 1.9.0 and audit filesystem permissions.
Source
The Model Context Protocol (MCP) Security Crisis
This week's data reveals a disturbing trend: the Model Context Protocol, designed to standardize how AI agents connect to external tools, has become a primary vector for compromise. We observed a cluster of vulnerabilities across multiple MCP implementations, including JunoClaw, Obot, PraisonAI, and the Wireshark MCP server. The core issue lies in the trust boundary between the LLM agent and the MCP server. In the case of JunoClaw (CVE-2026-43992), MCP write tools accepted cryptographic mnemonics as explicit parameters, embedding secrets directly into tool-call JSON that traversed telemetry surfaces. This is a fundamental design flaw that treats sensitive authentication data as transient tool arguments.
Similarly, Obot (GHSA-vw82-7fv8-r6gp) suffered from an authorization bypass where the MCP gateway endpoint /mcp-connect/{id} failed to enforce Access Control Rules. Any authenticated user with a server ID could connect to restricted servers, effectively bypassing tenant isolation. PraisonAI (GHSA-9mqq-jqxf-grvw) compounded this risk with path traversal vulnerabilities in its MCP file-handling tools, allowing attackers to inject Python .pth files for remote code execution. These incidents underscore that MCP servers often operate with excessive privileges and insufficient input validation. Security engineers must treat MCP servers as high-risk components, enforcing strict network segmentation and ensuring that tool arguments are sanitized before reaching the underlying implementation. The prevalence of these issues suggests that the MCP specification itself may need security extensions to mandate authentication and argument validation standards.
Unsafe Model Loading & Deserialization
The foundational libraries powering AI development continue to plague the ecosystem with insecure deserialization vulnerabilities. The Adversarial Robustness Toolbox (CVE-2026-31229) uses torch.load() without the weights_only=True parameter, allowing attackers to execute arbitrary code via malicious model weights. This is a recurring pattern we have seen for years, yet it persists in critical security tooling. Diffusers (CVE-2026-44827 and CVE-2026-44513) exhibited similar behavior, where the trust_remote_code safeguard was bypassed via string interpolation errors and alternative code paths. An attacker could publish a repository containing a file named None.py to trigger execution without user consent.
PyTorch Lightning (CVE-2026-44484) introduced a credential harvesting mechanism in versions 2.6.2, highlighting the risk of supply chain compromises in deep learning frameworks. Furthermore, BentoML (GHSA-78f9-r8mh-4xm2) allowed Dockerfile command injection via environment variable interpolation, enabling host-level code execution during containerization. These vulnerabilities share a common root: the assumption that model artifacts and configuration files from external sources (like Hugging Face) are benign. ML platform teams must enforce strict integrity verification on all model artifacts, utilize sandboxed environments for model loading, and disable dynamic code execution features unless absolutely necessary. The shift towards "model as code" requires the same security rigor applied to traditional software supply chains.
Agentic RCE & Prompt Injection Chains
As AI agents gain the ability to execute commands, the line between prompt injection and remote code execution blurs. DeepSeek TUI (GHSA-72w5-pf8h-xfp4 and GHSA-wx44-2q6h-j6p8) demonstrated this vividly: the task_create tool spawned sub-agents with allow_shell defaults set to true, and the run_tests tool auto-approved cargo test execution. An attacker could inject a prompt causing the agent to compile and run malicious code without user approval. GitHub Copilot CLI (CVE-2026-45033) faced a similar risk via git configuration exploitation, where a malicious bare repository could trigger arbitrary commands through core.fsmonitor.
JunoClaw (CVE-2026-43990 and CVE-2026-43991) further exposed the fragility of command safety checks, where substring-based blocklists were bypassed via adversarial argument constructions. These vulnerabilities illustrate that "auto-approve" features in agentic workflows are inherently dangerous. Security teams should audit all agent tools for shell access capabilities and enforce human-in-the-loop approval for any operation that modifies the filesystem or executes code. Prompt injection defenses must evolve beyond input filtering to include runtime monitoring of agent actions, ensuring that the intent of the tool call matches the actual execution context.
Platform Authentication & SSRF Fatigue
Open WebUI dominated the vulnerability landscape this week with a plethora of authentication and SSRF issues. CVE-2026-45401 and GHSA-rh5x-h6pp-cjj6 revealed that the validate_url() function only checked the initial URL, allowing attackers to bypass SSRF protections via HTTP redirects to internal metadata services. Additionally, multiple IDOR and authorization bypasses (GHSA-r472-mw7m-967f, GHSA-p4fx-23fq-jfg6) allowed users to access files, modify tools, and escalate privileges across workspace boundaries. Langflow (CVE-2026-42048) and MLflow (CVE-2026-2652) also suffered from authentication bypasses where specific API routes were left unprotected despite global auth settings.
This "SSRF fatigue" indicates that URL validation logic is often implemented inconsistently across different HTTP clients within the same application. Developers must ensure that redirect policies are strict and that allowlists are re-evaluated after every hop. For platforms like Open WebUI, the sheer volume of access control bugs suggests a need for a comprehensive security audit of the permission model. CISOs should consider these platforms high-risk for data leakage and enforce network policies that restrict outbound traffic from AI application servers to known external endpoints only.
What to Do This Week
- Patch Critical Infrastructure: Prioritize updates for SOCFortress CoPilot, Adversarial Robustness Toolbox, and Open WebUI. These contain trivial-to-exploit authentication and RCE flaws.
- Audit MCP Configurations: Review all connected MCP servers. Disable any that are not strictly necessary and enforce authentication on MCP gateway endpoints.
- Harden Model Loading: Configure
torch.loadwithweights_only=Trueacross all pipelines. Block outbound traffic from model loading containers to prevent remote code fetching. - Disable Auto-Approve: Revoke default shell access for AI agents. Require explicit user approval for any tool call that involves file system writes or command execution.
- Rotate Secrets: Given the credential harvesting risks in PyTorch Lightning and mnemonic leakage in JunoClaw, rotate API keys, database passwords, and wallet seeds associated with affected systems.
- Validate Redirects: Implement strict HTTP redirect policies in all retrieval components to prevent SSRF bypasses via 3xx responses.
What to Watch Next Week
Next week, we anticipate further disclosures related to the Model Context Protocol as security researchers deepen their analysis of the standard's reference implementations. Expect to see more vulnerabilities surrounding tool argument injection and cross-tenant data leakage in multi-tenant MCP registries. Additionally, monitor for supply chain attacks targeting AI dependency managers like Microsoft APM, as the ecosystem matures and becomes a more attractive target for persistent threat actors. The convergence of agentic workflows and traditional web vulnerabilities suggests that classic web security testing methodologies will remain highly effective in uncovering AI-specific risks.
Covered entries (102)
-
Critical nvd · CVE-2026-42869 · CVSS 10.0CVE-2026-42869: SOCFortress CoPilot focuses on providing a single pane of glass for all your security operations needs. Prior to 0.1.57,
-
Critical nvd · CVE-2026-31230 · CVSS 9.8CVE-2026-31230: The Adversarial Robustness Toolbox (ART) thru 1.20.1 contains a command-line argument injection vulnerability in its Kub
-
Critical nvd · CVE-2026-31229 · CVSS 9.8CVE-2026-31229: The Adversarial Robustness Toolbox (ART) thru 1.20.1 contains an insecure deserialization vulnerability (CWE-502) in its
-
Critical nvd · CVE-2026-43992 · CVSS 9.8CVE-2026-43992: JunoClaw is an agentic AI platform built on Juno Network. Prior to 0.x.y-security-1, every MCP write tool (send_tokens,
-
Critical github · GHSA-72w5-pf8h-xfp4 · CVSS 9.6DeepSeek TUI: task_create Insecure Defaults Enable RCE via Prompt Injection in Project Files
-
Critical github · GHSA-wx44-2q6h-j6p8 · CVSS 9.6DeepSeek TUI: run_tests Tool Enables RCE via Malicious Repository Without Approval
-
Critical github · GHSA-vw82-7fv8-r6gp · CVSS 9.6Obot has an authorization bypass in /mcp-connect/{id} that allows any authenticated user to use any registered MCP server
-
Critical nvd · CVE-2026-42048 · CVSS 9.6CVE-2026-42048: Langflow is a tool for building and deploying AI-powered agents and workflows. Prior to 1.9.0, Langflow is vulnerable to
-
Critical github · GHSA-9mqq-jqxf-grvw · CVSS 9.6PraisonAI MCP `tools/call` path-traversal => RCE via Python `.pth` injection
-
Critical nvd · CVE-2026-44484 · CVSS 9.3CVE-2026-44484: PyTorch Lightning is a deep learning framework to pretrain and finetune AI models. Versions 2.6.2 and 2.6.2 have introdu
-
High github · GHSA-xw67-cg5f-4m2r · CVSS 8.8AVideo: OS command injection in on_publish.php execAsync via unescaped m3u8 URL
-
High nvd · CVE-2026-44827 · CVSS 8.8CVE-2026-44827: Diffusers is the a library for pretrained diffusion models. Prior to 0.38.0, diffusers 0.37.0 allows remote code execut
-
High nvd · CVE-2026-44513 · CVSS 8.8CVE-2026-44513: Diffusers is the a library for pretrained diffusion models. Prior to 0.38.0, a trust_remote_code bypass in DiffusionPip
-
High nvd · CVE-2026-42559 · CVSS 8.8CVE-2026-42559: RMCP is an official Rust SDK for the Model Context Protocol. Prior to version 1.4.0, the rmcp crate's Streamable HTTP se
-
High nvd · CVE-2026-41109 · CVSS 8.8CVE-2026-41109: Improper neutralization of special elements in output used by a downstream component ('injection') in GitHub Copilot and
-
High github · GHSA-fcjq-435v-jx94 · CVSS 8.7pyLoad is vulnerable to stored XSS in Downloads view via unsanitized link URL in packages.js template literal
-
High nvd · CVE-2026-5029 · CVSS 8.7CVE-2026-5029: A remote code execution vulnerability exists in Code Runner MCP Server when run with the --transport http option, which
-
High nvd · CVE-2026-2652 · CVSS 8.6CVE-2026-2652: A vulnerability in mlflow/mlflow versions 3.9.0 and earlier allows unauthenticated access to certain FastAPI routes when
-
High nvd · CVE-2026-42463 · CVSS 8.6CVE-2026-42463: SQLBot is an intelligent Text-to-SQL system based on large language models and RAG. Prior to 1.8.0, SQLBot contains a Cr
-
High nvd · CVE-2026-45401 · CVSS 8.5CVE-2026-45401: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.5, the v
-
High github · GHSA-rh5x-h6pp-cjj6 · CVSS 8.5Open WebUI has a SSRF Bypass via HTTP Redirect Following in Web-Fetch and Image-Load Endpoints (not addressed by CVE-2025-65958)
-
High nvd · CVE-2026-45033 · CVSS 8.5CVE-2026-45033: GitHub Copilot CLI brings AI-powered coding assistance directly to your command line. Prior to 1.0.43, a security vulne
-
High nvd · CVE-2026-44470 · CVSS 8.5CVE-2026-44470: The Claude Desktop app gives you Claude Code with a graphical interface built for running multiple sessions side by side
-
High nvd · CVE-2026-43989 · CVSS 8.5CVE-2026-43989: JunoClaw is an agentic AI platform built on Juno Network. Prior to 0.x.y-security-1, the upload_wasm MCP tool accepted a
-
High nvd · CVE-2026-43991 · CVSS 8.4CVE-2026-43991: JunoClaw is an agentic AI platform built on Juno Network. Prior to 0.x.y-security-1, substring-based blocklist in plugin
-
High nvd · CVE-2026-43990 · CVSS 8.4CVE-2026-43990: JunoClaw is an agentic AI platform built on Juno Network. Prior to 0.x.y-security-1, plugin-shell's run_command wrapped
-
High github · GHSA-6xcp-7mpr-m7wm · CVSS 8.3Open WebUI has a CORS misconfiguration and session validation issue
-
High nvd · CVE-2026-33833 · CVSS 8.2CVE-2026-33833: Improper neutralization of special elements in output used by a downstream component ('injection') in Azure Machine Lear
-
High nvd · CVE-2026-43993 · CVSS 8.2CVE-2026-43993: JunoClaw is an agentic AI platform built on Juno Network. Prior to 0.x.y-security-1, the WAVS bridge's computeDataVerify
-
High nvd · CVE-2026-42260 · CVSS 8.2CVE-2026-42260: Open-WebSearch is a multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval. Prior to
-
High github · GHSA-h3ww-q6xx-w7x3 · CVSS 8.1Open WebUI: LDAP and OAuth First-User Race Condition Allows Multiple Admin Accounts
-
High github · GHSA-r472-mw7m-967f · CVSS 8.1Open WebUI: Cross-User File Access via Unchecked file_id in Folder Knowledge and Knowledge-Base Attach Endpoints
-
High github · GHSA-r8wh-8m7r-fh33 · CVSS 8.1Open WebUI: Missing permission check in files API allows authenticated users to list, access and delete every uploaded file
-
High nvd · CVE-2026-30635 · CVSS 8.1CVE-2026-30635: Command injection vulnerability in automagik-genie 2.5.27 MCP Server allows attackers to execute arbitrary commands via
-
High github · GHSA-j3fw-wc48-29g3 · CVSS 8.1Open WebUI Arbitrary File Write, Delete via Path Traversal
-
High github · GHSA-5v57-8rxj-3p2r · CVSS 7.7python-utcp: Full Process Environment Exposed to CLI Subprocess - Secrets Leakage via Command Injection
-
High nvd · CVE-2026-44555 · CVSS 7.6CVE-2026-44555: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.0, Open
-
High github · GHSA-cj9g-27ph-4cgv · CVSS 7.5wger Vulnerable to IDOR: Authenticated Users Can Read Any User's Private Workout Session Data via Template Routine API
-
High nvd · CVE-2026-2614 · CVSS 7.5CVE-2026-2614: A vulnerability in the `_create_model_version()` handler of `mlflow/server/handlers.py` in mlflow/mlflow versions 3.9.0
-
High nvd · CVE-2026-45539 · CVSS 7.4CVE-2026-45539: Microsoft APM is an open-source, community-driven dependency manager for AI agents. From 0.5.4 to 0.12.4, two primitive
-
High github · GHSA-88gh-2526-gfrr · CVSS 7.4DeepSeek TUI has SSRF IPV6 bypass
-
High github · GHSA-96ff-gc8g-wpvg · CVSS 7.4DeepSeek TUI has SSRF via HTTP Redirect Bypass in fetch_url Tool
-
High nvd · CVE-2026-44467 · CVSS 7.4CVE-2026-44467: The Claude Desktop app gives you Claude Code with a graphical interface built for running multiple sessions side by side
-
High nvd · CVE-2026-42893 · CVSS 7.4CVE-2026-42893: Improper neutralization of special elements used in a command ('command injection') in M365 Copilot allows an unauthoriz
-
High github · GHSA-6rmh-7xcm-cpxj · CVSS 7.3PraisonAI ships and generates a legacy API server with authentication disabled by default, allowing unauthenticated workflow execution
-
High github · GHSA-p4fx-23fq-jfg6 · CVSS 7.2Open WebUI: Missing `workspace.tools` Authorization Check on Tool Update Endpoint Allows Privilege Escalation to Code Execution
-
High nvd · CVE-2026-44246 · CVSS 7.2CVE-2026-44246: nnU-Net is a semantic segmentation framework that automatically adapts its pipeline to a dataset. Prior to 2.4.1, the nn
-
High nvd · CVE-2026-44556 · CVSS 7.1CVE-2026-44556: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.0, the /
-
High nvd · CVE-2026-44641 · CVSS 7.1CVE-2026-44641: Microsoft APM is an open-source, community-driven dependency manager for AI agents. Prior to 0.8.12, Microsoft APM norma
-
High github · GHSA-4pcg-253r-rf9w · CVSS 7.1Open WebUI's chat completion API allows tool restrictions to be bypassed
-
High nvd · CVE-2026-2393 · CVSS 7.1CVE-2026-2393: A Server-Side Request Forgery (SSRF) vulnerability exists in MLflow versions prior to 3.9.0. The `_create_webhook()` fun
-
High nvd · CVE-2026-7817 · CVSS 7.1CVE-2026-7817: Local file inclusion (LFI) and server-side request forgery (SSRF) vulnerabilities in pgAdmin 4 LLM API configuration end
-
Medium nvd · CVE-2026-43901 · CVSS 6.8CVE-2026-43901: Wireshark MCP is an MCP Server that turns tshark into a structured analysis interface, then layers in optional Wireshark
-
Medium github · GHSA-m69w-p7m4-585j · CVSS 6.5Open WebUI: Unauthenticated endpoint can trigger embedding generation (cost/DoS)
-
Medium github · GHSA-jh9g-8jqw-m2qx · CVSS 6.5Open WebUI Exposes System Prompt to Regular User [Non-Admin]
-
Medium github · GHSA-gm54-m39w-grjp · CVSS 6.5Open WebUI missing authorization check at the model update function - models from other users can be updated
-
Medium github · GHSA-57q6-fvp4-pqmm · CVSS 6.5Open WebUI's API key endpoint restrictions bypassed via `x-api-key` header — full message processing on restricted endpoints
-
Medium github · GHSA-g39v-cvjh-8fpf · CVSS 6.5Home Assistant MCP Server: YAML config backups written under www/ are served unauthenticated at /local/
-
Medium nvd · CVE-2026-44222 · CVSS 6.5CVE-2026-44222: vLLM is an inference and serving engine for large language models (LLMs). From 0.6.1 to before 0.20.0, there is a a Toke
-
Medium nvd · CVE-2026-44223 · CVSS 6.5CVE-2026-44223: vLLM is an inference and serving engine for large language models (LLMs). From to before 0.20.0, the extract_hidden_sta
-
Medium nvd · CVE-2026-8597 · CVSS 6.4CVE-2026-8597: Missing integrity verification in the Triton inference handler in Amazon SageMaker Python SDK v2 before v2.257.2 and v3
-
Medium nvd · CVE-2026-44430 · CVSS 6.3CVE-2026-44430: The MCP Registry provides MCP clients with a list of MCP servers, like an app store for MCP servers. Prior to 1.7.7, the
-
Medium github · GHSA-xpww-f6pm-cfhq · CVSS 6.3dbt MCP Server has an Argument Injection in dbt CLI Tool Wrappers via node_selection and resource_type Parameters
-
Medium github · GHSA-3643-7v76-5cj2 · CVSS 6.3PraisonAI knowledge-store backends interpolate unvalidated collection names into SQL and CQL queries
-
Medium nvd · CVE-2026-41614 · CVSS 6.2CVE-2026-41614: Improper access control in M365 Copilot for Desktop allows an unauthorized attacker to perform spoofing locally.
-
Medium nvd · CVE-2026-42045 · CVSS 6.2CVE-2026-42045: LobeHub is a work-and-lifestyle space to find, build, and collaborate with agent teammates that grow with you. Prior to
-
Medium nvd · CVE-2026-45001 · CVSS 6.0CVE-2026-45001: OpenClaw before 2026.4.20 contains a guard bypass vulnerability in the agent-facing gateway config.patch and config.appl
-
Medium nvd · CVE-2026-46383 · CVSS 5.5CVE-2026-46383: Microsoft APM is an open-source, community-driven dependency manager for AI agents. Prior to 0.13.0, Microsoft APM conta
-
Medium nvd · CVE-2026-44479 · CVSS 5.5CVE-2026-44479: Vercel’s AI Cloud is a unified platform for building modern applications. From 50.16.0 to 52.0.0, hen the Vercel CLI ru
-
Medium nvd · CVE-2026-45365 · CVSS 5.4CVE-2026-45365: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.8.11, an i
-
Medium nvd · CVE-2026-44563 · CVSS 5.4CVE-2026-44563: Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.9.0, the /
-
Medium github · GHSA-m5j4-7r85-2cj2 · CVSS 5.4AVideo: stored XSS via unescaped stream key in modeYoutubeLive.php class attribute
-
Medium github · GHSA-rjmp-vjf2-qf4g · CVSS 5.4Open WebUI: Mass Assignment via FeedbackForm extra=allow Allows Feedback User ID Spoofing and Evaluation Data Manipulation
-
Medium github · GHSA-v6qf-75pr-p96m · CVSS 5.4Open WebUI: Authenticated users can bypass model access control via exposed query parameter [AI-ASSISTED]
-
Medium nvd · CVE-2026-44995 · CVSS 5.4CVE-2026-44995: OpenClaw before 2026.4.20 contains an improper environment variable validation vulnerability in MCP stdio server configu
-
Medium github · GHSA-65pg-qhhw-mxwg · CVSS 5.3Open WebUI Vulnerable to Unauthenticated RAG Configuration Disclosure
-
Medium nvd · CVE-2026-42572 · CVSS 5.3CVE-2026-42572: Hatchet is a platform for orchestrating background tasks, AI agents, and durable workflows at scale. Prior to 0.83.39, a
-
Medium nvd · CVE-2026-43995 · CVSS 5.3CVE-2026-43995: Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.0, multiple tool i
-
Medium nvd · CVE-2026-44429 · CVSS 5.1CVE-2026-44429: The MCP Registry provides MCP clients with a list of MCP servers, like an app store for MCP servers. Prior to 1.7.7, the
-
Medium nvd · CVE-2025-32425 · CVSS 5.1CVE-2025-32425: AutoGPT is a platform that allows users to create, deploy, and manage continuous artificial intelligence agents that aut
-
Medium github · GHSA-fj2m-qvh9-jq4q · CVSS 5.0local-deep-research is Vulnerable to HTML Injection via Unescaped User Input in PDF Export (`pdf_service.py:_markdown_to_html`)
-
Medium github · GHSA-r8j5-8747-88cm · CVSS 4.7@utcp/http: SSRF via attacker-controlled OpenAPI servers[0].url in HTTP communication protocol
-
Medium nvd · CVE-2026-41100 · CVSS 4.4CVE-2026-41100: Improper access control in M365 Copilot allows an authorized attacker to perform spoofing locally.
-
Medium github · GHSA-h2cw-7qw9-56xr · CVSS 4.3Open WebUI: Sharing models for others to use (read permission) also exposes model details (system prompt leakage)
-
Medium github · GHSA-f776-fp4w-266c · CVSS 4.3Open WebUI vulnerable to blind server side request forgery (SSRF) via the PDF generate function
-
Medium osv · GHSA-wxxx-gvqv-xp7p · CVSS 4.0LiteLLM has a sandbox escape in custom-code guardrail
-
Low nvd · CVE-2026-45781 · CVSS 3.5CVE-2026-45781: The MCP Registry provides MCP clients with a list of MCP servers, like an app store for MCP servers. Prior to 1.7.9, OCI
-
Low nvd · CVE-2026-44220 · CVSS 3.2CVE-2026-44220: ciguard is a static security auditor for CI/CD pipelines. From 0.8.0 to 0.8.1 , the discover_pipeline_files() function i
-
Low github · GHSA-jj54-r8gm-2fcf · CVSS 3.1dbt MCP Server Transmits All MCP Tool Arguments Including Raw SQL and --vars Credentials to dbt Labs Telemetry by Default Without Redaction
-
Low osv · GHSA-3644-q5cj-c5c7 · CVSS 3.1LangSmith SDK: Public prompt pull deserializes untrusted manifests without trust boundary warning
-
Low osv · GHSA-w2pm-x38x-jp44 · CVSS 3.1Dockerfile command injection via envs[*].name in bentofile.yaml (sibling fix-bypass of CVE-2026-33744 and CVE-2026-35043)
-
Low osv · GHSA-78f9-r8mh-4xm2 · CVSS 3.1BentoML Dockerfile command injection via docker.base_image (sister of pending GHSA-w2pm-x38x-jp44 / CVE-2026-33744 / CVE-2026-35043)
-
Low github · GHSA-7xgw-6qf3-7w59 · CVSS 2.5dbt MCP Server Logs Tool Arguments Including SQL Queries and Credentials in Plaintext Without Redaction When File Logging Is Enabled
-
Low nvd · CVE-2026-44428 · CVSS 2.1CVE-2026-44428: The MCP Registry provides MCP clients with a list of MCP servers, like an app store for MCP servers. Prior to 1.7.6, the
-
High github · GHSA-78pr-c5x5-jggc · CVSS 0.0FlowiseAI: Assistant create+update mass-assignment allows cross-workspace assistant takeover
-
High github · GHSA-hmg2-jjjx-jcp2 · CVSS 0.0FlowiseAI: Vector Store No Permission Checks
-
High github · GHSA-7g73-99r4-m4mj · CVSS 0.0FlowiseAI Vulnerable to Credential Data Leak
-
High github · GHSA-m99r-2hxc-cp3q · CVSS 0.0Flowise has an MCP Security Bypass that Enables RCE
-
High github · GHSA-g3xq-3gmv-qq8g · CVSS 0.0claude-code-cache-fix vulnerable to local code execution via Python triple-quote injection in tools/quota-statusline.sh
-
Critical github · GHSA-m77w-p5jj-xmhg · CVSS 0.0OpenClaude Sandbox Bypass via Model-Controlled `dangerouslyDisableSandbox` Input
-
High github · GHSA-9ccr-r5hg-74gf · CVSS 0.0GitHub Copilot CLI: Nested Bare Repository Can Execute Arbitrary Commands via core.fsmonitor
-
Critical github · GHSA-423p-g724-fr39 · CVSS 0.0CloudNativePG's metrics exporter allows privilege escalation to PostgreSQL superuser and OS RCE