惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
J
Java Code Geeks
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
博客园 - 【当耐特】
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
博客园 - 司徒正美

SiliconANGLE

Will agentic AI governance run amok? The lesson of Asimov’s Three Laws - SiliconANGLE AI + quantum, Amazon vs. Starlink and the wide-open US-China internet battle - SiliconANGLE Team Cymru launches Total Insights Feed to replace legacy threat intelligence lists - SiliconANGLE AI Mode in Chrome adds split-screen view to enhance the web search experience - SiliconANGLE Resolve AI raises $40M at $1.5B valuation to optimize production environments - SiliconANGLE How Zscaler and OpenAI turn zero-trust security into an AI accelerator - SiliconANGLE OpenAI ratchets up Codex's agentic capabilities to rival Claude Code - SiliconANGLE Anthropic launches Claude Opus 4.7 with coding, visual reasoning improvements - SiliconANGLE Slash raises $100M at a $1.4B valuation to expand AI-powered banking platform for online businesses - SiliconANGLE Canva unveils Canva AI 2.0, recasting its platform as an agentic system for work - SiliconANGLE Data center, consumer device chips boost TSMC’s revenue - SiliconANGLE Mission-critical security cannot be bolted on, says Oracle - SiliconANGLE Agentic infrastructure reshapes enterprise AI - SiliconANGLE Data quality, and data freedom, foundational for AI success - SiliconANGLE Data trust is a bedrock in successful, scalable AI outcomes - SiliconANGLE Google introduces new agentic AI-ready tools and resources for Android developers  - SiliconANGLE Agentic AI orchestration separates winners from laggards - SiliconANGLE Data-driven tools turning the tide against human trafficking - SiliconANGLE Achieving trusted AI development goes beyond 'vibes' - SiliconANGLE Impinj boosts edge computing power in updated R700 RAIN RFID reader - SiliconANGLE Certinia powers professional services with AI - SiliconANGLE Antioch prepares to accelerate simulated testing for autonomous robots after raising $8.5M - SiliconANGLE Developer tooling startup Expo nabs $45M investment - SiliconANGLE Solidroad lands $25M to bring AI to customer support interactions - SiliconANGLE DuploCloud lands compliance and AI governance certifications as enterprise buyers tighten scrutiny - SiliconANGLE Lua lands $5.8M to help businesses build and manage AI agent workforces - SiliconANGLE Best of frenemies: Oracle's and AWS' clouds unite with dedicated, private connectivity - SiliconANGLE NIST shifts National Vulnerability Database to risk-based triage as CVE submissions hit record levels - SiliconANGLE Cisco goes to the races with new Churchill Downs multiyear partnership - SiliconANGLE Susecon 2026 will tackle the future of open-source platforms - SiliconANGLE
New MCP specification kills old risks but opens fresh att...
by Duncan Riley · 2026-06-26 · via SiliconANGLE

New MCP specification kills old risks but opens fresh attack surfaces, Akamai finds

A major overhaul of the Model Context Protocol due next month removes several longstanding protocol-level security risks but hands developers a fresh set of attack surfaces to defend, according to research published today by Akamai Technologies Inc.

The analysis examines the MCP 2026-07-28 specification, the biggest architectural change to the standard since Anthropic PBC created it to connect artificial intelligence agents to external tools and data. The final version is scheduled for release on July 28, following a release candidate published in May and carries a 12-month deprecation window for some legacy functionality. Akamai’s researchers call it the protocol’s transition from a local, single-user tool into a platform built for enterprise-scale, cloud-native deployment.

The rebuild closes off a class of risks that defined earlier versions. Previous releases relied on a stateful initialization process that established long-lived sessions through the Mcp-Session-Id header, a high-value target because an attacker who stole one could impersonate an authenticated user.

The new specification removes protocol-managed sessions entirely, eliminating that vector. It also strictly limits the server-initiated prompts that earlier versions allowed, which had let a compromised server interrupt users with unsolicited and potentially malicious requests. A move to mandatory OAuth 2.1, with legacy password and implicit grants gone and protections such as PKCE required, further cuts the authentication risk.

The tradeoff is that security decisions the protocol used to enforce now fall to the developers and platform operators building on it. Akamai outlines several new areas where the safety of an MCP deployment depends on how well it is implemented.

