AI Security AI安全 5h ago Updated 1h ago 更新于 1小时前 49

Veeam, Terraform MCP, Django Patch Critical Flaws, Led by CVSS 10.0 Cross-Tenant Bug Veeam、Terraform MCP、Django 修复关键漏洞,以 CVSS 10.0 跨租户漏洞为首

HashiCorp, Veeam, and Django patched 11 vulnerabilities across Terraform MCP Server, Veeam Service Provider Console, and Django The most critical flaw is a CVSS 10.0 cross-tenant credential-reuse bug in Terraform MCP Server's Streamable HTTP mode, allowing one user's Terraform token to be reused by subsequent users Veeam's highest-rated flaw (CVSS 9.5) enables unauthenticated impersonation of managed agents to steal credentials in the multi-tenant backup console GeoDjango's spatial lookup vulner HashiCorp、Veeam和Django Software Foundation联合修复了11个漏洞,其中最高风险为CVSS 10.0的跨租户凭证重用漏洞 Veeam Service Provider Console存在未认证攻击者获取托管代理凭证的严重漏洞(CVSS 9.5),影响版本9.2.1.33875及更早版本 Terraform MCP Server在Streamable HTTP模式下存在跨租户隔离失败,用户A的Terraform token可被用户B重用 Django GeoDjango空间查询存在任意文件写入漏洞,可能导致远程代码执行 截至2026年8月5日,这些漏洞尚未被

75
Hot 热度
65
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • HashiCorp, Veeam, and Django patched 11 vulnerabilities across Terraform MCP Server, Veeam Service Provider Console, and Django
  • The most critical flaw is a CVSS 10.0 cross-tenant credential-reuse bug in Terraform MCP Server's Streamable HTTP mode, allowing one user's Terraform token to be reused by subsequent users
  • Veeam's highest-rated flaw (CVSS 9.5) enables unauthenticated impersonation of managed agents to steal credentials in the multi-tenant backup console
  • GeoDjango's spatial lookup vulnerability allows file writes to disk and potential remote code execution by staff users with view permissions on models containing spatial fields
  • No active exploitation reported as of August 5, 2026, and none of the CVEs appear in CISA's Known Exploited Vulnerabilities catalog

Why It Matters

This patch cycle highlights critical security risks in AI-adjacent infrastructure, particularly the Terraform MCP Server which bridges AI assistants with infrastructure-as-code tooling—a growing attack surface as AI agents gain operational access. The cross-tenant isolation failures in both Veeam's multi-tenant console and HashiCorp's MCP server demonstrate how session management and credential caching flaws can lead to severe privilege escalation in shared environments. AI practitioners deploying MCP-based tooling must treat these vulnerabilities as urgent, especially since the affected configurations are precisely those designed for centralized, multi-user production deployments.

Technical Details

  • Terraform MCP Server (HashiCorp): Three flaws in Streamable HTTP transport fixed in version 1.1.0+. CVE-2026-16498 (CVSS 10.0) is a cross-tenant credential-reuse bug where the MCP library's lack of unique session identifiers in stateless mode causes the server's credential cache to mix tokens across users. CVE-2026-16496 (CVSS 8.9) is the stateful-mode equivalent where the cache uses session ID as the sole lookup key without binding it to the originating token. CVE-2026-14869 (CVSS 8.6) is an SSRF flaw where request middleware inconsistently validates Terraform addresses depending on whether they arrive as HTTP headers or query parameters. Deployments using only stdio mode are unaffected.
  • Veeam Service Provider Console: Four fixes in build 9.3.0.35057. CVE-2026-58073 (CVSS 9.5) allows unauthenticated agent impersonation to obtain managed agent credentials with high attack complexity. CVE-2026-58072 (CVSS 9.0) enables arbitrary file write leading to RCE requiring a low-privilege account. CVE-2026-58067 is an unauthenticated memory-exhaustion DoS, and CVE-2026-58071 exposes the proxied appliance API as Portal Administrator briefly after admin session start. All affect VSPC 9.2.1.33875 and earlier version 9 builds.
  • Django/GeoDjango: Patched in versions 6.0.8 and 5.2.17. A spatial lookup flaw allows file writes to disk and potential code execution, reachable by any staff user with view permission on a registered model containing a spatial field.
  • Scoring note: Veeam uses CVSS 4.0 while HashiCorp uses CVSS 3.1, making direct score comparisons invalid.

