VulnWatch Weekly: The Week of Unsafe Eval, Agent RCE, and Active SSRF
This week's digest highlights a critical wave of Remote Code Execution (RCE) vulnerabilities in LLM inference servers, driven by unsafe deserialization and dynamic code evaluation. Most urgently, CISA has added an actively exploited MLflow SSRF flaw to its KEV catalog, demanding immediate patching for all exposed instances.
Week in Review: August 17 – August 23, 2026
Executive Summary
The security landscape for AI infrastructure faced a perfect storm this week, characterized by a surge in critical Remote Code Execution (RCE) vulnerabilities within core inference and agent orchestration layers. The dominant theme is the fragility of trust boundaries in agentic systems: from unsafe eval() usage in tool parsing to pickle deserialization in distributed serving, attackers can now pivot from prompt injection to full server compromise with alarming ease. While the volume of high-severity RCEs is staggering, the single most urgent item for all CISOs and platform teams is CVE-2026-64849, a Server-Side Request Forgery (SSRF) vulnerability in MLflow that has been confirmed as actively exploited and added to the CISA Known Exploited Vulnerabilities (KEV) catalog. Immediate isolation and patching of MLflow instances are required.
Beyond the immediate fire-fighting, this week exposed a systemic issue in the "Agentic Supply Chain." Multiple vulnerabilities in MCP (Model Context Protocol) servers and agent frameworks (Omnigent, LangBot, CodeWhale) demonstrate that granting LLMs access to shell tools or file systems without rigorous sandboxing is resulting in trivial bypasses. Whether through path traversal in file tools or argument injection in git commands, the assumption that an LLM will "follow instructions safely" has been decisively debunked by this week's CVEs.
Top Items of the Week
The following entries represent the highest impact risks identified between August 17 and August 23. These items demand immediate attention from security engineering teams.
-
CVE-2026-64849 (MLflow SSRF - Actively Exploited)
- Severity: High (CVSS 9.3)
- Component: MLflow Tracking Server
- Impact: Allows attackers to reach internal cloud metadata services and exfiltrate credentials. Status: Known Exploited.
- Action: Patch immediately to version 3.15.0+ or restrict network access to the MLflow server. See NVD Detail.
-
CVE-2026-61539 / GHSA-x2rj-828p-hx9m (Xinference RCE)
- Severity: Critical (CVSS 10.0)
- Component: Xinference (Llama3 Tool Parser)
- Impact: Unauthenticated RCE via unsafe
eval()of model-generated tool calls. An attacker can craft a prompt that forces the model to output malicious Python code, which the server then executes. - Action: Upgrade Xinference immediately. If patching is delayed, disable tool calling capabilities or place the service behind a strict WAF that blocks Python syntax in tool arguments. See GitHub Advisory.
-
CVE-2026-76850 (LMDeploy Pickle Deserialization)
- Severity: Critical (CVSS 9.3)
- Component: LMDeploy (Disaggregated Serving)
- Impact: RCE via pickle deserialization in peer-to-peer ZMQ messages. Any connected peer can send a malicious payload to execute code on the engine.
- Action: Isolate LMDeploy clusters from untrusted networks. Upgrade to the patched version which implements strict message validation before deserialization. See NVD Detail.
-
CVE-2026-39909 (llama.cpp Use-After-Free)
- Severity: Critical (CVSS 9.2)
- Component: llama.cpp (RPC Server)
- Impact: Unauthenticated RCE via use-after-free in the
GRAPH_RECOMPUTEhandler. Allows arbitrary read/write and subsequent code execution. - Action: Update llama.cpp to build b8585 or later. Disable the RPC server if not strictly required. See NVD Detail.
-
CVE-2026-75110 (MemOS Auth Bypass)
- Severity: Critical (CVSS 9.3)
- Component: MemOS (Memory Operating System)
- Impact: Authentication bypass allowing unauthenticated remote attackers to gain "all" scopes if
INTERNAL_SERVICE_SECRETis unset. Effectively grants full admin access. - Action: Ensure
INTERNAL_SERVICE_SECRETis explicitly set in all deployments. Upgrade to the fixed version. See NVD Detail.
-
CVE-2026-77776 (Headroom LLM Proxy IDOR)
- Severity: Critical (CVSS 9.3)
- Component: Headroom LLM Proxy
- Impact: Broken Access Control. Attackers can read/write other users' LLM memory by simply spoofing the
x-headroom-user-idheader. - Action: Upgrade Headroom proxy. Implement strict header validation at the load balancer level to strip or verify user identity headers. See NVD Detail.
-
CVE-2026-75625 (Kraken Agent Supply Chain Poisoning)
- Severity: Critical (CVSS 9.1)
- Component: Kraken Agents (P2P Blob Download)
- Impact: Supply chain poisoning. Agents fail to verify SHA-256 digests, relying only on CRC32, allowing attackers to inject malicious container layers.
- Action: Patch Kraken agents to enforce cryptographic hash verification. Audit existing cached blobs for integrity. See NVD Detail.
-
CVE-2026-62674 / CVE-2026-62675 (Omnigent Agent RCE)
- Severity: Critical/High (CVSS 9.0/8.8)
- Component: Omnigent Framework
- Impact: Multiple vectors for RCE including shared agent bundle manipulation and arbitrary Python path execution in tool specs.
- Action: Upgrade Omnigent to v0.3.0+. Review all custom agent bundles for unsafe tool definitions. See NVD Detail.
Theme: Inference Server RCE & Unsafe Deserialization
The backbone of the modern AI stack—the inference server—proved to be remarkably fragile this week. The recurring pattern is the treatment of model output or peer messages as "trusted" data, leading to direct code execution.
Xinference suffered a CVSS 10.0 vulnerability (CVE-2026-61539) where the Llama3 tool-call parser passed model-generated strings directly to Python's eval(). This is a textbook case of why dynamic evaluation must never be used on untrusted input, even if that input comes from a "local" model. The model itself becomes the weapon, coerced via prompt injection to output malicious payloads.
Similarly, LMDeploy (CVE-2026-76850) fell victim to the dangers of pickle. In its disaggregated serving mode, the engine deserializes peer messages using pickle.loads() before validating the message type. This order of operations is fatal; by the time the code checks if the message is a valid request, the malicious payload has already executed. This highlights a critical lesson for distributed ML systems: serialization formats must be safe (e.g., JSON, Protobuf) or deserialization must happen in a strictly isolated sandbox.
The llama.cpp RPC server also joined the list with a severe use-after-free bug (CVE-2026-39909) in its graph recompute handler. This allows unauthenticated attackers to achieve arbitrary read/write access, a precursor to full RCE. With llama.cpp being a ubiquitous dependency for local LLM runners, this vulnerability potentially exposes thousands of edge devices and internal dev boxes to remote compromise.
Theme: The Agentic Attack Surface (MCP & Tool Use)
If inference servers are the brain, agents are the hands. This week revealed that giving LLMs "hands" without gloves is a disaster. The Model Context Protocol (MCP) and various agent frameworks introduced numerous vectors for escaping intended boundaries.
Omnigent was particularly hard hit, with a trilogy of vulnerabilities (CVE-2026-62674, CVE-2026-62675, CVE-2026-62677). Attackers could manipulate shared agent bundles to inject stdio MCP servers, specify arbitrary Python callables (like subprocess.check_output), or traverse file paths to escape the workspace. The root cause is a lack of strict allow-listing for tool capabilities and insufficient validation of agent configuration objects.
LangBot (CVE-2026-54449) and Splunk MCP Server (CVE-2026-76404) similarly allowed authenticated users to configure STDIO MCP servers that execute arbitrary OS commands. In LangBot's case, any authenticated user could spin up a shell on the server. This suggests that the "admin" boundary in many AI platforms is too broad; the ability to configure tools should be heavily restricted and audited.
CodeWhale presented a sophisticated supply-chain-style attack vector (CVE-2026-75911, CVE-2026-75913, CVE-2026-75858). By committing a malicious config file or leveraging argument injection in git tools, an attacker could trick the agent into executing shell commands or writing files to sensitive locations (like ~/.ssh). The "auto-approve" settings on certain tools meant these actions happened without user consent, turning the coding assistant into a Trojan horse.
Theme: Data Leakage, SSRF, and Identity Confusion
While RCE grabs headlines, data exfiltration remains the primary goal of many adversaries. This week's entries show how easily internal networks and sensitive data stores are being exposed.
The headline story here is MLflow. Beyond the actively exploited SSRF (CVE-2026-64849), MLflow also shipped with broken access controls in its model registry. CVE-2026-69148 (NVD) allowed users to create model versions pointing to other users' artifact directories, effectively bypassing read permissions. Furthermore, CVE-2026-69146 (NVD) allowed unauthorized injection of dataset inputs into run logs, polluting the lineage graph. These issues stem from a failure to propagate authorization checks deep into the object creation logic.
Headroom's LLM Proxy suffered from two distinct identity failures. Beyond the IDOR mentioned earlier, CVE-2026-77775 (NVD) allowed clients to specify the upstream base URL via a header (x-headroom-base-url). This turned the proxy into an open SSRF tool, allowing attackers to scan internal networks and interact with private APIs, with the proxy faithfully returning the responses.
LangChain components also leaked data. The SitemapLoader (CVE-2026-72848) failed to restrict nested sitemaps to the same domain, allowing attackers to force the loader to fetch internal URLs. Additionally, a NoSQL injection in LangChain MongoDB (GHSA-533j-2v4q-mw5h) allowed filter parameters to contain MongoDB operators, leading to cross-tenant data exposure.
Theme: Supply Chain & Model Integrity
Trust in the model supply chain was eroded this week. Kraken agents (CVE-2026-75625) were found to rely on CRC32 checksums rather than cryptographic hashes for P2P blob verification. This allows an attacker on the network path to substitute model weights or container layers with malicious versions that pass the integrity check but execute arbitrary code upon loading.
Hugging Face Transformers (CVE-2026-75104) and MONAI (GHSA-wg9g-w2j2-8pgr) both faced issues related to loading untrusted model files. Transformers failed to validate shard filenames in index files, allowing path traversal to read arbitrary files. MONAI's NumpyReader hardcoded allow_pickle=True, turning a simple data load operation into a potential RCE vector if a malicious .npy file is introduced into the dataset pipeline.
Known Exploited Vulnerabilities (KEV)
⚠️ CRITICAL ALERT:
- CVE-2026-64849 (MLflow SSRF) is now listed in the CISA KEV catalog. Threat actors are actively scanning for and exploiting this vulnerability to harvest cloud credentials (AWS IMDS, GCP metadata, Azure IMDS). If you run MLflow without authentication or with default settings, assume you are compromised.
What to Do This Week
- Patch MLflow Immediately: Upgrade all MLflow instances to version 3.15.0 or later. If you cannot patch immediately, place the MLflow server behind a strict network firewall that blocks outbound access to cloud metadata IPs (e.g., 169.254.169.254) and restricts inbound access to trusted CI/CD subnets only.
- Audit Inference Servers: Scan your environment for Xinference, LMDeploy, and llama.cpp instances. Apply the patches released this week. For Xinference, specifically review logs for suspicious tool-call arguments containing Python code.
- Harden Agent Configurations: Review all MCP server configurations and agent tool definitions. Disable "auto-approve" for any tool that interacts with the filesystem or executes shell commands. Implement strict allow-lists for file paths and commands.
- Validate Model Inputs: Ensure that any system loading models from external sources (Hugging Face, S3, P2P networks) validates cryptographic signatures or hashes before deserialization or loading. Disable pickle support in data loaders where possible.
- Header Hygiene: Configure load balancers and ingress controllers to strip or validate sensitive headers like
x-headroom-user-idandx-headroom-base-urlto prevent header injection attacks.
What to Watch Next Week
Next week, we expect to see a ripple effect from these agent-focused vulnerabilities. Look out for new advisories regarding "sandbox escape" techniques in containerized agent runtimes, as attackers will likely try to break out of the limited environments provided by frameworks like Omnigent and LangBot. Additionally, monitor for exploits targeting the "uncensored" or "jailbroken" models that may be deployed to test these new RCE vectors. The convergence of agentic autonomy and unsafe infrastructure is creating a fertile ground for automated attack chains.
Covered entries (98)
-
Critical nvd · CVE-2026-61539 · CVSS 10.0CVE-2026-61539: Xinference is an inference API for running open-source, speech, and multimodal models. In 2.5.0 and earlier, Xinference
-
Critical github · GHSA-x2rj-828p-hx9m · CVSS 10.0Xinference vulnerable to remote code execution via unsafe `eval()` in Llama3 tool-call parsing
-
Critical nvd · CVE-2026-47627 · CVSS 9.8CVE-2026-47627: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could cause path traversal. A succes
-
Critical nvd · CVE-2026-77776 · CVSS 9.3CVE-2026-77776: Headroom's LLM proxy derives the memory owner from the x-headroom-user-id request header. The header is read directly at
-
Critical nvd · CVE-2026-76850 · CVSS 9.3CVE-2026-76850: LMDeploy deserializes disaggregated-serving peer messages with pickle. The handle_zmq_recv coroutine in lmdeploy/pytorch
-
High cisa_kev · CVE-2026-64849 · CVSS 9.3MLflow Server-Side Request Forgery Vulnerability
-
Critical nvd · CVE-2026-75110 · CVSS 9.3CVE-2026-75110: MemOS is a memory operating system for LLMs and AI agents. In deployments where authentication is enabled (AUTH_ENABLED=
-
Critical nvd · CVE-2026-39909 · CVSS 9.2CVE-2026-39909: llama.cpp before b8585 contains a use-after-free vulnerability in the RPC server's GRAPH_RECOMPUTE handler that allows u
-
Critical nvd · CVE-2026-76404 · CVSS 9.1CVE-2026-76404: In Splunk MCP Server app versions below 1.2.1, a user who holds the "admin" Splunk role could execute arbitrary commands
-
Critical nvd · CVE-2026-75625 · CVSS 9.1CVE-2026-75625: Kraken agents fail to verify peer-to-peer downloaded blobs against their requested SHA-256 digest before committing to t
-
Critical nvd · CVE-2026-71479 · CVSS 9.1CVE-2026-71479: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. Prior to 1.0.0-
-
Critical nvd · CVE-2026-64859 · CVSS 9.1CVE-2026-64859: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. Prior to 1.0.0-
-
Critical nvd · CVE-2026-62674 · CVSS 9.0CVE-2026-62674: Omnigent is an open-source AI agent framework and meta-harness for orchestrating coding agents. Prior to 0.3.0, PUT /ses
-
High nvd · CVE-2026-62677 · CVSS 8.8CVE-2026-62677: Omnigent is an open-source AI agent framework and meta-harness for orchestrating coding agents. Prior to 0.3.0, an authe
-
High nvd · CVE-2026-62675 · CVSS 8.8CVE-2026-62675: Omnigent is an open-source AI agent framework and meta-harness for orchestrating coding agents. Prior to 0.3.0, multipar
-
High nvd · CVE-2026-54449 · CVSS 8.8CVE-2026-54449: LangBot is a global IM bot platform designed for LLMs. In version 4.10.7 and earlier, any authenticated user can add or
-
High nvd · CVE-2026-76395 · CVSS 8.8CVE-2026-76395: In Splunk AI Toolkit versions below 6.0.0, a user who holds the "power" Splunk role could execute arbitrary code on the
-
High nvd · CVE-2026-24301 · CVSS 8.8CVE-2026-24301: Improper neutralization of special elements used in a command ('command injection') in Microsoft Copilot allows an unaut
-
High nvd · CVE-2026-75149 · CVSS 8.7CVE-2026-75149: marimo before 0.23.15 contains a code injection vulnerability in the notebook configuration handler that allows attacker
-
High nvd · CVE-2026-75935 · CVSS 8.7CVE-2026-75935: Uncontrolled memory allocation in the binary Ion stream cursor in Amazon ion-java before 1.12.0 might allow remote actor
-
High nvd · CVE-2026-76832 · CVSS 8.5CVE-2026-76832: Agno's PythonTools in libs/agno/agno/tools/python.py contains a path traversal vulnerability that allows attackers to re
-
High nvd · CVE-2026-75911 · CVSS 8.5CVE-2026-75911: CodeWhale versions before 0.8.64 fail to properly validate the allow_shell configuration parameter from project config f
-
High nvd · CVE-2026-75913 · CVSS 8.5CVE-2026-75913: CodeWhale (codewhale / codewhale-tui) versions >= 0.8.41 and < 0.8.64 contain an argument injection vulnerability in the
-
High nvd · CVE-2026-75858 · CVSS 8.5CVE-2026-75858: CodeWhale (packages codewhale / codewhale-tui) versions >= 0.8.41 and < 0.8.64 contain a remote code execution vulnerabi
-
High nvd · CVE-2026-77118 · CVSS 8.4CVE-2026-77118: A heap out-of-bounds write exists in the Photo CD (PCD) decoder of GraphicsMagick. In DecodeImage() (coders/pcd.c), the
-
High nvd · CVE-2026-76394 · CVSS 8.3CVE-2026-76394: In Splunk AI Toolkit versions below 6.0.0, a low-privileged user who does not hold the "admin" or "power" Splunk roles c
-
High github · GHSA-mrc5-3mm3-45c5 · CVSS 8.1Laravel Backpack CRUD: OS command injection in Stats::makeCurlRequest via attacker-controlled Host header (pre-auth)
-
High nvd · CVE-2026-76354 · CVSS 8.1CVE-2026-76354: In Splunk Enterprise versions below 10.4.2, 10.2.6, 10.0.9, and 9.4.14, a user who does not hold the "admin" or "power"
-
High nvd · CVE-2026-50143 · CVSS 8.1CVE-2026-50143: The Apify MCP server enables AI agents to extract data from websites using ready-made scrapers, crawlers, and automation
-
High nvd · CVE-2026-15679 · CVSS 7.8CVE-2026-15679: Hugging Face PyTorch Image Models checkpoint Deserialization of Untrusted Data Remote Code Execution Vulnerability. This
-
High github · GHSA-wg9g-w2j2-8pgr · CVSS 7.8MONAI: Unsafe deserialization in NumpyReader allows arbitrary code execution via malicious .npy files
-
High nvd · CVE-2026-54457 · CVSS 7.7CVE-2026-54457: TensorZero is an open-source LLMOps platform that unifies an LLM gateway, observability, evaluation, optimization, and e
-
High nvd · CVE-2026-77775 · CVSS 7.7CVE-2026-77775: Headroom's LLM proxy lets a client choose the upstream destination with the x-headroom-base-url request header. _resolve
-
High nvd · CVE-2026-72848 · CVSS 7.7CVE-2026-72848: SitemapLoader.parse_sitemap in langchain_community/document_loaders/sitemap.py applies the documented restrict_to_same_d
-
High nvd · CVE-2026-69855 · CVSS 7.7CVE-2026-69855: Server-side request forgery (ssrf) in Microsoft Copilot in Azure allows an authorized attacker to disclose information o
-
High github · GHSA-533j-2v4q-mw5h · CVSS 7.7LangChain MongoDB has NoSQL Operator Injection in MongoDBSaver.list() leading to cross-tenant data exposure
-
High github · GHSA-2xhg-73j7-rrgx · CVSS 7.7Contentful MCP Server: export_space/import_space tools pass LLM-controlled `host`/`proxy` args to CMA client, redirecting server PAT to attacker-controlled endpoint
-
High nvd · CVE-2025-27621 · CVSS 7.7CVE-2025-27621: UpTrain is an open-source platform to evaluate and improve generative AI applications. In version 0.7.1 and prior, the U
-
High github · GHSA-xpv2-hrfc-hw62 · CVSS 7.6Laravel Backpack CRUD: Unverified password change in MyAccountController via mass assignment
-
High github · GHSA-mmfr-pmjx-hw9w · CVSS 7.5kin-openapi openai3filter: nil-pointer panic in ConvertErrors on malformed multipart/form-data body enables unauthenticated DoS
-
High github · GHSA-4899-mpch-38p3 · CVSS 7.5netty-incubator-codec-ohttp BinaryHttpParser: Unauthenticated CPU-exhaustion DoS via infinite loop in field-section decoding
-
High github · GHSA-rr55-jp92-8wp2 · CVSS 7.5claude-faf-mcp has an arbitrary local file read/write via unconfined `path` argument in FAF tools
-
High github · GHSA-j4r7-8ph4-43g3 · CVSS 7.5faf-mcp has an arbitrary local file read/write via unconfined `path` argument in FAF tools
-
High github · GHSA-cc2g-gq8c-r332 · CVSS 7.5grok-faf-mcp has an arbitrary local file read via unconfined `path` argument in FAF tools
-
High nvd · CVE-2026-19875 · CVSS 7.5CVE-2026-19875: IBM Langflow OSS 1.0.0 through 1.10.0 could allow a remote attacker to overwrite administrator email information and abu
-
High nvd · CVE-2026-47629 · CVSS 7.5CVE-2026-47629: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could cause improper input validatio
-
High nvd · CVE-2026-47628 · CVSS 7.5CVE-2026-47628: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could cause an allocation of resourc
-
High github · GHSA-p23g-mvhj-jh3j · CVSS 7.5GeoLens: Cross-dataset authorization bypass discloses private dataset metadata, schema, sample values, table rows, and raster/vector tile data
-
High nvd · CVE-2026-64868 · CVSS 7.5CVE-2026-64868: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. Prior to 1.0.0-
-
High nvd · CVE-2025-27770 · CVSS 7.4CVE-2025-27770: UpTrain is an open-source platform to evaluate and improve generative AI applications. In version 0.7.1 and prior, the `
-
High nvd · CVE-2025-27771 · CVSS 7.4CVE-2025-27771: UpTrain is an open-source platform to evaluate and improve generative AI applications. In version 0.7.1 and prior, the `
-
High nvd · CVE-2025-27772 · CVSS 7.4CVE-2025-27772: UpTrain is an open-source platform to evaluate and improve generative AI applications. In version 0.7.1 and prior, the `
-
High nvd · CVE-2026-75857 · CVSS 7.3CVE-2026-75857: CodeWhale versions >= 0.8.41 and < 0.8.64 contain a vulnerability in the exec_shell_interact (alias exec_interact) tool,
-
High nvd · CVE-2026-62676 · CVSS 7.1CVE-2026-62676: Omnigent is an open-source AI agent framework and meta-harness for orchestrating coding agents. Prior to 0.3.0, the shar
-
High nvd · CVE-2026-69148 · CVSS 7.1CVE-2026-69148: MLflow is an open source AI engineering platform for agents, large language models, and machine learning models. Prior t
-
High github · GHSA-gqch-g4w5-7qcw · CVSS 7.1MLflow: CreateModelVersion source validation does not check READ permission on referenced run_id
-
Medium nvd · CVE-2026-78147 · CVSS 6.9CVE-2026-78147: A vulnerability was found in ggml-org llama.cpp bec4772f6. The impacted element is the function deserialize_tensor of th
-
Medium nvd · CVE-2026-75104 · CVSS 6.8CVE-2026-75104: Hugging Face Transformers fails to validate shard filenames in checkpoint index files, allowing attackers to read arbitr
-
Medium github · GHSA-q87f-qc2r-2gw4 · CVSS 6.5SearXNG MCP Server is Vulnerable to SSRF in web_url_read: the internal-address guard is disabled by default (MCP_HTTP_HARDEN off)
-
Medium nvd · CVE-2026-47606 · CVSS 6.5CVE-2026-47606: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could cause an absolute path travers
-
Medium nvd · CVE-2026-68923 · CVSS 6.5CVE-2026-68923: MobSF is a mobile application security testing tool used. Prior to 4.5.1, mobsf/MobSF/settings.py places django.middlewa
-
Medium nvd · CVE-2026-69146 · CVSS 6.5CVE-2026-69146: MLflow is an open source AI engineering platform for agents, large language models, and machine learning models. From 3.
-
Medium github · GHSA-3p64-6gvh-82v5 · CVSS 6.5MLflow: LogInputs endpoint bypasses per-run UPDATE authorization in basic-auth
-
Medium nvd · CVE-2026-73560 · CVSS 6.5CVE-2026-73560: vLLM is an inference and serving engine for large language models. Prior to 0.26.0, the MiMoV2OmniMultiModalProcessor in
-
Medium nvd · CVE-2026-75130 · CVSS 6.4CVE-2026-75130: Context7 through 2.1.2 contains a prompt injection vulnerability that allows attackers to execute malicious instructions
-
Medium nvd · CVE-2026-53656 · CVSS 6.3CVE-2026-53656: FiftyOne is an open-source platform for refining high-quality datasets and visual AI models. Prior to 1.17.0, the FiftyO
-
Medium github · GHSA-wppf-h75h-6pm6 · CVSS 6.3SearXNG MCP Server: Additional hardened-mode SSRF bypasses
-
Medium github · GHSA-8qf9-62x2-82pp · CVSS 6.1chrome-devtools-mcp: validatePath() does not canonicalize symlinks before enforcing roots
-
Medium nvd · CVE-2026-71492 · CVSS 6.0CVE-2026-71492: Banks generates meaningful LLM prompts using a simple template language. Prior to version 2.4.5, DirectoryPromptRegistry
-
Medium nvd · CVE-2026-64865 · CVSS 6.0CVE-2026-64865: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. Prior to 1.0.0-
-
Medium nvd · CVE-2026-76393 · CVSS 5.9CVE-2026-76393: In Splunk AI Toolkit versions below 6.0.0, a user who can upload models could overwrite a model being uploaded by anothe
-
Medium nvd · CVE-2026-53509 · CVSS 5.7CVE-2026-53509: CKAN MCP Server is a tool for querying CKAN open data portals. A known vulnerability CVE-2026-33060 indicated tools incl
-
Medium nvd · CVE-2026-47630 · CVSS 5.5CVE-2026-47630: NVIDIA Triton Inference Server for Linux contains a vulnerability where an attacker could cause an absolute path travers
-
Medium nvd · CVE-2026-68922 · CVSS 5.5CVE-2026-68922: MobSF is a mobile application security testing tool used. Prior to 4.5.1, find_icon_path_zip in mobsf/StaticAnalyzer/vie
-
Medium nvd · CVE-2026-72846 · CVSS 5.3CVE-2026-72846: Lightdash stores the webhook URL supplied with a scheduled delivery and later posts to it from sendWebhook in packages/b
-
Medium nvd · CVE-2026-17153 · CVSS 5.3CVE-2026-17153: The AI Agent by SiteGround plugin for WordPress is vulnerable to authorization bypass in all versions up to, and includi
-
Medium nvd · CVE-2026-75845 · CVSS 5.3CVE-2026-75845: ArcadeDB versions 26.4.2 through 26.7.3 contain an authorization bypass vulnerability in the set_server_setting MCP serv
-
Medium nvd · CVE-2026-64866 · CVSS 5.1CVE-2026-64866: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. From 0.9.1.3 un
-
Medium nvd · CVE-2026-68924 · CVSS 4.9CVE-2026-68924: MobSF is a mobile application security testing tool used. Prior to 4.5.1, the unzip function in mobsf/StaticAnalyzer/vie
-
Medium github · GHSA-x3g7-qrwc-f6c5 · CVSS 4.7Ember has unneutralized terminal escape/control sequences from Caddy logs injected into the operator's TUI
-
Medium nvd · CVE-2026-71486 · CVSS 4.3CVE-2026-71486: vLLM is an inference and serving engine for large language models. Prior to 0.26.0, the /v1/completions/derender and /v1
-
Low github · GHSA-8fxq-53rx-ph5f · CVSS 3.7Coder: Login endpoint user enumeration via timing-defense placeholder in password comparison
-
Low github · GHSA-h58c-xccx-75m3 · CVSS 3.4Coder: Stored HTML injection via unescaped ApplicationName and LogoURL appearance settings
-
Low nvd · CVE-2026-63632 · CVSS 3.3CVE-2026-63632: Open Neural Network Exchange (ONNX) is an open standard for machine learning interoperability. From 1.3.0 until 1.22.0,
-
Low github · GHSA-rxhg-vcww-2mpw · CVSS 3.1Fleet: ORDER BY column injection on activity list endpoints
-
Low osv · PYSEC-2026-3687 · CVSS 3.1MLflow: Unauthenticated full-read SSRF in webhook delivery: _validate_webhook_url bypassed via unvalidated HTTP redirects (and DNS rebinding)
-
Low osv · PYSEC-2026-3704 · CVSS 3.1vLLM: Completion prompt lists fan out into unbounded engine requests
-
Low osv · GHSA-7gwp-5pfp-969j · CVSS 3.1MLflow: Unauthenticated full-read SSRF in webhook delivery: _validate_webhook_url bypassed via unvalidated HTTP redirects (and DNS rebinding)
-
Low osv · PYSEC-2026-3686 · CVSS 3.0MLflow: trace API endpoints lack proper authorization validators
-
Low nvd · CVE-2026-68927 · CVSS 3.0CVE-2026-68927: MobSF is a mobile application security testing tool used. Prior to 4.5.1, get_browsable_activities in mobsf/StaticAnalyz
-
Low nvd · CVE-2026-75090 · CVSS 2.1CVE-2026-75090: A vulnerability was detected in EricLBuehler Mistral.rs up to 0.8.22. Affected by this issue is the function convert_ggu
-
High github · GHSA-7m52-jw36-44r3 · CVSS 0.0MCP PHP SDK: client HttpTransport SSE buffer (sseBuffer .= chunk) grows unbounded when server withholds the event delimiter
-
Medium github · GHSA-qwgh-2vcv-g2f7 · CVSS 0.0block_buffer: panic corrupts inline buffer position
-
Medium github · GHSA-vjf8-9fx6-mv6x · CVSS 0.0Triton VM Soundness Vulnerability due to Missing Constraint
-
Low github · GHSA-w26r-fwg8-rcp3 · CVSS 0.0MagicMirror Socket.IO module namespaces bypass configured IP whitelist and allow unauthenticated server-side actions
-
Medium github · GHSA-mpwr-8vm7-h73f · CVSS 0.0package pkcs12: Authentication bypass in Decode functions
-
High github · GHSA-j659-8xh6-5pq5 · CVSS 0.0atomic-agents-stack: Parallel helper/delegate batch reserves $0 for models absent from the pricing table, bypassing the cost-cap fan-out guard
-
High github · GHSA-xhcr-cqfr-m3hv · CVSS 0.0atomic-agents-stack: HTTP MCP catalog accepts cleartext http and spawns catalog-supplied commands (MITM to RCE)