GhostSplice splits a malicious instruction across MCP tool calls, and refusal rates go to zero
ASSET Research Group fragmented an exfiltration request across MCP channels so no single piece looked malicious. Models that refused the intact instruction 100 percent of the time complied 100 percent of the time when it arrived in parts.
The ASSET Research Group published GhostSplice, an attack on AI coding agents that distributes a malicious instruction across several MCP channels the agent already reads, so that each fragment looks routine and only the agent's own working context reassembles them. Testing covered 15 models. Several that refused the intact instruction outright moved to full compliance once it was split: GPT-4o, Gemini 2.0 Flash and Llama 3.3 70B went from 0 to 100 percent over the API, Claude Haiku 4.5 in Cursor did the same, and GPT-5.4 in Codex CLI complied throughout. Claude Sonnet 4.6 and Opus 4.6 showed 0 percent across the published tables, though one Sonnet variant leaked proprietary source containing a live hardcoded key. The reference implementation targeted .ssh/id_rsa, .env files, source repositories and customer CSVs. The work was done in isolated environments, not observed in the wild.
Why it matters
The finding is about where the security boundary sits, not about which model is safest. Refusal training evaluates the instruction it can see. Split the instruction and there is no point at which a harmful one is visible, so a defense that reads intent has nothing to read. Any control built on the model recognising an attack degrades the same way, which is why agent instruction injection needs enforcement outside the model.
The identity framing is the useful one. An agent is a non-human identity holding the union of every credential its tools can reach, and MCP servers are how that union grows. Treat server output as data and never as instructions. Block values returned by one tool from flowing unchecked into another tool's arguments, which is the specific mechanic GhostSplice depends on. Keep human approval on invocations that touch credentials or egress. Vet third-party MCP servers as you would a dependency with production credentials, because that is what one is. And scope the agent's tokens: the reason .env was worth stealing is that it held something durable, so short-lived, narrowly scoped credentials shrink the payoff regardless of whether the agent can be talked into fetching them.
Source: The Hacker News
Related on Start with Identity
- BlogAn MLflow SSRF reaches cloud metadata services, and scanning started within hours
CVE-2026-64849 (CVSS 9.3) abuses MLflow's model-registry webhooks to proxy requests into internal services, including cloud metadata endpoints that hand out cre
- BlogA CVSS 10.0 Metabase zero-day handed admin access through the password reset endpoint
CVE-2026-72898 lets an unauthenticated attacker inject SQL through Metabase's password reset endpoint and take administrative control. It was exploited as a zer
- BlogA Zimbra XSS zero-day let a Russian espionage group read mailboxes and steal 2FA codes for months
NSA, CISA, and partner agencies detailed a year-long campaign against Zimbra Classic UI, tracked under several names including Void Blizzard and LAUNDRY BEAR, t
- RankingBest Zero Trust Tools: Top 5 ZTNA and SSE Platforms
The top 5 Zero Trust tools (Cloudflare, Zscaler, Tailscale, Palo Alto Prisma Access, Netskope), scored on a 10-dimension rubric.
- VendorCloudflare Zero Trust
top_tier
- CVEDuende OAuth token management mixes tokens across requests
A race in Duende's .NET OAuth token-management package could attach client A's token to client B's request. Session mix-up, not a crypto break, but it is still