VulnWatch Weekly: The MCP Security Crisis & Langflow RCE
This week marks a turning point for AI security with critical RCEs in Langflow and a systemic collapse of authentication in the Model Context Protocol (MCP) ecosystem. Immediate patching is required for Kubeflow, Langflow, and all exposed MCP servers.
Week in Review: The MCP Authentication Collapse and the Langflow Catastrophe
Week: August 24 – August 30, 2026
Total Entries Analyzed: 93
Dominant Themes: Model Context Protocol (MCP) Security Failures, Agentic RCE, Supply Chain Poisoning, SSRF via Redirects
Most Urgent Item: CVE-2026-19295 (IBM Langflow OSS Authenticated RCE)
The week of August 24, 2026, will be remembered as the moment the "Agentic Web" faced its first major security reckoning. While we tracked 93 distinct entries, the narrative is dominated by two converging crises: a catastrophic cluster of Remote Code Execution (RCE) vulnerabilities in IBM Langflow OSS, and a systemic, ecosystem-wide failure of authentication and authorization within the Model Context Protocol (MCP) specification implementations. The dominant theme is no longer just "prompt injection" but "tool execution hijacking," where attackers bypass human-in-the-loop guards to commandeer the underlying infrastructure. Security teams must treat this week's advisories not as isolated bugs, but as evidence that the default security posture of the agentic stack is fundamentally broken. The single most urgent item is CVE-2026-19295 in Langflow, which allows authenticated users to escalate to full OS-level command execution, effectively compromising any ML platform running this orchestration engine.
Top Items of the Week
The following vulnerabilities represent the highest immediate risk to AI/ML infrastructure. These items demand immediate triage and patching.
-
CVE-2026-19295 | Critical (9.9) | IBM Langflow OSS
Impact: Authenticated attackers can execute arbitrary OS commands by crafting a flow with a specifictypefield, bypassing theLANGFLOW_ALLOW_CUSTOM_COMPONENTSpolicy. This is a full platform compromise.
Action: Upgrade to Langflow OSS > 1.11.1 immediately. Audit all custom components.
Source -
CVE-2026-54745 | Critical (10.0) | Kubeflow Pipelines
Impact: Unauthenticated Server-Side Request Forgery (SSRF) via the/_proxy/route. Attackers can scan internal networks and access cluster-local metadata services without authentication.
Action: Upgrade to Kubeflow Pipelines 2.17.0+. Restrict network access to the frontend if patching is delayed.
Source -
GHSA-w3fx-mc44-mf6j | Critical (9.8) | Chainlit (MCP)
Impact: Unauthenticated RCE via the MCP stdio transport. Iffeatures.mcp.enabled = true, attackers can inject arbitrary commands via thefullCommandparameter.
Action: Disable MCP features in Chainlit config (features.mcp.enabled = false) or upgrade to v2.7.0+ where it is disabled by default.
Source -
CVE-2026-81098 | Critical (9.3) | Telnyx MCP Server
Impact: Unauthenticated exposure of MCP HTTP transport on all interfaces. Attackers can invoke tools using the server's own stored credentials (API keys/secrets).
Action: Update Telnyx MCP server packages. Ensure firewalls block port 8080 (or custom MCP ports) from public access.
Source -
CVE-2026-81096 | Critical (9.3) | ToolUniverse
Impact: Sandbox escape in Python code executor. Attackers can traverse from literals to base classes to accesssubprocessmodules, achieving RCE on an unauthenticated server.
Action: Patch ToolUniverse immediately. Review all agent tools that execute user-supplied Python.
Source -
CVE-2026-78379 | Critical (9.2) | Amazon Strands Agents Tools
Impact: Prompt injection inpython_repltool bypasses human consent gates, allowing arbitrary Python execution via crafted prompts forwardingnon_interactive_mode.
Action: Upgrade to Amazon Strands Agents Tools v0.8.5+.
Source -
GHSA-8vh3-g2qg-2h2c | Critical (9.1) | Nextcloud MCP Server
Impact: Unauthenticated vector data deletion/corruption. TheWEBHOOK_SECRETdefaults toNone, allowing attackers to wipe Qdrant embeddings for any user.
Action: Set a strongWEBHOOK_SECRETenvironment variable immediately. Upgrade to v0.117.2+.
Source -
CVE-2026-76841 | High (8.7) | Xinference
Impact: Unconditionaltrust_remote_code=Truein model loading. Loading models from Hugging Face executes arbitrary code without operator consent.
Action: Upgrade to Xinference v2.12.0+ which allows disabling this behavior. Audit loaded models.
Source -
GHSA-86m2-fcxq-5q7c | High (8.2) | 9router
Impact: Authentication bypass viaHostheader spoofing. Remote attackers can access the/v1LLM proxy without an API key by settingHost: localhost.
Action: Configure 9router to validate Host headers strictly or bind only to loopback if local.
Source -
CVE-2026-55580 | High (8.6) | mcp-shell
Impact: Security disabled by default. TheSecurity.Enabledflag defaults tofalse, allowing unrestricted OS command execution via theshell_exectool.
Action: Explicitly enable security mode in config and define strict allowlists. Upgrade to v0.6.0+.
Source
The Agentic Apocalypse: MCP Security Failures
The most alarming trend this week is the sheer volume of critical vulnerabilities stemming from Model Context Protocol (MCP) implementations. The promise of MCP is to standardize how AI agents connect to data and tools; the reality this week is that it has standardized how to leave those tools wide open to the internet.
We observed a pattern of "default insecure" configurations across multiple vendors. Telnyx MCP Server (CVE-2026-81098), mcp-router (CVE-2026-81094), and genieacs-mcp (CVE-2026-55637) all shipped with HTTP transports bound to 0.0.0.0 (all interfaces) with no authentication required by default. In the case of Telnyx, the server not only accepted unauthenticated connections but happily forwarded the attacker's requests using the server's own stored credentials, effectively turning any exposed MCP port into a proxy for privileged API actions.
The situation is compounded by logic errors in security enforcement. mcp-shell (CVE-2026-55580, CVE-2026-55581, CVE-2026-55582) presents a case study in failed hardening. Even when "secure mode" was enabled, the allowlist validation was trivially bypassed. By passing /bin/bash -c <payload> or exploiting Git's shell alias feature (git -c alias.pwn=!<cmd>), attackers could execute arbitrary commands despite the presence of security controls. This highlights a dangerous misconception: wrapping a shell in a JSON-RPC interface does not make it safe; it merely makes it automatable by an LLM.
Furthermore, Chainlit (GHSA-w3fx-mc44-mf6j) and Nextcloud MCP Server (GHSA-8vh3-g2qg-2h2c) demonstrated that optional security features are often effectively non-existent. In Nextcloud's case, the WEBHOOK_SECRET defaulted to None, rendering the authentication check a no-op and allowing unauthenticated attackers to delete vector embeddings in Qdrant. In Chainlit, the mere act of enabling MCP opened a direct command injection vector via the stdio transport.
Recommendation: Treat any MCP server exposed to a network as compromised until proven otherwise. Audit your deployment manifests: ensure MCP servers are bound strictly to 127.0.0.1 unless absolutely necessary, enforce authentication tokens in all configurations, and disable MCP features in wrapper applications like Chainlit if not explicitly required.
Supply Chain & Model Loading Risks
The supply chain remains a critical attack surface, particularly in the realm of model loading and dependency management. Xinference (CVE-2026-76841) made headlines by hardcoding trust_remote_code=True across six different model loading paths. This means that any model pulled from Hugging Face could execute arbitrary Python code during the initialization phase, completely bypassing any sandboxing intended for the inference stage. This is a classic supply chain poisoning vector where the "model" is actually a trojanized script.
Similarly, whichllm (CVE-2026-58474) suffered from a code injection vulnerability where GGUF filenames from Hugging Face were interpolated directly into Python source code without sanitization. An attacker controlling a repository could name a file "; os.system('rm -rf /'); # and achieve RCE on any system running the whichllm CLI. Vocos (CVE-2026-79784) exhibited similar behavior, allowing arbitrary class instantiation via configuration files, enabling attackers to load and execute any importable Python class.
These incidents reinforce the principle that data is code in the AI era. Filenames, configuration parameters, and model weights must all be treated as untrusted input. The practice of eval()-ing configuration or dynamically importing classes based on user-supplied strings must be eradicated from ML infrastructure.
SSRF: The Redirect and DNS Rebinding Renaissance
Server-Side Request Forgery (SSRF) has evolved beyond simple URL parsing errors. This week's entries highlight sophisticated bypasses involving HTTP redirects and DNS rebinding.
PraisonAI (GHSA-x44h-65qv-cw74, GHSA-vg6p-v9vm-6fgj) and utcp-http (GHSA-9qhg-99ww-9mqc) both fell victim to the "validate-then-fetch" gap. These tools validated the initial URL to ensure it wasn't pointing to a private IP, but then followed HTTP redirects without re-validating the destination. An attacker could host a public URL that 302-redirects to http://169.254.169.254 (cloud metadata) or an internal database, bypassing the initial check entirely.
DNS rebinding also played a major role. genieacs-mcp (CVE-2026-55637) and tiger-slack (CVE-2026-81099) failed to validate the Host header or protect against DNS rebinding attacks. By rapidly changing the DNS resolution of a domain they control from a public IP to 127.0.0.1, attackers could trick browsers into sending requests to locally bound MCP servers, bypassing same-origin policies and network firewalls. Kubeflow (CVE-2026-54745) also suffered from a classic SSRF where the proxy middleware accepted arbitrary URLs without filtering for loopback or RFC1918 addresses, allowing full internal network scanning.
Known Exploited & Active Threats
While our telemetry indicates is_exploited=false for the majority of these newly published CVEs, the nature of these vulnerabilities suggests a very narrow window before weaponization. The Langflow RCE (CVE-2026-19295) and Kubeflow SSRF (CVE-2026-54745) are particularly prone to rapid exploitation due to the prevalence of these platforms in public-facing ML demos and cloud environments.
Notably, GitLab (CVE-2026-18252) remediated an issue where the Claude agent processed configuration from user-controlled sources, leading to arbitrary command execution in CI contexts. While marked as remediated, the presence of agentic logic in CI/CD pipelines is a nascent and high-risk area that defenders must monitor closely for copycat attacks.
What to Do This Week
- Patch Langflow Immediately: If you run IBM Langflow OSS, upgrade to version 1.11.2 or later today. The RCE vector is trivial to exploit for any authenticated user.
- Audit MCP Exposures: Scan your network for open ports running MCP servers (commonly 8080, 3000, or custom ports). Ensure they are not bound to
0.0.0.0. If they must be public, enforce strict API key authentication and TLS. - Disable Dangerous Features: In Chainlit, set
features.mcp.enabled = false. In Xinference, ensuretrust_remote_codeis not unconditionally true. In Nextcloud MCP, setWEBHOOK_SECRET. - ** Harden Allowlists:** For tools like
mcp-shellandToolUniverse, review your allowlists. Ensure shell interpreters (bash, sh) are not in the allowlist unless absolutely necessary, and validate arguments, not just executables. - Validate Redirects: Update any custom agent tools that fetch URLs to re-validate the destination IP address after following redirects. Do not trust the initial URL validation.
What to Watch Next Week
Next week, we anticipate a surge in "secondary" exploits targeting the dependencies of the patched systems. Watch for advisories related to Hugging Face loaders in other frameworks (LangChain, LlamaIndex) as the Xinference issue draws attention to the broader ecosystem. Additionally, expect to see proof-of-concepts for DNS rebinding attacks against local AI assistants (like Cursor, Continue, and various desktop MCP clients) as researchers realize how many of these tools bind to localhost without Host header validation. Finally, keep an eye on vector database integrations; with the Nextcloud Qdrant issue, we expect similar authorization bypasses to be found in Pinecone, Milvus, and Weaviate connectors.
Stay vigilant. The agentic web is expanding faster than its security perimeter.
Covered entries (93)
-
Critical nvd · CVE-2026-54745 · CVSS 10.0CVE-2026-54745: Kubeflow Pipelines enables users to build and deploy portable, scalable machine learning workflows. Prior to 2.17.0, the
-
Critical nvd · CVE-2026-19295 · CVSS 9.9CVE-2026-19295: IBM Langflow OSS 1.0.0 through 1.11.1 allows an authenticated attacker to execute arbitrary operating system commands in
-
Critical nvd · CVE-2026-19286 · CVSS 9.8CVE-2026-19286: IBM Langflow OSS 1.0.0 through 1.11.1 could allow a remote attacker to execute arbitrary code due to improper enforcemen
-
Critical github · GHSA-w3fx-mc44-mf6j · CVSS 9.8Chainlit has command injection via MCP stdio transport that allows unauthenticated remote code execution
-
Critical github · GHSA-mw6r-2hvm-4rp2 · CVSS 9.8qwed-mcp has Unsafe SymPy `parse_expr()` Remote Code Execution via Unsanitized Math Expression Input
-
Critical nvd · CVE-2026-68929 · CVSS 9.3CVE-2026-68929: FastGPT is an open-source LLM platform for building AI applications on a knowledge base. In versions prior to 4.15.2, th
-
Critical nvd · CVE-2026-81694 · CVSS 9.3CVE-2026-81694: openssl-encrypt (pip package, versions <= 1.4.8) fails to sanitize filenames read from untrusted drive data (outside the
-
Critical nvd · CVE-2026-81098 · CVSS 9.3CVE-2026-81098: The Telnyx MCP server exposed its HTTP transport on every interface and did not require a caller credential. packages/mc
-
Critical nvd · CVE-2026-81096 · CVSS 9.3CVE-2026-81096: ToolUniverse ran caller-supplied Python inside a sandbox that could be escaped, on a server that required no authenticat
-
Critical nvd · CVE-2026-81094 · CVSS 9.3CVE-2026-81094: The mcp-router CLI served its MCP aggregator on every interface and enforced authentication only when the operator asked
-
Critical nvd · CVE-2026-80104 · CVSS 9.3CVE-2026-80104: DB-GPT builds the destination path for an uploaded skill from the multipart filename without constraining it to the uplo
-
Critical nvd · CVE-2026-78379 · CVSS 9.2CVE-2026-78379: Improper neutralization of input used for LLM prompting in the python_repl tool in Amazon Strands Agents Tools before 0.
-
Critical nvd · CVE-2026-55640 · CVSS 9.1CVE-2026-55640: Nextcloud MCP Server is a production-ready MCP server that connects AI assistants to a Nextcloud instance. Prior to 0.11
-
Critical github · GHSA-8vh3-g2qg-2h2c · CVSS 9.1nextcloud-mcp-server: Unauthenticated `POST /webhooks/nextcloud` allows arbitrary vector data deletion when `WEBHOOK_SECRET` is unset ( default )
-
Critical github · GHSA-6g6r-q6gw-w8fg · CVSS 9.1PraisonAI has a Browser Server WebSocket origin validation bypass via unanchored regex (patch bypass of CVE-2026-40289 / GHSA-8x8f-54wf-vv92)
-
High nvd · CVE-2026-82642 · CVSS 8.8CVE-2026-82642: Readest is an open-source e-book reader built on Tauri. In versions prior to 0.11.16, EPUB chapter HTML is sanitized wit
-
High nvd · CVE-2026-18729 · CVSS 8.8CVE-2026-18729: IBM Langflow OSS 1.0.0 through 1.11.1 could allow a remote authenticated attacker to execute arbitrary code due to impro
-
High nvd · CVE-2026-55637 · CVSS 8.8CVE-2026-55637: genieacs-mcp is an MCP server for GenieACS written in Go. Prior to 0.3.2, the Streamable HTTP transport in cmd/server/ma
-
High nvd · CVE-2026-55585 · CVSS 8.8CVE-2026-55585: QWED is open-source AI verification infrastructure for deterministic verification of LLM outputs, tool calls, code, sche
-
High nvd · CVE-2026-82639 · CVSS 8.7CVE-2026-82639: NextChat versions from 2.15.8 through 2.16.1 contain an improper URL validation vulnerability in the proxy endpoint that
-
High nvd · CVE-2026-81532 · CVSS 8.7CVE-2026-81532: A user able to submit SQL through an application using the MongoDB Connector for BI ODBC driver can supply a positioned-
-
High nvd · CVE-2026-82275 · CVSS 8.7CVE-2026-82275: Qwen-Agent through 0.0.34 contains a path traversal vulnerability in the document parser that fails to restrict file acc
-
High nvd · CVE-2026-82268 · CVSS 8.7CVE-2026-82268: Qwen-Agent through 0.0.34 contains a server-side request forgery vulnerability in the document parsing path that treats
-
High nvd · CVE-2026-81093 · CVSS 8.7CVE-2026-81093: The get-html-skeleton tool fetched a URL the caller supplied after checking only its syntax. The handler in src/tools/co
-
High nvd · CVE-2026-79770 · CVSS 8.7CVE-2026-79770: Nokogiri versions before 1.19.3 contain regular expression denial of service vulnerabilities in the CSS selector tokeniz
-
High nvd · CVE-2026-76841 · CVSS 8.7CVE-2026-76841: Xinference loads models with Hugging Face remote code execution unconditionally enabled, and before version 2.12.0 expos
-
High github · GHSA-8gmq-j984-vp4r · CVSS 8.69router: Unauthenticated LLM proxy access via /codex rewrite authorization bypass
-
High nvd · CVE-2026-58474 · CVSS 8.6CVE-2026-58474: whichllm before 0.5.16 contains a code injection vulnerability in the run and snippet commands that allows a remote atta
-
High github · GHSA-fh3r-g96v-f578 · CVSS 8.6@arikusi/deepseek-mcp-server has an Authorization Bypass Through User-Controlled Key
-
High nvd · CVE-2026-55557 · CVSS 8.6CVE-2026-55557: browse-mcp is a Playwright-based headless-browser MCP server for MCP-capable agents. Prior to 0.8.2, browser_download wr
-
High nvd · CVE-2026-79784 · CVSS 8.6CVE-2026-79784: Vocos instantiates a class named by a configuration file without restricting which class may be named. instantiate_class
-
High nvd · CVE-2026-55580 · CVSS 8.6CVE-2026-55580: mcp-shell is an MCP server for running shell commands securely, auditably, and on demand. Prior to 0.6.0, config.go init
-
High github · GHSA-2jgc-f764-c5r2 · CVSS 8.6PraisonAI: [Auth Bypass] PraisonAI async Jobs API (`/api/v1/runs`) has no authentication — unauthenticated job execution, result theft, cancel and delete
-
High github · GHSA-7ww9-85pg-cv4x · CVSS 8.6PraisonAI serve agents --api-key is ignored, allowing unauthenticated remote agent execution
-
High github · GHSA-x44h-65qv-cw74 · CVSS 8.5praisonaiagents has an SSRF protection bypass in `spider_tools._host_is_blocked()` via DNS-resolved hostnames (`127.0.0.1.nip.io`)
-
High nvd · CVE-2026-55582 · CVSS 8.4CVE-2026-55582: mcp-shell is an MCP server for running shell commands securely, auditably, and on demand. Prior to 0.6.0, the default se
-
High nvd · CVE-2026-55581 · CVSS 8.4CVE-2026-55581: mcp-shell is an MCP server for running shell commands securely, auditably, and on demand. Prior to 0.6.0, the default Do
-
High github · GHSA-3x77-wg38-92r3 · CVSS 8.4mcp-shell has a Secure Mode Allowlist Bypass via Default `/bin/bash` Executable
-
High github · GHSA-74hp-mggr-hv58 · CVSS 8.4mcp-shell has a Secure Mode Allowlist Bypass via Git Shell Alias
-
High nvd · CVE-2026-76072 · CVSS 8.3CVE-2026-76072: The Continue CLI applies an incomplete denylist as its only barrier to destructive shell commands when running unattende
-
High nvd · CVE-2026-18904 · CVSS 8.2CVE-2026-18904: IBM Langflow OSS 1.0.0 through 1.11.1 could allow a remote attacker to obtain sensitive information and inject unauthori
-
High nvd · CVE-2026-18891 · CVSS 8.2CVE-2026-18891: IBM Langflow OSS 1.0.0 through 1.11.1 could allow a remote attacker to execute arbitrary flows and access sensitive info
-
High github · GHSA-86m2-fcxq-5q7c · CVSS 8.29router: Unauthenticated `/v1` proxy access via `Host`-header spoofing → open AI relay + SSRF
-
High nvd · CVE-2026-79785 · CVSS 8.2CVE-2026-79785: X-AnyLabeling's model downloader disabled TLS certificate verification. download_with_retry in anylabeling/services/auto
-
High github · GHSA-9qhg-99ww-9mqc · CVSS 8.2utcp-http SSRF: HTTP tool invocation follows redirects without re-validating the target
-
High github · GHSA-7g3p-92qq-8wvh · CVSS 8.2praisonaiagents: AgentServer declares auth_token but never enforces it on any route
-
High nvd · CVE-2026-80537 · CVSS 7.8CVE-2026-80537: In the Linux kernel, the following vulnerability has been resolved: xfs: fix off-by-one in rtrefcount btree root level
-
High github · GHSA-hxmv-c4g6-5fqc · CVSS 7.8PraisonAI workflow include bypasses tools.py autoload opt-in and executes included recipe code
-
High nvd · CVE-2026-81099 · CVSS 7.6CVE-2026-81099: tiger-slack started its MCP HTTP transport without enabling the host allow-list the underlying SDK provides. mcp/src/htt
-
High nvd · CVE-2026-81095 · CVSS 7.6CVE-2026-81095: pg-aiguide started its MCP HTTP transport without enabling the host allow-list the underlying SDK provides. src/httpServ
-
High github · GHSA-pvph-5j39-v8qc · CVSS 7.6PraisonAI: Origin-validation bypass (startswith prefix match) enables unauthenticated cross-site request forgery against the PraisonAI MCP HTTP server
-
High nvd · CVE-2026-18899 · CVSS 7.5CVE-2026-18899: IBM Langflow OSS 1.0.0 through 1.11.1 could allow a remote attacker to read arbitrary files due to path traversal.
-
High nvd · CVE-2026-37237 · CVSS 7.5CVE-2026-37237: vLLM up to and including 0.17.0 allows remote attackers to cause a Denial of Service via memory exhaustion. The AsyncMed
-
High github · GHSA-vg6p-v9vm-6fgj · CVSS 7.5praisonaiagents vulnerable to SSRF in web_crawl tool via redirect-following and DNS rebinding (validate-then-fetch gap)
-
High github · GHSA-5r34-2g38-6569 · CVSS 7.5praisonaiagents web_crawl vulnerable to SSRF via redirect-following
-
High nvd · CVE-2026-18252 · CVSS 7.3CVE-2026-18252: GitLab has remediated an issue in GitLab EE affecting all versions from 18.9 before 19.1.7, 19.2 before 19.2.5, and 19.3
-
High github · GHSA-r7v3-x45f-g7hp · CVSS 7.3PraisonAI: [Auth Bypass] `praisonai serve agents --api-key` is silently ignored — agent-invocation routes (`POST /agents`, `POST /agents/{agent_name}`) run unauthenticated
-
High github · GHSA-hvfh-5mj3-5f3j · CVSS 7.2Chainlist has SSRF via MCP SSE and streamable-http transports that allows unauthenticated internal network access
-
High github · GHSA-xc9g-j69q-37xw · CVSS 7.1consciousness-explorer / sublinear-time-solver MCP export_state has an arbitrary file write
-
High github · GHSA-ch89-h4r2-c8f8 · CVSS 7.1PraisonAI: [Path Traversal] agent tools escape the configured workspace via symlinks
-
Medium nvd · CVE-2026-82233 · CVSS 6.9CVE-2026-82233: SiYuan before v3.8.1 contains a path traversal vulnerability in the asset.upload MCP tool that accepts arbitrary absolut
-
Medium nvd · CVE-2026-53965 · CVSS 6.9CVE-2026-53965: The MCP PHP SDK (Composer package mcp/sdk) is the official Model Context Protocol SDK for PHP. In versions 0.5.0 through
-
Medium nvd · CVE-2026-55529 · CVSS 6.9CVE-2026-55529: PraisonAI is a multi-agent teams system. Prior to praisonai 4.6.58, the MCP HTTP Stream _validate_origin method accepts
-
Medium github · GHSA-wj6g-v78p-6fx3 · CVSS 6.9PraisonAI has an origin validation bypass in MCP HTTP Stream transport that allows browser-mediated unauthenticated tool execution on local MCP server
-
Medium nvd · CVE-2026-78684 · CVSS 6.9CVE-2026-78684: vLLM before 0.27.0 fails to properly classify DeepStream as a GPU backend and omits pixel-limit enforcement in its decod
-
Medium nvd · CVE-2026-78205 · CVSS 6.9CVE-2026-78205: BentoML's outbound connection safeguard (make_safe_connect in _internal/utils/uri.py) blocks private, loopback, and link
-
Medium nvd · CVE-2026-78148 · CVSS 6.9CVE-2026-78148: A vulnerability was determined in ggml-org llama.cpp bec4772f6. This affects the function rpc_server::graph_compute of t
-
Medium nvd · CVE-2026-82640 · CVSS 6.8CVE-2026-82640: browser-use web-ui versions 2.0.0 through 3.0.0 write configured LLM API keys to disk in cleartext without encryption or
-
Medium nvd · CVE-2026-46371 · CVSS 6.5CVE-2026-46371: Fleet is an open-source device management platform built on osquery. In versions up to and including 4.84.1, the Apple M
-
Medium nvd · CVE-2026-46370 · CVSS 6.5CVE-2026-46370: Fleet is an open-source device management platform built on osquery. In versions up to and including 4.84.1, the labels
-
Medium github · GHSA-wv94-5qcp-6m36 · CVSS 6.5PraisonAI MCP HTTP server has unauthenticated unbounded session accumulation (memory exhaustion; session TTL never enforced)
-
Medium nvd · CVE-2026-19294 · CVSS 6.4CVE-2026-19294: IBM Langflow OSS 1.0.0 through 1.11.1 could allow a remote authenticated attacker to execute and read any user's private
-
Medium nvd · CVE-2026-54746 · CVSS 6.4CVE-2026-54746: Hatchet is a platform for orchestrating background tasks, AI agents, and durable workflows at scale. From 0.40.0 until 0
-
Medium github · GHSA-cfxv-8fw8-rwpv · CVSS 6.1praisonaiagents: ast_grep_rewrite rewrites arbitrary files without the @require_approval gate enforced on every sibling mutation tool
-
Medium nvd · CVE-2026-75847 · CVSS 5.9CVE-2026-75847: Cleartext Storage of Sensitive Information vulnerability in ash-project ash_paper_trail allows an attacker with read acc
-
Medium nvd · CVE-2026-70331 · CVSS 5.4CVE-2026-70331: Improper neutralization of input used for llm prompting in Microsoft Edge for iOS allows an unauthorized attacker to per
-
Medium nvd · CVE-2026-18393 · CVSS 5.4CVE-2026-18393: A flaw was found in FFmpeg. The tdsc_load_cursor() function writes beyond the bounds of a heap-allocated buffer when pro
-
Medium github · GHSA-72f3-6w86-7rv3 · CVSS 5.3@arikusi/deepseek-mcp-server: Missing Authentication on Self-Hosted HTTP MCP Endpoint
-
Medium github · GHSA-569v-q83c-3j3g · CVSS 5.0Vikunja vulnerable to authenticated cross-tenant kanban-bucket relocation via `project_view_id` mass-assignment
-
Medium github · GHSA-ppx3-28rw-8fpf · CVSS 4.7utcp-gql SSRF: CVE-2026-44661 fix not applied to the GraphQL and WebSocket plugins
-
Medium nvd · CVE-2026-58616 · CVSS 4.4CVE-2026-58616: Concurrent execution using shared resource with improper synchronization ('race condition') in Copilot Chat (Microsoft E
-
Medium nvd · CVE-2026-18545 · CVSS 4.3CVE-2026-18545: IBM Langflow OSS 1.0.0 through 1.11.1 is vulnerable to server-side request forgery (SSRF). This may allow an authenticat
-
Low nvd · CVE-2026-81836 · CVSS 2.9CVE-2026-81836: A vulnerability was detected in RooCodeInc Roo-Code up to 3.51.1. This vulnerability affects unknown code of the file sr
-
Low nvd · CVE-2026-81102 · CVSS 2.3CVE-2026-81102: The Dash MCP server bound its listener to the loopback address but never checked the host a request named. src/mcp_serve
-
Low nvd · CVE-2026-81322 · CVSS 2.1CVE-2026-81322: Exposure of Sensitive Information to an Unauthorized Actor vulnerability in ash-project ash_cloak allows anyone with acc
-
Low nvd · CVE-2026-79623 · CVSS 2.1CVE-2026-79623: A security vulnerability has been detected in FishCodeTech Muteki up to 0.2.5. The affected element is an unknown functi
-
Low nvd · CVE-2026-81562 · CVSS 1.9CVE-2026-81562: A security flaw has been discovered in AlexGladkov claude-in-mobile 3.10.2. This affects the function execSync of the fi
-
Medium github · GHSA-73p9-6hrp-8qhr · CVSS 0.0AIIR verification and policy gates could report success without enforcing the control (fail-open)
-
High github · GHSA-cmwv-wf9p-p8wx · CVSS 0.0genieacs-mcp: DNS rebinding reaches local GenieACS MCP Streamable HTTP transport
-
High github · GHSA-m9mq-7m7q-xc6p · CVSS 0.0browse-mcp has an arbitrary file write via unconfined download and state paths
-
High github · GHSA-8qx3-8gm5-9cj2 · CVSS 0.0pickem vulnerable to terminal escape-sequence injection via unsanitized item text
-
High github · GHSA-f5pj-2738-996m · CVSS 0.0mcp-shell — Security Disabled by Default in Bare-Binary Deploy Path + Shell Interpreter in Secure-Mode Allowlist
-
High github · GHSA-pvxx-r596-f5qj · CVSS 0.0PraisonAI: `--api-key` flag on `praisonai serve` is not properly enforced