Industry Insight

  • AI infrastructure tooling like MCP servers is entering production multi-tenant deployments faster than security hardening can keep pace; operators should audit their MCP configurations immediately, restrict Streamable HTTP listener access to trusted networks, and treat session IDs as sensitive credentials until upgraded.
  • The recurrence of critical flaws in Veeam's console (second in three months) signals that multi-tenant SaaS platforms in the infrastructure management space need more rigorous isolation testing, particularly around session management and credential caching layers.
  • Security teams should prioritize patching based on deployment configuration rather than CVSS scores alone—the Terraform MCP Server's stateful mode (CVSS 8.9) is likely more broadly exploitable in practice than its stateless mode flaw (CVSS 10.0) since stateful is the default for central deployments.

TL;DR

  • HashiCorp、Veeam和Django Software Foundation联合修复了11个漏洞,其中最高风险为CVSS 10.0的跨租户凭证重用漏洞
  • Veeam Service Provider Console存在未认证攻击者获取托管代理凭证的严重漏洞(CVSS 9.5),影响版本9.2.1.33875及更早版本
  • Terraform MCP Server在Streamable HTTP模式下存在跨租户隔离失败,用户A的Terraform token可被用户B重用
  • Django GeoDjango空间查询存在任意文件写入漏洞,可能导致远程代码执行
  • 截至2026年8月5日,这些漏洞尚未被公开利用,也未出现在CISA已知利用漏洞目录中

为什么值得看

这篇文章揭示了AI基础设施关键组件(Terraform MCP Server)和主流开发框架(Django)中的严重安全漏洞,对依赖这些技术的AI从业者和企业运维团队具有重要参考价值。

技术解析

  • Veeam漏洞:CVE-2026-58073(CVSS 9.5)允许未认证攻击者冒充托管代理获取其凭证;CVE-2026-58072(CVSS 9.0)为任意文件写入漏洞,可导致远程代码执行。修复版本为9.3.0.35057。
  • Terraform MCP Server漏洞:CVE-2026-16498(CVSS 10.0)是跨租户凭证重用漏洞,源于MCP库在无状态HTTP模式下未分配唯一会话标识符;CVE-2026-16496(CVSS 8.9)是状态模式下的类似隔离失败;CVE-2026-14869(CVSS 8.6)为SSRF漏洞。修复版本为1.1.0及以上。
  • Django漏洞:GeoDjango空间查询存在任意文件写入漏洞,在特定配置下可执行代码,需要具有空间字段模型查看权限的staff用户访问。修复版本为6.0.8或5.2.17。
  • CVSS评分差异:Veeam使用CVSS 4.0,HashiCorp使用CVSS 3.1,两者评分标准不同,不能直接比较。

行业启示

  • AI基础设施安全需重点关注:Terraform MCP Server作为连接AI助手与Terraform的关键组件,其跨租户隔离失败漏洞凸显了AI工具链安全的重要性。
  • 多租户架构的安全设计至关重要:Veeam和HashiCorp的漏洞都涉及多租户环境下的隔离失败,提醒开发者在设计多租户系统时需严格验证会话标识和权限边界。
  • 及时更新和配置审查:虽然漏洞尚未被公开利用,但建议运营商立即升级到修复版本,并对现有部署进行安全配置审查,特别是限制Streamable HTTP监听器的网络访问。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Security 安全 Open Source 开源 Deployment 部署