VulnWatch Weekly: Critical RCE in MindsDB & Agentic Supply Chain Risks
This week's digest highlights a CVSS 10.0 RCE in MindsDB allowing unauthenticated command execution via LLM prompts. We also analyze critical prototype pollution in Trigger.dev, template injection in Prompty, and widespread SSRF/RCE risks in the emerging Model Context Protocol (MCP) ecosystem.
Week in Review: The Age of Agentic Exploitation
Executive Summary
The week of August 10–16, 2026, marks a disturbing shift in the AI vulnerability landscape from theoretical prompt injection to concrete, unauthenticated Remote Code Execution (RCE) in production agent platforms. The single most urgent item is CVE-2026-73678 in MindsDB, a CVSS 10.0 vulnerability allowing attackers to execute arbitrary OS commands by submitting crafted prompts to an unprotected endpoint that directly invokes Python's exec(). Beyond this critical outlier, the dominant theme is the fragility of the "agentic" supply chain; we observed multiple high-severity flaws in orchestration layers like Trigger.dev and Flowise where missing authorization checks allow tenants to hijack workflows, pollute global prototypes, and exfiltrate data across trust boundaries. Security teams must immediately pivot from treating LLMs as stateless text processors to securing them as privileged execution engines capable of modifying host state.
Top Items of the Week
The following vulnerabilities represent the highest immediate risk to AI infrastructure. Prioritize patching or mitigating these items before the next sprint.
-
CVE-2026-73678 (MindsDB)
- Severity: Critical (CVSS 10.0)
- Component: Minds Platform (Agent Scratchpad)
- Impact: Unauthenticated Remote Code Execution. Attackers can configure their own LLM keys and submit prompts that trigger the
Antonagent's scratchpad tool, executing arbitrary Python code viaexec()without sandboxing. - Action: Upgrade to MindsDB > 26.1.0 immediately. If patching is delayed, block external access to
/api/v1/responses/and/api/v1/settings/at the WAF level. - Source
-
CVE-2026-73299 (Prompty)
- Severity: Critical (CVSS 10.0)
- Component: TypeScript Nunjucks Renderer
- Impact: Server-Side Template Injection (SSTI) leading to RCE. Untrusted
.promptyfiles are evaluated with unrestricted JavaScript member access, allowing prototype traversal and code execution in the host Node.js process. - Action: Update Prompty to v0.1.5 or v2.0.0-beta.5. Audit all stored prompt templates for untrusted input sources.
- Source
-
CVE-2026-73656 (Trigger.dev)
- Severity: Critical (CVSS 9.9)
- Component: Deployment Background Worker Service
- Impact: Horizontal Privilege Escalation / Tenant Isolation Break. Attackers with a valid API key for one project can link their background workers to victim deployments by exploiting a missing
environmentIdpredicate. - Action: Upgrade Trigger.dev to v4.5.6. Review logs for cross-project deployment ID enumeration.
- Source
-
CVE-2026-73032 (PapersGPT for Zotero)
- Severity: Critical (CVSS 9.4)
- Component: Views Module (
window.eval) - Impact: RCE via Prompt Injection. Malicious code returned from an LLM endpoint is passed unsanitized to
window.eval(), executing in Zotero's chrome-privileged context. - Action: Update PapersGPT to > 0.6.1. Disable custom LLM endpoints until patched.
- Source
-
CVE-2026-72776 (AgenticSeek)
- Severity: Critical (CVSS 9.3)
- Component: Query API (
/query) - Impact: Unauthenticated RCE. The autonomous agent executes shell commands via
subprocess.Popen(shell=True)based on unauthenticated HTTP requests, bypassing incomplete blocklists. - Action: Restrict network access to port 7777. Upgrade AgenticSeek immediately.
- Source
-
CVE-2026-73654 (Trigger.dev)
- Severity: High (CVSS 8.5)
- Component: Run Metadata API
- Impact: Prototype Pollution. Attacker-controlled
operation.keyvalues allow pollution ofObject.prototype, corrupting Prisma queries and breaking tenant authentication. - Action: Upgrade to v4.5.6. Implement strict input validation on JSON path segments.
- Source
-
CVE-2026-73487 (Flowise)
- Severity: Critical (CVSS 9.0)
- Component: CSV and Airtable Agent Nodes
- Impact: Validator Bypass leading to SSRF/Data Exfiltration. Regex-based validation fails to block malicious pandas functions like
pd.read_json()injected via prompts. - Action: Upgrade Flowise to v3.1.3+. Disable unauthenticated prediction APIs.
- Source
-
CVE-2026-72642 (Elasticsearch)
- Severity: High (CVSS 8.8)
- Component: Native Inference Process
- Impact: Heap Corruption / Potential RCE. Crafted ML models can compute memory addresses outside allocation bounds during inference.
- Action: Restrict model upload privileges. Apply vendor patches for Elasticsearch ML modules.
- Source
Theme: The Agentic Supply Chain Crisis
The most alarming trend this week is the systemic failure of isolation mechanisms in AI agent orchestration platforms. As organizations adopt tools like Trigger.dev, Flowise, and AutoGPT to chain LLM calls with external tools, the attack surface has expanded from the model itself to the glue code binding them.
Trigger.dev suffered a trifecta of vulnerabilities this week. Beyond the critical tenant isolation break (CVE-2026-73656), we identified CVE-2026-73654, a classic Prototype Pollution vulnerability in the metadata handling logic. By injecting __proto__ keys into the operation.key field, an authenticated attacker can corrupt the shared Node.js runtime, affecting all tenants on the instance. Furthermore, CVE-2026-73658 reveals a path traversal issue in the S3 presigning logic, where URL normalization allows attackers to access objects outside their designated bucket prefixes. Finally, CVE-2026-73655 demonstrates an account takeover vector via Google OAuth, where the platform fails to verify email_verified claims, allowing attackers to link unverified emails to existing accounts.
Similarly, Flowise continues to struggle with the complexity of sanitizing dynamic code execution within its agent nodes. CVE-2026-73487 highlights the danger of regex-based allowlists; attackers simply switched from blocked functions to allowed pandas methods that still facilitate SSRF or file reads. This is compounded by CVE-2026-71962, where a missing authorization check in the OpenAI Assistants file download endpoint allows unauthenticated users to retrieve private files from any chatflow on the instance simply by guessing IDs.
AutoGPT also exposed a significant logic flaw in CVE-2026-72922. The webhook ingress router selects the verification manager based on an untrusted URL segment. An attacker can force the system to use a "no-op" verifier instead of the strict signature checker, effectively bypassing webhook security entirely. These incidents collectively suggest that the "low-code" agent builders are currently outpacing their security maturity, creating high-risk environments for enterprise data.
Theme: Model Context Protocol (MCP) & Tooling Risks
The Model Context Protocol (MCP) is rapidly becoming the standard for connecting LLMs to local resources, but this week's entries reveal it is also becoming a primary vector for local privilege escalation and SSRF.
Multiple MCP servers were found to blindly trust user input when executing system commands. GHSA-49mq-fc6q-3h46 in token-optimizer-mcp allows OS command injection via the username parameter in a shell command constructed with execAsync(). Similarly, GHSA-49m4-vp58-wgc9 in stata-mcp permits Stata command injection through the package argument, leading to full OS-level execution. These vulnerabilities underscore a critical development error: treating LLM-generated or user-supplied strings as safe for interpolation into shell contexts.
SSRF remains a pervasive issue in this category. CVE-2026-49857 in auth-fetch-mcp demonstrates a subtle bypass of IPv6 protection logic; by using IPv4-mapped IPv6 addresses (e.g., ::ffff:127.0.0.1), attackers can trick the server into accessing localhost resources. CVE-2026-19753 in mcp-rdf-explorer and CVE-2026-73498 in MCP Atlassian further illustrate how file path and URL parameters are often passed directly to underlying APIs without validation, enabling data exfiltration.
Even established IDEs are not immune. Cursor IDE had two high-severity issues: CVE-2026-73217 allows an agent in sandbox mode to replace the Python executable in a virtual environment, escaping the sandbox, while CVE-2026-73218 allows the agent to launch privileged Docker containers mounting the host's home directory. These bugs effectively neutralize the "sandbox" promise of AI coding assistants.
Theme: Inference Engine & Data Leakage
At the infrastructure layer, inference engines and vector stores showed signs of strain under adversarial load. vLLM had a particularly rough week with multiple Denial of Service (DoS) and data leakage vectors. CVE-2026-73559 allows an authenticated user to exhaust CPU and memory by sending a request with an unbounded list of prompts, causing the engine to spawn a generator for each. More concerning is CVE-2026-73558, an integer overflow in the CUDA kernel that can cause one user's request to inadvertently receive another user's inference results—a severe multi-tenant data leakage bug.
Elasticsearch and Kibana also reported significant issues. CVE-2026-72675 in Kibana Machine Learning fails to apply space filters correctly, allowing users to access ML data across different logical spaces. In Elasticsearch, CVE-2026-72642 (mentioned above) poses a risk of heap corruption via crafted model offsets.
Data leakage was also evident in TypeBot (CVE-2026-48766), where low-privilege guests could exfiltrate stored OpenAI API keys by manipulating the baseUrl parameter in model-listing calls. This highlights the danger of dynamic configuration options in multi-tenant SaaS AI wrappers.
Theme: Prompt Injection Evolution
While RCE grabs headlines, prompt injection remains the root cause of many exploits. CVE-2026-73032 (PapersGPT) and CVE-2026-73487 (Flowise) show that injection is no longer just about tricking the model into saying something rude; it is now a reliable mechanism for driving tool use and code execution.
Notably, CVE-2026-21832 in HCL AION demonstrates "indirect" prompt injection leading to HTML injection in rendered output, proving that the attack chain can extend from the LLM input to the final user interface, potentially facilitating XSS attacks against human users. The Prompty vulnerability (CVE-2026-73299) is particularly insidious because the injection happens at the template rendering stage, before the prompt even reaches the LLM, bypassing many runtime guardrails.
Known Exploited Items
- Status: As of this week, there are no entries in our dataset marked with
is_exploited=true. - Analysis: While active exploitation in the wild has not yet been confirmed for these specific CVEs, the simplicity of the exploit chains (particularly for MindsDB and AgenticSeek) suggests that weaponization is imminent. The MindsDB vulnerability, for instance, requires only an HTTP POST request with a crafted JSON body. Security teams should assume these are "weaponizable" within 48 hours of disclosure.
What to Do This Week
- Patch MindsDB and Trigger.dev Immediately: These are your highest priority. The MindsDB RCE is trivial to exploit, and the Trigger.dev isolation breaks compromise the integrity of your entire agent workflow platform.
- Audit MCP Servers: Inventory all Model Context Protocol servers running in your environment. Specifically, check for versions of
token-optimizer-mcp,stata-mcp, andauth-fetch-mcp. If you cannot patch immediately, disable the specific tools that accept file paths or shell arguments. - Enforce Strict Input Validation on Agent Tools: Review the code for any custom tools exposed to your LLM agents. Ensure that no string interpolation is used to construct shell commands or SQL queries. Use parameterized APIs exclusively.
- Isolate Inference Engines: For vLLM and similar engines, implement rate limiting on the
promptarray size at the load balancer level to prevent the DoS conditions described in CVE-2026-73559. - Review OAuth Flows: If you use Google OAuth for agent platforms (like Trigger.dev), enforce strict
email_verifiedchecks in your identity provider configuration and application logic.
What to Watch Next Week
Next week, we anticipate a surge in reports regarding "Model Poisoning" in the open-source weight repositories. With the increased focus on supply chain security, expect researchers to publish proofs-of-concept showing how malicious tensors in Hugging Face models can trigger the memory corruption bugs seen in Elasticsearch and vLLM. Additionally, keep an eye on Cross-Tenant Prompt Leakage in multi-tenant SaaS LLM gateways, as the logic errors seen in TypeBot and Flowise are likely present in other wrapper services. Finally, monitor the PostgreSQL ecosystem closely; the type confusion vulnerability (CVE-2026-16239) reported this week could have downstream effects on any AI application using Postgres as a vector store or state backend.
Covered entries (68)
-
Critical nvd · CVE-2026-73678 · CVSS 10.0CVE-2026-73678: MindsDB Minds Platform version 26.1.0 and earlier contains an unauthenticated remote code execution vulnerability that a
-
Critical nvd · CVE-2026-73299 · CVSS 10.0CVE-2026-73299: Prompty is a markdown file format (.prompty) for LLM prompts. Prior to 0.1.5 and 2.0.0-beta.5, the TypeScript Nunjucks r
-
Critical nvd · CVE-2026-73656 · CVSS 9.9CVE-2026-73656: Trigger.dev is a platform for building and deploying fully managed AI agents and workflows. Prior to 4.5.6, POST /api/v1
-
Critical nvd · CVE-2026-15826 · CVSS 9.8CVE-2026-15826: The User Profile Builder plugin for WordPress is vulnerable to Authentication Bypass via Type Confusion in versions up t
-
Critical nvd · CVE-2026-73032 · CVSS 9.4CVE-2026-73032: PapersGPT for Zotero 0.6.1 contains a remote code execution vulnerability that allows attackers to execute arbitrary Jav
-
Critical nvd · CVE-2026-72776 · CVSS 9.3CVE-2026-72776: AgenticSeek (commit fc242c7) contains an unauthenticated remote code execution vulnerability that allows any network-adj
-
Critical nvd · CVE-2026-72904 · CVSS 9.3CVE-2026-72904: Firecrawl turns entire websites into LLM-ready markdown or structured data. Prior to 2.11.32, a critical arbitrary file
-
Critical nvd · CVE-2026-19297 · CVSS 9.1CVE-2026-19297: IBM Langflow OSS 1.0.0 through 1.9.6 could allow a remote attacker to obtain unauthorized access to user accounts due to
-
Critical nvd · CVE-2026-73487 · CVSS 9.0CVE-2026-73487: Flowise before 3.1.3 contains a regex-based Python code validator bypass in CSV and Airtable Agent nodes that allows una
-
High nvd · CVE-2026-72642 · CVSS 8.8CVE-2026-72642: The native inference process that Elasticsearch uses to evaluate uploaded machine learning models accepts a model operat
-
High nvd · CVE-2026-16239 · CVSS 8.8CVE-2026-16239: Type confusion in PostgreSQL "portal"/cursor lifecycle allows a user to execute arbitrary code as the operating system u
-
High nvd · CVE-2026-73222 · CVSS 8.8CVE-2026-73222: Claude Code Templates is a CLI tool for configuring and monitoring Claude Code. Prior to 1.29.4, the Claude Code Studio
-
High nvd · CVE-2026-15555 · CVSS 8.8CVE-2026-15555: A flaw was found in JBoss marshalling. The Infinispan session replication path deserializes replicated session data via
-
High nvd · CVE-2026-73614 · CVSS 8.7CVE-2026-73614: Network-AI ClaudeHookBridge before 5.15.1 truncates the target string to 500 characters before evaluating denyPatterns,
-
High nvd · CVE-2026-71962 · CVSS 8.7CVE-2026-71962: Flowise versions 2.2.4 through 3.1.4 contain a missing authorization vulnerability in the POST /api/v1/openai-assistants
-
High nvd · CVE-2026-73654 · CVSS 8.5CVE-2026-73654: Trigger.dev is a platform for building and deploying fully managed AI agents and workflows. From 3.3.8 until 4.5.6, the
-
High nvd · CVE-2026-73079 · CVSS 8.5CVE-2026-73079: Sub2API is an AI API gateway platform designed to distribute and manage API quotas from AI product subscriptions. From 0
-
High github · GHSA-49mq-fc6q-3h46 · CVSS 8.4Token Optimizer MCP: OS command injection in smart_user via username in get-user-info
-
High github · GHSA-49m4-vp58-wgc9 · CVSS 8.4MCP-for-Stata: Stata Command Injection via Unsanitized `package` in `ado_package_install`
-
High nvd · CVE-2026-73658 · CVSS 8.2CVE-2026-73658: Trigger.dev is a platform for building and deploying fully managed AI agents and workflows. From 4.4.2 until 4.5.0-rc.5,
-
High nvd · CVE-2026-72922 · CVSS 8.2CVE-2026-72922: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
High nvd · CVE-2026-70335 · CVSS 7.8CVE-2026-70335: Improper neutralization of special elements used in an os command ('os command injection') in GitHub Copilot and Visual
-
High nvd · CVE-2026-73498 · CVSS 7.7CVE-2026-73498: MCP Atlassian is a Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). Prior to 0.22.0, co
-
High nvd · CVE-2026-73218 · CVSS 7.7CVE-2026-73218: Cursor is a code editor built for programming with AI. Prior to 3.0.0, Cursor IDE for macOS allows an agent running in A
-
High nvd · CVE-2026-73217 · CVSS 7.7CVE-2026-73217: Cursor is a code editor built for programming with AI. Prior to 3.1.2, Cursor IDE for macOS allows an agent running in A
-
High nvd · CVE-2026-73264 · CVSS 7.6CVE-2026-73264: Prowler is a cloud security platform. Prior to 5.33.1, an authenticated user with Lighthouse provider configuration acce
-
High nvd · CVE-2026-48766 · CVSS 7.6CVE-2026-48766: TypeBot is a chatbot builder tool. Versions prior to 3.17.0 allow a low-privilege guest member of a workspace to exfiltr
-
High nvd · CVE-2026-67579 · CVSS 7.5CVE-2026-67579: Deserialization of Untrusted Data vulnerability in ash-project ash allows an unauthenticated attacker to inject a filter
-
High github · GHSA-jwjp-4649-v8jp · CVSS 7.5SIPSorcery vulnerable to Denial of Service via out-of-bounds read in SCTP SACK chunk parsing
-
High nvd · CVE-2026-73655 · CVSS 7.4CVE-2026-73655: Trigger.dev is a platform for building and deploying fully managed AI agents and workflows. Prior to 4.5.2, addGoogleStr
-
High nvd · CVE-2026-49857 · CVSS 7.4CVE-2026-49857: auth-fetch-mcp is an MCP server that lets AI assistants fetch content from authenticated web pages. Version 3.0.1 implem
-
High nvd · CVE-2026-49986 · CVSS 7.1CVE-2026-49986: The Cortex MCP server (`neuro-cortex-memory`), a cross-platform persistent memory MCP, prior to version 3.17.1 treats th
-
High nvd · CVE-2026-72675 · CVSS 7.1CVE-2026-72675: Missing Authorization (CWE-862) in Kibana can lead to cross-space information disclosure and unauthorized data modificat
-
High nvd · CVE-2026-65675 · CVSS 7.1CVE-2026-65675: No cwe for this issue in Visual Studio Code CoPilot Chat Extension allows an unauthorized attacker to bypass a security
-
High nvd · CVE-2026-72771 · CVSS 7.1CVE-2026-72771: n8n versions before 2.32.1 fail to enforce the Allowed HTTP Request Domains allowlist in multiple AI and LLM nodes when
-
High nvd · CVE-2026-72718 · CVSS 7.0CVE-2026-72718: goose is general-purpose AI agent that runs on your machine. Prior to 1.44.0, the `goose review` command runs the system
-
Medium nvd · CVE-2026-69112 · CVSS 6.9CVE-2026-69112: Hugging Face Accelerate through 1.14.0 contains a path traversal vulnerability in load_checkpoint_in_model and load_chec
-
Medium github · GHSA-vqfp-p66c-xrp9 · CVSS 6.8ep_etherpad-lite: Device-to-device author-token transfer endpoint is replayable, never expires, and exposes the cleartext author token
-
Medium nvd · CVE-2026-27765 · CVSS 6.8CVE-2026-27765: Improper input validation for some vLLM Hardware Plugin for Intel(R) Gaudi(R) software before version 0.16.0 within Ring
-
Medium nvd · CVE-2026-9767 · CVSS 6.5CVE-2026-9767: The The School Management – Education & Learning ERP plugin for WordPress is vulnerable to generic SQL Injection via 'or
-
Medium nvd · CVE-2026-73846 · CVSS 6.5CVE-2026-73846: CKAN MCP Server is a tool for querying CKAN open data portals. Prior to 0.4.112, canonicalizeParams in src/utils/cache.t
-
Medium nvd · CVE-2026-72680 · CVSS 6.5CVE-2026-72680: Kibana Agent Builder A2A JSON-RPC API endpoint derives the identifier of a stored conversation from a user-supplied inpu
-
Medium nvd · CVE-2026-73559 · CVSS 6.5CVE-2026-73559: vLLM is an inference and serving engine for large language models. From 0.19.0 until 0.26.0, the /v1/completions Complet
-
Medium nvd · CVE-2026-73557 · CVSS 6.3CVE-2026-73557: vLLM is an inference and serving engine for large language models. From 0.20.2rc0 until 0.26.0, safe_load_prompt_embeds
-
Medium nvd · CVE-2026-73603 · CVSS 6.3CVE-2026-73603: Flowise before 3.1.4 fails to validate chatflow visibility in the unauthenticated text-to-speech endpoint, allowing atta
-
Medium github · GHSA-fjgc-3mj7-8rg8 · CVSS 6.1ep_etherpad-lite: Cache-poisoning Cross-site Scripting and Open Redirect via x-proxy-path Header
-
Medium nvd · CVE-2026-73068 · CVSS 5.9CVE-2026-73068: ToolJet is the open-source foundation am AI-native platform for building and deploying internal tools, workflows and AI
-
Medium nvd · CVE-2026-72917 · CVSS 5.9CVE-2026-72917: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
Medium nvd · CVE-2026-19753 · CVSS 5.5CVE-2026-19753: A vulnerability was detected in Model Context Protocol mcp-rdf-explorer 1.0.0. Affected is the function explore_url of t
-
Medium nvd · CVE-2026-12570 · CVSS 5.5CVE-2026-12570: A vulnerability in keras-team/keras versions <= 3.15.0 allows for a denial of service (DoS) attack when loading maliciou
-
Medium nvd · CVE-2026-48762 · CVSS 5.4CVE-2026-48762: TypeBot is a chatbot builder tool. Prior to version 3.16.0, the OpenAI "Create Transcription" action handler fetches a u
-
Medium nvd · CVE-2026-24693 · CVSS 5.4CVE-2026-24693: Protection mechanism failure for some Intel(R) oneCCL Bindings for PyTorch before version v2.8.0 within Ring 3: User App
-
Medium nvd · CVE-2026-28707 · CVSS 5.4CVE-2026-28707: Protection mechanism failure for some LLM-on-Ray before version 1.0 within Ring 3: User Applications may allow an escala
-
Medium nvd · CVE-2026-21387 · CVSS 5.4CVE-2026-21387: Protection mechanism failure for some Intel(R) LLM Library for PyTorch within Ring 3: User Applications may allow an esc
-
Medium nvd · CVE-2026-20755 · CVSS 5.4CVE-2026-20755: Protection mechanism failure for some LLM Scaler software within Ring 3: User Applications may allow an escalation of pr
-
Medium nvd · CVE-2026-20728 · CVSS 5.4CVE-2026-20728: Protection mechanism failure for some Intel Extension for TensorFlow software before version 2.15.0.3 within Ring 3: Use
-
Medium nvd · CVE-2026-73845 · CVSS 5.3CVE-2026-73845: CKAN MCP Server is a tool for querying CKAN open data portals. Prior to 0.4.112, the ckan_get_mqa_quality and ckan_get_m
-
Medium nvd · CVE-2026-73558 · CVSS 5.3CVE-2026-73558: vLLM is an inference and serving engine for large language models. Prior to 0.27.0, an integer overflow in blockIdx.x *
-
Medium nvd · CVE-2026-73556 · CVSS 5.3CVE-2026-73556: vLLM is an inference and serving engine for large language models. Prior to 0.26.0, the structured_outputs.regex paramet
-
Medium nvd · CVE-2026-73555 · CVSS 5.3CVE-2026-73555: vLLM is an inference and serving engine for large language models. Prior to 0.26.0, the validation_exception_handler in
-
Medium nvd · CVE-2026-35502 · CVSS 4.6CVE-2026-35502: Deserialization of untrusted data for some Intel(R) Extension for PyTorch before version 2.8.0 within Ring 3: User Appli
-
Medium nvd · CVE-2026-72671 · CVSS 4.3CVE-2026-72671: A Kibana Machine Learning capability that removes a saved object from the current space accepts machine learning trained
-
Medium nvd · CVE-2026-49856 · CVSS 4.3CVE-2026-49856: @jshookmcp/jshook is an MCP server that gives AI agents tools for JavaScript analysis and security research. In version
-
Medium nvd · CVE-2026-21832 · CVSS 4.3CVE-2026-21832: HCL AION is affected by a vulnerability where indirect prompt injection can lead to HTML injection in rendered output. I
-
Medium nvd · CVE-2026-73657 · CVSS 4.2CVE-2026-73657: Trigger.dev is a platform for building and deploying fully managed AI agents and workflows. From 4.4.2 until 4.5.0-rc.4,
-
Medium github · GHSA-2jwf-f4xq-f24h · CVSS 4.2ep_etherpad-lite: Import/export uses Math.random() for temp file paths; predictable paths on shared /tmp enable symlink-based file overwrite
-
Low nvd · CVE-2026-73844 · CVSS 3.7CVE-2026-73844: CKAN MCP Server is a tool for querying CKAN open data portals. Prior to 0.4.112, error paths reflect raw upstream respon
-
Low osv · GHSA-87x5-vmc3-756j · CVSS 3.1vLLM: Completion prompt lists fan out into unbounded engine requests