VulnWatch Weekly: Agentic RCE Epidemic & MCP Trust Boundaries Collapse
78 vulnerabilities tracked this week. PraisonAI, SillyTavern, and MCP servers dominate critical RCE reports. Immediate patching required for agent frameworks.
Week in Review: May 25–31, 2026
This week marks a watershed moment for AI application security, characterized by a cascade of critical remote code execution (RCE) vulnerabilities across the emerging agentic stack. The dominant theme is the fragility of trust boundaries in Model Context Protocol (MCP) servers and AI agent frameworks, with PraisonAI, SillyTavern, and RAGFlow issuing urgent patches for flaws that allow unauthenticated attackers to compromise host systems. The single most urgent item is the series of sandbox escapes in PraisonAI (GHSA-4mr5-g6f9-cfrh), which demonstrates that even subprocess isolation can be defeated via Python introspection tricks, rendering default deployments critically unsafe.
Top Items of the Week
The following entries represent the highest risk to AI infrastructure based on CVSS severity, exploitability, and prevalence of the affected components.
-
GHSA-4mr5-g6f9-cfrh (PraisonAI Sandbox Escape)
Severity: Critical (9.9) | Component:execute_codetool
Impact: Full host RCE viaprint.__self__builtins leak in subprocess mode.
Action: Upgrade to v1.6.38+ and disableexecute_codeif not strictly required. View Advisory -
CVE-2026-45312 (RAGFlow SSTI)
Severity: Critical (9.9) | Component: Prompt Generator
Impact: Jinja2 template injection allows any authenticated user to execute OS commands.
Action: Patch to v0.24.1+ and audit custom prompt templates for user input. View Advisory -
CVE-2026-44450 (Lumiverse MCP RCE)
Severity: Critical (9.9) | Component: MCP Server Creation
Impact: Allowlist bypass via inline-code flags (-e, -c) grants arbitrary code execution.
Action: Upgrade to v0.9.7+ and restrict MCP server creation to admins. View Advisory -
GHSA-vg22-4gmj-prxw (PraisonAI A2A Unauthenticated RCE)
Severity: Critical (9.8) | Component: A2A Server Example
Impact: Default example binds to 0.0.0.0 with no auth and exposeseval()tool.
Action: Do not run example code in production; enforce auth tokens immediately. View Advisory -
CVE-2026-44649 (SillyTavern Header Auth Bypass)
Severity: Critical (9.8) | Component: Authentication Middleware
Impact: Injection ofRemote-Userheaders allows login as any user without password.
Action: Upgrade to v1.18.0+ and ensure reverse proxy header stripping is configured. View Advisory -
GHSA-mxfr-6hcw-j9rq (Langroid SQLi to RCE)
Severity: Critical (9.8) | Component: SQLChatAgent
Impact: Prompt injection leads to SQLi, leveraging DB privileges for OS command execution.
Action: Restrict database roles for agents and upgrade to v0.63.0+. View Advisory -
CVE-2026-44895 (GitLab MCP No Auth)
Severity: Critical (9.2) | Component: HTTP Transport
Impact: Wildcard CORS and no inbound auth expose GitLab PAT to any browser context.
Action: Upgrade to v0.6.0+ and restrict network access to MCP ports. View Advisory -
CVE-2026-4944 (vLLM Trust Remote Code)
Severity: High (8.8) | Component: Model Loader
Impact: Hardcodedtrust_remote_code=Truebypasses user settings, enabling malicious model RCE.
Action: Upgrade to v0.14.2+ and audit loaded model repositories. View Advisory -
CVE-2026-45374 (CodeWhale Auto Shell Access)
Severity: Critical (9.6) | Component: Task Manager
Impact: Sub-agents inheritallow_shell=trueandauto_approve=trueby default.
Action: Upgrade to v0.8.26+ and explicitly disable shell access in agent configs. View Advisory -
CVE-2026-44346 (BentoML Dockerfile Injection)
Severity: High (8.8) | Component: Containerize Build
Impact: Newline injection inbentofile.yamlsmuggles RUN directives into Docker build.
Action: Upgrade to v1.4.39+ and validate YAML inputs before building. View Advisory
The PraisonAI Crisis: Agent Frameworks as Attack Vectors
PraisonAI dominates this week's critical findings with at least five distinct high-severity advisories. The most technically sophisticated is GHSA-4mr5-g6f9-cfrh, where researchers demonstrated a novel bypass of the subprocess sandbox. By accessing print.__self__, an attacker can retrieve the real Python builtins module, extract __import__ via vars(), and construct arbitrary imports at runtime. This defeats the isolation intended to protect the host from agent code execution.
Compounding this is GHSA-vg22-4gmj-prxw, which highlights the danger of shipping "quickstart" examples with production-grade risks. The official A2A server example binds to all interfaces (0.0.0.0) without authentication and registers a calculate tool backed by Python's eval(). In an era where AI agents are increasingly internet-facing, shipping unauthenticated eval gates is tantamount to leaving the server room door open. Teams using PraisonAI must assume their current deployments are compromised if exposed to untrusted networks and should rotate all API keys and credentials stored in the environment immediately.
MCP Server Meltdown: Trust Boundaries Collapse
The Model Context Protocol (MCP) is rapidly becoming the standard for connecting AI agents to external tools, but this week's vulnerabilities reveal a systemic failure to enforce trust boundaries. CVE-2026-44450 in Lumiverse shows that validating binary names is insufficient if argument arrays are forwarded unchecked; attackers simply pass inline execution flags (e.g., python3 -c) to achieve RCE. Similarly, CVE-2026-44895 in the GitLab MCP Server exposes a stateful RPC endpoint backed by a Personal Access Token without any inbound authentication, compounded by a wildcard CORS policy.
This pattern repeats in CVE-2026-45707 (n8n-MCP), where tenant isolation fails, allowing one tenant to execute management calls against the operator's instance. The lesson for platform teams is clear: MCP servers must be treated as privileged infrastructure. They should never bind to public interfaces without strict mTLS or OAuth enforcement, and argument validation must be semantic, not just syntactic.
Local LLM UIs Under Fire: The SillyTavern Spree
SillyTavern, a popular local interface for LLM interaction, issued a bulk patch (v1.18.0) addressing a wide array of critical flaws. CVE-2026-44649 is particularly severe, allowing header injection to bypass authentication entirely if SSO headers are trusted without verification. Additionally, CVE-2026-44650 permits directory traversal to delete the entire extensions folder via a . parameter, and CVE-2026-46372 enables SSRF through an unvalidated baseUrl parameter.
These vulnerabilities underscore the risk of "local-first" AI tools that are increasingly connected to the web. Users often expose these interfaces to their local network for convenience, assuming isolation provides security. This week proves that assumption false; local UIs require the same hardening as public SaaS applications, including strict input validation and session management.
Supply Chain & Inference: Model Loading Risks
The supply chain remains a potent attack surface. CVE-2026-4944 in vLLM reveals that trust_remote_code=True was hardcoded in specific model implementation files (nemotron_vl.py, kimi_k25.py), bypassing user CLI flags. This is a recurrence of issues seen in CVE-2025-66448, indicating that incomplete fixes in model loaders continue to pose risks. When loading models from HuggingFace, the code accompanying the weights is executed with the privileges of the inference server.
BentoML also faces critical issues (CVE-2026-44346/45) where malicious bentofile.yaml configurations can inject Dockerfile directives during the containerization process. This shifts the attack vector from runtime to build time, potentially poisoning the deployment pipeline. Security teams must scan configuration files for newline characters and unescaped variables before triggering build processes.
Coding Agents Gone Rogue
Autonomous coding agents introduce unique risks by design. CVE-2026-45374 and CVE-2026-45311 in CodeWhale highlight the danger of default permissions. The task_create tool spawns sub-agents with allow_shell=true and auto_approve=true, meaning a single user approval can grant an agent unrestricted shell access. Similarly, run_tests auto-approves cargo test, which executes arbitrary build scripts. Langroid's GHSA-mxfr-6hcw-j9rq further demonstrates how prompt injection can cascade into SQL injection and eventually RCE if the database user has high privileges. Developers must adopt the principle of least privilege for agent tools, explicitly disabling shell access and requiring approval for every distinct action.
Infrastructure & Dependency Noise
Beyond the AI-specific stack, this week saw a flood of legacy vulnerabilities. A significant cluster of CVEs (CVE-2026-10183 through CVE-2026-10060) affects TRENDnet TEW-432BRP routers. These devices have been End-of-Life since 2009, and the vendor explicitly states they cannot fix these stack-based buffer overflows. While not AI-specific, these devices often sit at the network perimeter; if your infrastructure still relies on them, they represent an immediate, unpatchable risk that requires hardware replacement.
Additionally, several Symfony vulnerabilities (GHSA-6439-2f28-8p8q, GHSA-j8gj-9rm5-4xhx) were published. While these are web framework issues, many AI applications (including some MCP servers) are built on Symfony. The HEAD request bypass and CAS service URL derivation flaws could allow authentication bypasses in AI admin panels built with this framework. Teams should audit their web dependencies alongside their ML libraries.
Known Exploitation Status
As of this writing, no entries in this week's digest are marked as known-exploited (is_exploited=true). However, the technical simplicity of several flaws—particularly the header injection in SillyTavern and the unauthenticated eval in PraisonAI—suggests that weaponization is trivial. The absence of public exploit code should not be interpreted as safety; it is more likely a reflection of the recency of disclosure. Security teams should operate under the assumption that active scanning for these vulnerabilities is already underway.
What to Do This Week
- Patch Agent Frameworks Immediately: Prioritize updates for PraisonAI, CodeWhale, and Langroid. If patching is not immediately possible, disable any tools that allow code execution (
execute_code,eval,shell) in your agent configurations. - Audit MCP Servers: Inventory all MCP servers running in your environment. Ensure none are binding to
0.0.0.0without authentication. Implement network segmentation to isolate MCP traffic from untrusted clients. - Harden Local UIs: For SillyTavern and similar tools, enforce strict reverse proxy configurations that strip incoming
Remote-UserorX-Authentik-Usernameheaders. Do not expose these ports directly to the LAN. - Review Model Sources: Audit your vLLM and HuggingFace pipelines. Ensure
trust_remote_codeis explicitly set toFalsewherever possible, and pin specific model commits rather than using floating tags. - Replace Legacy Hardware: If the TRENDnet router vulnerabilities apply to your network perimeter, initiate hardware replacement immediately. These devices cannot be secured.
What to Watch Next Week
Next week, we anticipate further scrutiny on the Model Context Protocol (MCP) specification itself. With multiple servers failing to implement basic auth and SSRF protections, expect the MCP maintainers to release updated security guidelines or a reference implementation with stricter defaults. Additionally, keep an eye on RAG pipelines; with the RAGFlow SSTI vulnerability, we expect researchers to probe other RAG orchestration layers for similar template injection flaws. Finally, monitor AI supply chain registries for new malicious model uploads leveraging the vLLM trust bypass.
Covered entries (78)
-
Critical github · GHSA-4mr5-g6f9-cfrh · CVSS 9.9PraisonAI vulnerable to sandbox escape via `print.__self__` builtins module leak in `execute_code` (subprocess mode)
-
Critical nvd · CVE-2026-45312 · CVSS 9.9CVE-2026-45312: RAGFlow is an open-source RAG (Retrieval-Augmented Generation) engine. In 0.24.0 and earlier, a Jinja2 template injectio
-
Critical nvd · CVE-2026-44450 · CVSS 9.9CVE-2026-44450: Lumiverse is a full-featured AI chat application. Prior to 0.9.7, the MCP server creation endpoint validates the command
-
Critical github · GHSA-vg22-4gmj-prxw · CVSS 9.8PraisonAI's unauthenticated A2A official example can reach real LLM-driven `eval()` tool execution
-
Critical github · GHSA-8444-4fhq-fxpq · CVSS 9.8PraisonAI `deploy --type api` emits a Flask server with authentication disabled by default
-
Critical nvd · CVE-2026-44649 · CVSS 9.8CVE-2026-44649: SillyTavern is a locally installed user interface that allows users to interact with text generation large language mode
-
Critical github · GHSA-mxfr-6hcw-j9rq · CVSS 9.8Langroid has Prompt to SQL Injection, Leading to RCE
-
Critical nvd · CVE-2026-7524 · CVSS 9.8CVE-2026-7524: IBM Langflow OSS 1.0.0 through 1.9.1 could allow remote code execution due to improper validation of symbolic links duri
-
Critical nvd · CVE-2026-45374 · CVSS 9.6CVE-2026-45374: CodeWhale is a DeepSeek + MiMo coding agent in terminal. Prior to 0.8.26, the task_create tool spawns durable sub-agents
-
Critical nvd · CVE-2026-45311 · CVSS 9.6CVE-2026-45311: CodeWhale is a DeepSeek + MiMo coding agent in terminal. From 0.3.0 to 0.8.23, the run_tests tool executes cargo test in
-
Critical nvd · CVE-2026-44895 · CVSS 9.2CVE-2026-44895: GitLab MCP Server lets an AI agent talk directly to GitLab. Prior to 0.6.0, the HTTP transport in src/transport.ts ships
-
Critical nvd · CVE-2026-44650 · CVSS 9.1CVE-2026-44650: SillyTavern is a locally installed user interface that allows users to interact with text generation large language mode
-
High nvd · CVE-2026-4944 · CVSS 8.8CVE-2026-4944: vllm-project/vllm version 0.14.1 contains a vulnerability where the `trust_remote_code=True` parameter is hardcoded in t
-
High nvd · CVE-2026-44345 · CVSS 8.8CVE-2026-44345: BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Prior to 1.4.
-
High nvd · CVE-2026-44346 · CVSS 8.8CVE-2026-44346: BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Prior to 1.4.
-
High nvd · CVE-2026-10105 · CVSS 8.7CVE-2026-10105: agno 2.6.5 contains a SQL injection vulnerability in the ClickHouse vector database backend that allows attackers to inj
-
High nvd · CVE-2026-45136 · CVSS 8.6CVE-2026-45136: claude-code-cache-fix is a cache optimization proxy for Claude Code. From 3.5.0 to before 3.5.2, tools/quota-statusline.
-
High nvd · CVE-2026-46372 · CVSS 8.5CVE-2026-46372: SillyTavern is a locally installed user interface that allows users to interact with text generation large language mode
-
High nvd · CVE-2026-44843 · CVSS 8.2CVE-2026-44843: LangChain is a framework for building agents and LLM-powered applications. Prior to 0.3.85 and 1.3.3, LangChain contains
-
High github · GHSA-78r8-wwqv-r299 · CVSS 8.1PraisonAI: Arbitrary code execution via unguarded `spec.loader.exec_module` in `agents_generator.py` - sibling of CVE-2026-44334
-
High nvd · CVE-2026-45707 · CVSS 8.1CVE-2026-45707: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. Prior
-
High nvd · CVE-2026-45555 · CVSS 7.8CVE-2026-45555: Roslyn CodeLens MCP Server is a Roslyn-based MCP server providing semantic code intelligence for .NET codebases. From 0.
-
High nvd · CVE-2026-44285 · CVSS 7.7CVE-2026-44285: FastGPT is an AI Agent building platform. Prior to 4.15.0-beta1, a Server-Side Request Forgery (SSRF) vulnerability allo
-
High nvd · CVE-2026-44648 · CVSS 7.5CVE-2026-44648: SillyTavern is a locally installed user interface that allows users to interact with text generation large language mode
-
High nvd · CVE-2026-48116 · CVSS 7.5CVE-2026-48116: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
High nvd · CVE-2026-44209 · CVSS 7.5CVE-2026-44209: Banks generates meaningful LLM prompts using a template language that makes sense. Prior to 2.4.2, banks uses jinja2.Env
-
High nvd · CVE-2026-10183 · CVSS 7.4CVE-2026-10183: A vulnerability was identified in TRENDnet TEW-432BRP 3.10B20. This affects the function formWlanSetup of the file /gofo
-
High nvd · CVE-2026-10181 · CVSS 7.4CVE-2026-10181: A vulnerability was found in TRENDnet TEW-432BRP 3.10B20. The affected element is the function formSysCmd of the file /g
-
High nvd · CVE-2026-10179 · CVSS 7.4CVE-2026-10179: A flaw has been found in TRENDnet TEW-432BRP 3.10B20. This issue affects the function formSetWlanEncrypt of the file /go
-
High nvd · CVE-2026-10161 · CVSS 7.4CVE-2026-10161: A vulnerability was detected in TRENDnet TEW-432BRP 3.10B20. This affects the function formResetStatistic of the file /g
-
High nvd · CVE-2026-10162 · CVSS 7.4CVE-2026-10162: A flaw has been found in TRENDnet TEW-432BRP 3.10B20. This vulnerability affects the function formSetPassword of the fil
-
High nvd · CVE-2026-10160 · CVSS 7.4CVE-2026-10160: A security vulnerability has been detected in TRENDnet TEW-432BRP 3.10B20. Affected by this issue is the function formSe
-
High nvd · CVE-2026-10158 · CVSS 7.4CVE-2026-10158: A security flaw has been discovered in TRENDnet TEW-432BRP 3.10B20. Affected is the function formPortFw of the file /gof
-
High nvd · CVE-2026-10159 · CVSS 7.4CVE-2026-10159: A weakness has been identified in TRENDnet TEW-432BRP 3.10B20. Affected by this vulnerability is the function formSysLog
-
High nvd · CVE-2026-10121 · CVSS 7.4CVE-2026-10121: A flaw has been found in TRENDnet TEW-432BRP 3.10B20. The impacted element is the function formSetUrlFilter of the file
-
High nvd · CVE-2026-10122 · CVSS 7.4CVE-2026-10122: A vulnerability has been found in TRENDnet TEW-432BRP 3.10B20. This affects the function formSetProtocolFilter of the fi
-
High nvd · CVE-2026-10123 · CVSS 7.4CVE-2026-10123: A vulnerability was found in TRENDnet TEW-432BRP 3.10B20. This impacts the function formSetDomainFilter of the file /gof
-
High nvd · CVE-2026-10120 · CVSS 7.4CVE-2026-10120: A vulnerability was detected in TRENDnet TEW-432BRP 3.10B20. The affected element is the function formSetFirewallRule of
-
High nvd · CVE-2026-10119 · CVSS 7.4CVE-2026-10119: A security vulnerability has been detected in TRENDnet TEW-432BRP 3.10B20. Impacted is the function formSetMACFilter of
-
High nvd · CVE-2026-10063 · CVSS 7.4CVE-2026-10063: A vulnerability was identified in TRENDnet TEW-432BRP 3.10B20. Affected by this issue is the function formWPS of the fil
-
High nvd · CVE-2026-10062 · CVSS 7.4CVE-2026-10062: A vulnerability was determined in TRENDnet TEW-432BRP 3.10B20. Affected by this vulnerability is the function formSetRou
-
High nvd · CVE-2026-45310 · CVSS 7.4CVE-2026-45310: CodeWhale is a DeepSeek + MiMo coding agent in terminal. Prior to 0.8.22, the fetch_url tool validates the initial URL's
-
High nvd · CVE-2026-45373 · CVSS 7.4CVE-2026-45373: CodeWhale is a DeepSeek + MiMo coding agent in terminal. Prior to 0.8.26, although SSRF is validated against hostnames t
-
High nvd · CVE-2026-45609 · CVSS 7.2CVE-2026-45609: mcp-security provides Security and Authorization support for Model Context Protocol in Spring AI. Prior to 0.1.9, the mc
-
High nvd · CVE-2026-45134 · CVSS 7.1CVE-2026-45134: LangSmith Client SDKs provide SDK's for interacting with the LangSmith platform. Prior to LangSmith SDK Python 0.8.0 and
-
High nvd · CVE-2026-7528 · CVSS 7.1CVE-2026-7528: IBM Langflow OSS 1.0.0 through 1.9.0 could allow a denial of service due to uncontrolled resource consumption.
-
Medium nvd · CVE-2026-44652 · CVSS 6.9CVE-2026-44652: SillyTavern is a locally installed user interface that allows users to interact with text generation large language mode
-
Medium nvd · CVE-2026-44651 · CVSS 6.9CVE-2026-44651: SillyTavern is a locally installed user interface that allows users to interact with text generation large language mode
-
Medium nvd · CVE-2026-45582 · CVSS 6.5CVE-2026-45582: n8n-MCP is an MCP server that provides AI assistants access to n8n node documentation, properties, and operations. Prior
-
Medium nvd · CVE-2026-44287 · CVSS 6.3CVE-2026-44287: FastGPT is an AI Agent building platform. Prior to 4.15.0-beta1, the JavaScript sandbox worker at projects/code-sandbox/
-
Medium github · GHSA-27vp-2mmc-vmh3 · CVSS 6.1nono: Sandbox escape on Linux via D-Bus: `systemd-run --user`
-
Medium github · GHSA-5cxw-77wg-jrf3 · CVSS 5.5PraisonAI CLI automatically resolves @url mentions in prompt text and can read loopback URLs into model context
-
Medium nvd · CVE-2026-45023 · CVSS 5.4CVE-2026-45023: AutoGPT is a workflow automation platform for creating, deploying, and managing continuous artificial intelligence agent
-
Low nvd · CVE-2026-10182 · CVSS 2.1CVE-2026-10182: A vulnerability was determined in TRENDnet TEW-432BRP 3.10B20. The impacted element is the function formWlanSetup of the
-
Low nvd · CVE-2026-10180 · CVSS 2.1CVE-2026-10180: A vulnerability has been found in TRENDnet TEW-432BRP 3.10B20. Impacted is the function formSysCmd of the file /goform/f
-
Low nvd · CVE-2026-10177 · CVSS 2.1CVE-2026-10177: A security vulnerability has been detected in Aider-AI Aider 0.86.3. This affects the function requests.get of the file
-
Low nvd · CVE-2026-10176 · CVSS 2.1CVE-2026-10176: A weakness has been identified in Aider-AI Aider 0.86.3. Affected by this issue is some unknown functionality of the com
-
Low nvd · CVE-2026-10175 · CVSS 2.1CVE-2026-10175: A security flaw has been discovered in Aider-AI Aider 0.86.3. Affected by this vulnerability is the function editor_code
-
Low nvd · CVE-2026-10174 · CVSS 2.1CVE-2026-10174: A vulnerability was identified in Aider-AI Aider 0.86.3. Affected is an unknown function of the file aider/args.py of th
-
Low nvd · CVE-2026-10064 · CVSS 2.1CVE-2026-10064: A security flaw has been discovered in TRENDnet TEW-432BRP 3.10B20. This affects the function formSetPortTr of the file
-
Low nvd · CVE-2026-10061 · CVSS 2.1CVE-2026-10061: A vulnerability was found in TRENDnet TEW-432BRP 3.10B20. Affected is the function formWPS of the file /goform/formWPS.
-
Low nvd · CVE-2026-10060 · CVSS 2.1CVE-2026-10060: A vulnerability has been found in TRENDnet TEW-432BRP 3.10B20. This impacts the function formSetRoute of the file /gofor
-
Low nvd · CVE-2026-47713 · CVSS 2.0CVE-2026-47713: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
Low nvd · CVE-2026-45403 · CVSS 2.0CVE-2026-45403: AnythingLLM is an application that turns pieces of content into context that any LLM can use as references during chatti
-
High github · GHSA-hvhp-v2gc-268q · CVSS 0.0PraisonAI has an Arbitrary File Write in Python API
-
High github · GHSA-9cr9-25q5-8prj · CVSS 0.0PraisonAI vulnerable to unauthenticated arbitrary file read via MCP workflow.show, workflow.validate, deploy.validate
-
High github · GHSA-wjjv-3mj2-39hf · CVSS 0.0AgenticMail API/storage and outbound relay hardening fixes
-
High github · GHSA-j6fm-9rfm-j5hx · CVSS 0.0Froxlor has an incomplete fix for CVE-2026-30932
-
High github · GHSA-6439-2f28-8p8q · CVSS 0.0Symfony's HEAD Request Bypasses methods: ['GET'] Filter in #[IsGranted] / #[IsSignatureValid] / #[IsCsrfTokenValid]
-
Medium github · GHSA-j8gj-9rm5-4xhx · CVSS 0.0Symfony's Cas2Handler Derives CAS service URL from Client Host Header → Cross-Service Ticket Replay
-
Low github · GHSA-hmr5-2xcr-v8pp · CVSS 0.0Symfony Vulnerable to stored XSS in WebProfiler CodeExtension::fileExcerpt() — Unescaped Non-PHP File Rendering
-
Low github · GHSA-x6g4-fwcc-jj8w · CVSS 0.0Symfony has XXE (Local File Disclosure) in DomCrawler::addXmlContent() via validateOnParse = true
-
Medium github · GHSA-29fc-p6c4-24cg · CVSS 0.0Symfony's OidcTokenHandler Accepts JWTs Missing aud/iss/exp Claims
-
Medium github · GHSA-xx3c-qf5g-hc39 · CVSS 0.0Symfony has an Argument Injection in SendmailTransport via Dash-Prefixed Recipient Address
-
High github · GHSA-qpmx-3rfj-7rhv · CVSS 0.0Symfony has Email Header / SMTP Command Injection via CRLF in Symfony\Component\Mime\Address
-
Medium github · GHSA-qc95-4862-92fh · CVSS 0.0Symfony has an HtmlSanitizer allowLinkHosts() / allowMediaHosts() Bypass via URL-Parser Differentials and <area> Misclassification
-
Medium github · GHSA-72xp-p242-47p9 · CVSS 0.0Symfony has a UrlGenerator Route-Requirement Bypass via Unanchored Regex Alternation → Off-Site //host URL Injection
-
High github · GHSA-ph86-p8f6-f9r2 · CVSS 0.0Symfony Vulnerable to Identity Spoofing via Unanchored DN Regex in X509Authenticator