VulnWatch Weekly: Oracle Coherence Flood, Supply Chain Poisoning, and Agentic RCE
This week saw an unprecedented flood of Oracle Coherence RCEs, a critical npm supply chain compromise, and severe agentic vulnerabilities in M365 Copilot and PraisonAI. Immediate patching and supply chain audits are required.
Week in Review: July 20–26, 2026
Executive Summary
The week of July 20–26, 2026, will be remembered as one of the most volatile periods for AI infrastructure security in recent memory, defined by three dominant themes: a historic cascade of Remote Code Execution (RCE) vulnerabilities in Oracle Coherence, a sophisticated supply chain poisoning attack targeting the Node.js ecosystem, and the maturation of "agentic" exploitation techniques that turn AI assistants into direct attack vectors. The single most urgent item for all CISOs and platform teams is the compromise of the @beproduct/nestjs-auth npm package (CVE-2026-46412), which actively harvested cloud credentials and tokens from CI/CD environments, necessitating an immediate rotation of all secrets in affected pipelines. While the sheer volume of Oracle Coherence CVEs is staggering, the stealthy nature of the supply chain attack and the emergence of unauthenticated RCE in major AI platforms like M365 Copilot represent a fundamental shift in the threat landscape that requires immediate, decisive action.
Top Items of the Week
The following entries represent the highest-impact vulnerabilities discovered this week. These items demand immediate attention from security engineering and ML platform teams.
-
CVE-2026-46412 | Critical (10.0) | Supply Chain / Credential Harvesting
- Affected Component:
@beproduct/nestjs-auth(npm) - Impact: Malicious versions published via compromised token harvested npm, GitHub, AWS, and Vault secrets from build environments.
- Recommended Action: Immediately audit
package-lock.jsonfor versions 0.1.2–0.1.19. Rotate all credentials (AWS keys, GitHub PATs, OIDC tokens) exposed in any environment where this package was installed. View Advisory
- Affected Component:
-
CVE-2026-50517 | Critical (9.9) | RCE in AI Assistant
- Affected Component: Microsoft M365 Copilot
- Impact: Deserialization of untrusted data allows authorized attackers to execute arbitrary code over the network.
- Recommended Action: Apply Microsoft's emergency patch immediately. Review logs for anomalous deserialization events in Copilot connectors. View Advisory
-
GHSA-w28w-gp39-m4p6 | Critical (10.0) | SSTI to RCE
- Affected Component:
@prompty/core(Nunjucks Renderer) - Impact: Server-Side Template Injection allows unrestricted JavaScript execution in the host Node.js process via crafted
.promptyfiles. - Recommended Action: Upgrade
@prompty/coreto the latest patched version. Audit all user-supplied template inputs for SSTI payloads. View Advisory
- Affected Component:
-
CVE-2026-47391 | Critical (9.8) | Agentic RCE
- Affected Component: PraisonAI (A2A Server)
- Impact: Unauthenticated A2A JSON-RPC endpoint exposes a
calculatetool using Pythoneval(), leading to arbitrary code execution. - Recommended Action: Disable the A2A server example in production. Upgrade to PraisonAI v4.6.40+ and restrict network access to agent endpoints. View Advisory
-
CVE-2026-65700 | Critical (9.3) | Path Traversal / Auth Bypass
- Affected Component: h2oGPT
- Impact: Path traversal in the OpenAI-compatible files API allows unauthenticated read/write/delete of arbitrary files via bearer token manipulation.
- Recommended Action: Upgrade h2oGPT to >0.2.1. Implement strict allowlisting for file API paths and enforce non-empty API keys. View Advisory
-
CVE-2026-60217, CVE-2026-60308, et al. | Critical (9.8–10.0) | Oracle Coherence RCE
- Affected Component: Oracle Coherence (Multiple versions)
- Impact: Dozens of easily exploitable vulnerabilities allow unauthenticated network attackers to take over Oracle Coherence instances.
- Recommended Action: This is a mass-exploitation event. Apply the July 2026 Critical Patch Update (CPU) immediately. Isolate Coherence ports from untrusted networks until patched. View NVD List
-
CVE-2026-63764 | Critical (9.2) | SSRF
- Affected Component: lmdeploy
- Impact: SSRF via crafted
image_urlredirects allows access to internal cloud metadata and loopback services. - Recommended Action: Patch lmdeploy. Implement egress filtering to block access to cloud metadata IPs (e.g., 169.254.169.254) from model serving pods. View Advisory
-
CVE-2026-57495 | High (8.2) | Indirect Prompt Injection
- Affected Component: AgenticMail (
@agenticmail/claudecode) - Impact: Inbound email triggers session resumption with
permissionMode: 'bypassPermissions', allowing attackers to hijack Claude Code sessions. - Recommended Action: Upgrade AgenticMail packages immediately. Audit email bridges for unauthorized session activations. View Advisory
- Affected Component: AgenticMail (
The Oracle Coherence Deluge
The most visually striking aspect of this week's digest is the sheer volume of vulnerabilities disclosed in Oracle Coherence. We tracked over 40 distinct CVEs (ranging from CVE-2026-60197 to CVE-2026-60309) affecting the Core component of Oracle Fusion Middleware. While the NVD entries often share similar descriptions, they represent a complex matrix of attack vectors including TCP, HTTP, HTTPS, HTTP/2, T3, and IIOP protocols.
The severity is uniformly critical, with dozens of entries carrying CVSS scores of 9.8 and 10.0. The common thread is "easily exploitable" and "unauthenticated attacker with network access," resulting in full takeover of the Coherence cluster. For organizations running Coherence as a caching or data grid layer for AI inference pipelines or vector stores, this is a catastrophic exposure. The attack surface is vast, covering versions 12.2.1.4.0 through 15.1.1.0.0.
Actionable Insight: Do not attempt to triage these individually. Treat this as a singular, critical infrastructure failure. The Oracle July 2026 Critical Patch Update must be applied across the board. Until patching is complete, network-level isolation of Coherence ports (default 7001, 8088, etc.) is mandatory. Assume any exposed instance is already compromised.
Supply Chain Poisoning and CI/CD Compromise
Beyond the Oracle flood, the most insidious threat emerged from the npm registry. CVE-2026-46412 details a supply chain attack where an attacker utilized a compromised publish token to release 18 malicious versions of @beproduct/nestjs-auth. Unlike typical defacements, this payload was designed for silent exfiltration. The post-install script scanned for ~/.npmrc, GitHub tokens (gho_*), AWS credentials, and HashiCorp Vault tokens, exfiltrating them to an attacker-controlled server.
This incident highlights the fragility of the software supply chain, particularly for packages integrated into CI/CD pipelines where high-privilege credentials are routinely present. The fact that the window of exposure was narrow (May 2026) but the impact potentially permanent (leaked long-lived keys) underscores the need for short-lived credentials and rigorous dependency scanning.
Additionally, we saw GHSA-6g55-p6wh-862q in PostCSS, where attacker-controlled sourceMappingURL comments could trigger arbitrary file reads, leaking file contents via error messages. While less severe than the npm compromise, it demonstrates how build tools continue to be a vector for information disclosure.
Agentic Vulnerabilities: When the Assistant Attacks
A significant thematic shift this week is the rise of vulnerabilities specific to AI Agents and Model Context Protocol (MCP) servers. As organizations deploy agents with tool-use capabilities, the attack surface has expanded from the model itself to the tools it can invoke.
- PraisonAI (CVE-2026-47391 & CVE-2026-47393): Two critical flaws were found. First, an unauthenticated A2A endpoint exposed a Python
eval()tool, allowing immediate RCE. Second, the default code generator deploys Flask servers with authentication disabled and binds to0.0.0.0. This is a classic "secure by default" failure that turns a helpful agent into a public shell. - AgenticMail (CVE-2026-57495): This vulnerability demonstrates the danger of indirect prompt injection. By sending a specifically crafted email, an attacker could trigger an agent to resume a coding session with permissions bypassed. This bridges the gap between external communication channels and internal privileged actions.
- MCP Server Flaws: Multiple MCP servers showed weaknesses. CVE-2026-47708 in MCP-for-Stata allowed command injection via unsanitized log file names. CVE-2026-46555 in the WhatsApp MCP Server allowed local processes to send messages and read files due to a lack of authentication on the localhost bridge. CVE-2026-44192 in Ansible Lightspeed MCP allowed path traversal via indirect prompt injection, enabling file writes to unauthorized locations.
- n8n (CVE-2026-65015): A privilege escalation flaw allowed Project Viewers to chat with an agent and execute arbitrary nodes, effectively bypassing role-based access controls to steal credentials.
These incidents confirm that tool authorization is the new perimeter. If an agent can be tricked into calling a tool, the security of that tool call is paramount.
Model Serving and Infrastructure Risks
The infrastructure layer supporting LLMs also faced significant challenges this week.
- h2oGPT (CVE-2026-65700): A severe path traversal vulnerability in the files API allowed unauthenticated attackers to read, write, and delete arbitrary files. The root cause was using the bearer token string directly as a path component without sanitization. This is a textbook example of how custom API implementations can introduce legacy web vulnerabilities into modern AI stacks.
- lmdeploy (CVE-2026-63764): An SSRF vulnerability allowed attackers to bypass URL safety checks by using HTTP redirects to point
image_urlparameters to internal metadata services. This poses a direct threat to cloud-hosted model instances. - Ollama (CVE-2026-65315): An uncontrolled memory allocation bug in the GGUF metadata parser allowed remote attackers to crash the server via crafted model files, leading to a denial of service.
- Prompty (GHSA-w28w-gp39-m4p6): As noted in the top items, the Nunjucks renderer in Prompty allowed SSTI to RCE, compromising the host Node.js process. This is particularly dangerous for applications that allow users to upload or define custom prompts.
Known Exploited Status
Fortunately, as of this writing, none of the vulnerabilities tracked this week are flagged as is_exploited: true in public databases. However, the nature of the Oracle Coherence flaws (easy, unauthenticated, network-accessible) and the public availability of the npm malicious package details suggests that active exploitation is highly probable in the wild, even if not yet formally confirmed by vendors. The window for proactive defense is closing rapidly.
What to Do This Week
- Rotate All Secrets: If your CI/CD pipelines or production environments installed
@beproduct/nestjs-authbetween May and July 2026, assume total compromise. Rotate AWS keys, GitHub tokens, npm tokens, and Vault credentials immediately. - Patch Oracle Coherence: Prioritize the application of the July 2026 Oracle CPU. Isolate Coherence nodes from the internet and untrusted internal segments until patched.
- Audit Agent Tooling: Review all MCP servers and Agentic frameworks in production. Ensure that:
- No tools use
eval()or unsanitized string interpolation for command execution. - Localhost bridges (like WhatsApp MCP) are authenticated or firewalled.
- Default deployments do not bind to
0.0.0.0without authentication.
- No tools use
- Sanitize Template Inputs: For applications using Prompty, Nunjucks, or similar templating engines with LLMs, enforce strict sandboxing and disable access to constructor/prototype properties.
- Egress Filtering: Block access to cloud metadata endpoints (169.254.169.254 and variants) from all model serving and agent runtime pods to mitigate SSRF risks.
What to Watch Next Week
Next week, we anticipate a surge in exploit scripts targeting the Oracle Coherence RCE chain, given the number of affected versions and the ease of exploitation. We will also be monitoring the npm registry for follow-on supply chain attacks mimicking the @beproduct incident, as attackers often strike while defenses are focused on a specific vector. Finally, expect deeper analysis on "Indirect Prompt Injection" as the AgenticMail vulnerability sets a precedent for using email and other asynchronous channels to hijack agent sessions.
Stay vigilant, patch aggressively, and assume your agents are already being probed.
Covered entries (120)
-
Critical github · GHSA-w28w-gp39-m4p6 · CVSS 10.0Prompty: Server-Side Template Injection to Remote Code Execution in the @prompty/core Nunjucks Renderer
-
Critical nvd · CVE-2026-60217 · CVSS 10.0CVE-2026-60217: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-46412 · CVSS 10.0CVE-2026-46412: @beproduct/nestjs-auth is a NestJS authentication module for BeProduct IDS (Identity Server) with OpenID Connect support
-
Critical nvd · CVE-2026-50517 · CVSS 9.9CVE-2026-50517: Deserialization of untrusted data in M365 Copilot allows an authorized attacker to execute code over a network.
-
Critical nvd · CVE-2026-60308 · CVSS 9.8CVE-2026-60308: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60306 · CVSS 9.8CVE-2026-60306: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60298 · CVSS 9.8CVE-2026-60298: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60297 · CVSS 9.8CVE-2026-60297: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60296 · CVSS 9.8CVE-2026-60296: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60299 · CVSS 9.8CVE-2026-60299: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60300 · CVSS 9.8CVE-2026-60300: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60302 · CVSS 9.8CVE-2026-60302: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60286 · CVSS 9.8CVE-2026-60286: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60287 · CVSS 9.8CVE-2026-60287: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60288 · CVSS 9.8CVE-2026-60288: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60289 · CVSS 9.8CVE-2026-60289: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60290 · CVSS 9.8CVE-2026-60290: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60285 · CVSS 9.8CVE-2026-60285: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60280 · CVSS 9.8CVE-2026-60280: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60279 · CVSS 9.8CVE-2026-60279: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60278 · CVSS 9.8CVE-2026-60278: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60274 · CVSS 9.8CVE-2026-60274: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60275 · CVSS 9.8CVE-2026-60275: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60276 · CVSS 9.8CVE-2026-60276: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60272 · CVSS 9.8CVE-2026-60272: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60269 · CVSS 9.8CVE-2026-60269: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60264 · CVSS 9.8CVE-2026-60264: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60262 · CVSS 9.8CVE-2026-60262: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60259 · CVSS 9.8CVE-2026-60259: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60258 · CVSS 9.8CVE-2026-60258: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60257 · CVSS 9.8CVE-2026-60257: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60256 · CVSS 9.8CVE-2026-60256: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60254 · CVSS 9.8CVE-2026-60254: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60253 · CVSS 9.8CVE-2026-60253: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60251 · CVSS 9.8CVE-2026-60251: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60244 · CVSS 9.8CVE-2026-60244: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60242 · CVSS 9.8CVE-2026-60242: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60246 · CVSS 9.8CVE-2026-60246: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60247 · CVSS 9.8CVE-2026-60247: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60250 · CVSS 9.8CVE-2026-60250: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60241 · CVSS 9.8CVE-2026-60241: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60240 · CVSS 9.8CVE-2026-60240: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60236 · CVSS 9.8CVE-2026-60236: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60234 · CVSS 9.8CVE-2026-60234: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60229 · CVSS 9.8CVE-2026-60229: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60232 · CVSS 9.8CVE-2026-60232: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60230 · CVSS 9.8CVE-2026-60230: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60228 · CVSS 9.8CVE-2026-60228: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60227 · CVSS 9.8CVE-2026-60227: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60226 · CVSS 9.8CVE-2026-60226: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60225 · CVSS 9.8CVE-2026-60225: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60224 · CVSS 9.8CVE-2026-60224: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60221 · CVSS 9.8CVE-2026-60221: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60219 · CVSS 9.8CVE-2026-60219: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60216 · CVSS 9.8CVE-2026-60216: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60209 · CVSS 9.8CVE-2026-60209: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60215 · CVSS 9.8CVE-2026-60215: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60210 · CVSS 9.8CVE-2026-60210: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60212 · CVSS 9.8CVE-2026-60212: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60197 · CVSS 9.8CVE-2026-60197: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-47393 · CVSS 9.8CVE-2026-47393: PraisonAI is a multi-agent teams system. CVE-2026-44338 (GHSA-6rmh-7xcm-cpxj) documents that PraisonAI ships a code-gene
-
Critical nvd · CVE-2026-47391 · CVSS 9.8CVE-2026-47391: PraisonAI is a multi-agent teams system. Prior to version 4.6.40, PraisonAI's first-party A2A server example exposes an
-
Critical nvd · CVE-2026-60239 · CVSS 9.6CVE-2026-60239: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-65700 · CVSS 9.3CVE-2026-65700: h2oGPT through 0.2.1 contains a path traversal vulnerability in the OpenAI-compatible files API that allows unauthentica
-
Critical nvd · CVE-2026-60248 · CVSS 9.3CVE-2026-60248: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60220 · CVSS 9.3CVE-2026-60220: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-47708 · CVSS 9.3CVE-2026-47708: MCP-for-Stata is an MCP server for Stata to integrate Stata into an agent. Prior to version 1.17.3, the `log_file_name`
-
Critical nvd · CVE-2026-63764 · CVSS 9.2CVE-2026-63764: lmdeploy's OpenAI-compatible API server contains a server-side request forgery vulnerability that allows unauthenticated
-
Critical nvd · CVE-2026-60267 · CVSS 9.1CVE-2026-60267: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Critical nvd · CVE-2026-60249 · CVSS 9.0CVE-2026-60249: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60309 · CVSS 8.8CVE-2026-60309: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60268 · CVSS 8.8CVE-2026-60268: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60261 · CVSS 8.8CVE-2026-60261: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60218 · CVSS 8.8CVE-2026-60218: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60211 · CVSS 8.8CVE-2026-60211: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High github · GHSA-649p-mmhf-85c7 · CVSS 8.8Gitea: Cached Per-Branch Permission Check in Pre-Receive Hook Allows Full Repository Write
-
High nvd · CVE-2026-66027 · CVSS 8.7CVE-2026-66027: Suna before 0.9.102 contains a broken access control vulnerability in the message queue API that allows authenticated at
-
High nvd · CVE-2026-65315 · CVSS 8.7CVE-2026-65315: Ollama (HEAD f0078ae) contains an uncontrolled memory allocation vulnerability in the GGUF metadata parser that allows r
-
High nvd · CVE-2026-60214 · CVSS 8.7CVE-2026-60214: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60235 · CVSS 8.6CVE-2026-60235: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). The supported version tha
-
High nvd · CVE-2026-65706 · CVSS 8.5CVE-2026-65706: FFmpeg versions 3.0 through 8.1.2 contain an out-of-bounds write vulnerability in the vf_swaprect video filter that allo
-
High nvd · CVE-2026-60295 · CVSS 8.5CVE-2026-60295: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-65056 · CVSS 8.3CVE-2026-65056: mcp-webresearch 0.1.7 contains a server-side request forgery vulnerability that allows attackers to access internal netw
-
High nvd · CVE-2026-60284 · CVSS 8.2CVE-2026-60284: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60255 · CVSS 8.2CVE-2026-60255: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-57495 · CVSS 8.2CVE-2026-57495: AgenticMail gives AI agents real email addresses and phone numbers. In @agenticmail/claudecode prior to version 0.2.39,
-
High nvd · CVE-2026-47255 · CVSS 8.2CVE-2026-47255: AgenticMail gives AI agents real email addresses and phone numbers. @agenticmail/api prior to version 0.9.32 and @agenti
-
High nvd · CVE-2026-60281 · CVSS 8.1CVE-2026-60281: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60277 · CVSS 8.1CVE-2026-60277: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60273 · CVSS 8.1CVE-2026-60273: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60222 · CVSS 8.1CVE-2026-60222: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60271 · CVSS 7.8CVE-2026-60271: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High github · GHSA-pvcr-8mvp-w8qr · CVSS 7.7Budibase: Chat-Link Handoff Identity Confusion (Same-Tenant Account-Link CSRF)
-
High nvd · CVE-2026-46555 · CVSS 7.7CVE-2026-46555: WhatsApp MCP Server is a Model Context Protocol (MCP) server for WhatsApp, enabling Claude to read and send WhatsApp mes
-
High github · GHSA-6g55-p6wh-862q · CVSS 7.5PostCSS: Arbitrary file read and information disclosure via attacker-controlled sourceMappingURL in CSS comments
-
High nvd · CVE-2026-60301 · CVSS 7.5CVE-2026-60301: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60263 · CVSS 7.5CVE-2026-60263: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60252 · CVSS 7.5CVE-2026-60252: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-60223 · CVSS 7.5CVE-2026-60223: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High github · GHSA-c8j7-8cv4-2xmq · CVSS 7.5Mistune plugins/formatting: quadratic-time parsing on long runs of `~~x~~`, `==x==`, and `^^x^^` markers (strikethrough / mark / insert)
-
High github · GHSA-4j32-57v6-6g45 · CVSS 7.5Mistune inline_parser: quadratic-time parsing on long runs of `**x**` and `***x***` emphasis pairs
-
High github · GHSA-j6g5-3hh3-pgw8 · CVSS 7.3AWS Bedrock AgentCore: Improper neutralization of argument delimiters in the Python SDK install_packages()
-
High nvd · CVE-2026-16584 · CVSS 7.3CVE-2026-16584: Improper handling of an initialization failure in AWS API MCP Server from 0.2.13 through 1.3.46 might allow an actor to
-
High nvd · CVE-2026-65015 · CVSS 7.2CVE-2026-65015: n8n versions before 2.30.1 contain a privilege escalation vulnerability in the AI Agents feature where the node-executio
-
High nvd · CVE-2026-60245 · CVSS 7.2CVE-2026-60245: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High github · GHSA-x2ff-v5v8-m75m · CVSS 7.1Open WebUI: Cross-channel message overwrite via chat completion API (single-model and multimodel message_ids)
-
High nvd · CVE-2026-65918 · CVSS 7.1CVE-2026-65918: PyTorch torchvision through 0.28.0, fixed in commit 4e05dc2, contains an out-of-bounds heap read vulnerability in the GI
-
High nvd · CVE-2026-60305 · CVSS 7.1CVE-2026-60305: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
High nvd · CVE-2026-57494 · CVSS 7.1CVE-2026-57494: AgenticMail gives AI agents real email addresses and phone numbers. In @agenticmail/api prior to version 0.9.64, a low-p
-
High github · GHSA-29w2-fq35-v728 · CVSS 7.0AWS API MCP Server Security Policy Bypass via Startup Initialization Failure
-
Medium nvd · CVE-2026-44192 · CVSS 6.6CVE-2026-44192: A flaw was found in the Ansible Lightspeed Model Context Protocol (MCP) server. This vulnerability, known as path traver
-
Medium nvd · CVE-2026-13009 · CVSS 6.5CVE-2026-13009: The AI Copilot – Content Generator plugin for WordPress is vulnerable to generic SQL Injection via 'order[0][dir]' Param
-
Medium nvd · CVE-2026-63261 · CVSS 6.5CVE-2026-63261: Uncontrolled Resource Consumption (CWE-400) in Kibana can lead to denial of service via Excessive Allocation (CAPEC-130)
-
Medium nvd · CVE-2026-60304 · CVSS 6.5CVE-2026-60304: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Medium nvd · CVE-2026-60243 · CVSS 6.5CVE-2026-60243: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Medium nvd · CVE-2026-60213 · CVSS 6.5CVE-2026-60213: Vulnerability in the Oracle Coherence product of Oracle Fusion Middleware (component: Core). Supported versions that ar
-
Medium nvd · CVE-2026-64650 · CVSS 6.3CVE-2026-64650: The `@ai-sdk/harness-opencode` tool is an HarnessV1 adapter backed by @openai/codex-sdk, which drives the codex command
-
Medium nvd · CVE-2026-47128 · CVSS 6.1CVE-2026-47128: nono is software that allows users to run AI agents in a zero-latency sandbox. Prior to version 0.55.0, the nono Landloc
-
Medium nvd · CVE-2026-66004 · CVSS 6.0CVE-2026-66004: BlenderMCP before commit 30a3308 contains a path traversal vulnerability in the download_polyhaven_asset method that all
-
Medium nvd · CVE-2026-65698 · CVSS 6.0CVE-2026-65698: Void through 1.3.4 contains a path traversal vulnerability in the AI agent file-reading tools that allows network-adjace