The first follows directly from the move to a stateless model. Because the protocol no longer keeps permanent sessions, it issues tracking identifiers and state objects that the server hands to the client, which passes them back to resume a workflow. That effectively lets the client hold the keys to a task’s state. Since those values come from the client, the server cannot blindly trust them.

The risk surfaces when a server uses predictable tracking IDs or fails to validate the integrity of a returned state object. An attacker could then guess or alter those values to hijack another user’s active workflow, reach data belonging to a different agent or trigger unauthorized cross-tenant actions. The specification warns developers to verify those objects but does not set a standard for how, Akamai noted, leaving the work to individual server developers.

A second risk lies in a new _meta object that lets clients attach custom metadata to almost any MCP message. The fields carry no cryptographic signature. An attacker can slip in their own key-value pairs, say a tenant labeled “admin.” If the server uses that metadata to make routing or authorization calls, that one forged pair hands them privilege escalation or cross-tenant access. One request is enough.

MCP also defines its own HTTP headers, Mcp-Method and Mcp-Name among them, so proxies and gateways can route requests without digging into the body. That trust is the weakness. Send one value in the header, another in the JSON-RPC body. The proxy trusts its copy, the server trusts the other and the mismatch lets a request pass that neither would allow on its own. Akamai calls it a desync. It can slip past security controls, blind monitoring or bury an attacker’s tracks.

A related directive, x-mcp-header, maps chosen tool arguments straight into HTTP headers, sparing proxies the cost of parsing the body. Convenient, until someone maps the wrong thing. Map an application programming interface key, a token or a piece of personal data by mistake, and the secret rides along in the header, exposed to every load balancer, proxy and log between client and server.

The fourth surface moves the problem into the browser. MCP Apps, the interactive panels such as forms, dashboards and document viewers that appear inside AI applications, are now a first-class protocol extension.

Akamai warns the feature imports stored cross-site scripting into the AI ecosystem. An attacker could store malicious HTML or JavaScript through a tool and the script would run when another user or agent views the content.

The specification requires those scripts to run inside a sandboxed iframe, which blocks a full takeover of the agent. But Akamai said a compromised panel could still display deceptive content, phish for sensitive information through fake prompts and steal whatever user data is visible in the panel.

The last is a denial-of-service vector Akamai calls “hit-and-run” task abuse. Long-running tasks are the culprit here. Spinning one up costs the client almost nothing while the server pays in processing power, memory or storage.

An attacker spawns an expensive operation with a single request, drops the connection and walks away. The server keeps churning on work nobody is waiting for, until it runs dry.

The bottom line, per Akamai, is that the question has moved. It is no longer whether MCP itself is secure. It is whether each application built on top of it gets the new trust boundaries, state handling and execution models right.

To do that, the company said, security teams should treat all client-supplied state and metadata as untrusted input, enforce cryptographic verification, apply output encoding to AI-generated visual panels, and set resource quotas on asynchronous tasks.

The report was written by Akamai researchers Maxim Zavodchik, Segev Fogel and Gal Meiri.

Image: SiliconANGLE/Ideogram

A message from John Furrier, co-founder of SiliconANGLE:

Support our mission to keep content open and free by engaging with theCUBE community. Join theCUBE’s Alumni Trust Network, where technology leaders connect, share intelligence and create opportunities.

  • 15M+ viewers of theCUBE videos, powering conversations across AI, cloud, cybersecurity and more
  • 11.4k+ theCUBE alumni — Connect with more than 11,400 tech and business leaders shaping the future through a unique trusted-based network.

About SiliconANGLE Media

SiliconANGLE Media is a recognized leader in digital media innovation, uniting breakthrough technology, strategic insights and real-time audience engagement. As the parent company of SiliconANGLE, theCUBE Network, theCUBE Research, CUBE365, theCUBE AI and theCUBE SuperStudios — with flagship locations in Silicon Valley and the New York Stock Exchange — SiliconANGLE Media operates at the intersection of media, technology and AI.

Founded by tech visionaries John Furrier and Dave Vellante, SiliconANGLE Media has built a dynamic ecosystem of industry-leading digital media brands that reach 15+ million elite tech professionals. Our new proprietary theCUBE AI Video Cloud is breaking ground in audience interaction, leveraging theCUBEai.com neural network to help technology companies make data-driven decisions and stay at the forefront of industry conversations.