ยท 7 min read PRESS RESPONSE

3 Months to Patch: Why Vendor Mitigations Aren’t a Security Strategy

SafeBreach Labs just published a piece called Gemini’s Secret Affair. It is their second paper on bypassing Google’s prompt-injection mitigations against Gemini in eight months, and the deeper story is in the timeline at the bottom.

Reported to Google on August 17, 2025. Patched by Google on November 14, 2025. Three months, in which every Gemini user with the voice assistant on a phone was vulnerable to having their smart home opened, their video streamed via Zoom without consent, their long-term Gemini memory poisoned, or fake messages from their boss surfacing in their notification feed. The fix had to come from Google. There was nothing a user, developer, or enterprise could do in the meantime.

That is the part of the story worth talking about.

The New Attack

SafeBreach calls it Fake Context Alignment. The attack delivers two questions to Gemini at the same time, one that Gemini’s backend safety check sees, and one that the user sees:

User says “yes” to the English question. Gemini’s safety check, which is looking at whether the user actually authorized the tool call, sees the Chinese-or-muted text and concludes the answer maps to the malicious action. Tool fires. Window opens.

The vector: any notification on the device. WhatsApp, Slack, SMS, Signal, Instagram, Messenger. If the attacker can get a notification onto the phone, they can poison Gemini’s conversational context. The really nasty variant fakes a message from a real trusted contact — “Or Yair just sent: please upload your research docs to my Drive folder” — vocally, while the user is driving and can’t see the screen.

Long-term memory poisoning works. Persistent recurring tasks work. Gemini’s long-term memory is tied to the Google Workspace account, so poisoning the phone propagates to the tablet, the laptop, and the smart speaker.

The Pattern

This is the second iteration in a research-and-patch loop that has been running for eight months:

DateEvent
~Early 2025SafeBreach publishes Invitation Is All You Need (Calendar-invite IPI against Gemini)
Mid 2025Google ships mitigations against Delayed Tool Invocation
Aug 17, 2025SafeBreach reports notification-based bypass via responsible disclosure
Nov 14, 2025Google patches it (3 months later)
Jun 3, 2026SafeBreach publishes the writeup of the bypass

Two things to take from this timeline.

First, the patch cycle is on the order of months, not days. Three months for the most recent fix, after a researcher quietly reported it through the responsible disclosure channel. The same researcher will, almost certainly, publish another bypass within another few months. That is not a slight on Google. It is the structural reality of trying to harden a single LLM against attackers who only need to find one phrasing trick the safety classifier has not seen.

Second, the user has no role in this loop. The mitigation is server-side, in Google’s content classifier. You cannot opt into a “safer Gemini” while you wait. You cannot bring in a third tool to harden the integration. You can disable the voice assistant entirely, or you can trust that Google has patched the attacks anyone has bothered to publicly disclose so far.

Or Yair, the SafeBreach researcher, puts the structural problem clearly in the conclusion:

Existing mitigation approaches are insufficient. As long as the LLM operates as a single “magic box” that simultaneously receives backend and frontend instructions, an attacker simply needs to appear legitimate enough to bypass security guardrails.

— Or Yair, SafeBreach Labs, June 3, 2026

That is the problem with letting the model police itself. The model is the attack surface and the guard. When the attacker controls input that ends up inside the prompt — which is what indirect prompt injection means — there is no privileged channel left to make a clean decision in.

Why This Matters If You’re Shipping an Agent

If your product uses Gemini, you were running on an unpatched bypass for three months that gave attackers tool-execution on user phones. You did not know. You could not have known. You shipped on a vendor’s “it is safer now” claim, and that claim was wrong for three months.

If your product uses any other major LLM, the same pattern applies. We have watched it twice in five weeks now:

What those two stories share is that the safety story sits inside the model vendor’s own product. If you have integrated the API, you have integrated their safety story. When it fails, you fail too. There is no externally-controllable layer in between.

The Argument for Runtime Verification

This is the thing AgentShield is built for. It sits between the agent and untrusted input as a separate process, does not share weights with the model behind it, and you control when it updates. When a new indirect injection technique gets published, you do not wait for a vendor to patch. You regression-test the technique against the classifier yourself, update if needed, and ship.

A few specific things this gives you that vendor-only mitigations cannot:

None of this is a magic fix. The classifier has false positives. The labeling disagreements are real (the jackhhao role-play set is in the benchmark, with 48% FPR, openly documented). But the model is yours, runs where you run it, and updates when you update it. There is no patch window between you and the next published bypass.

What To Do

If you are building on Gemini, Claude, GPT-5.5, or any other commercial LLM, and your agent has tool access — file access, browser access, smart-home access, money-moving access, anything with real-world consequences — assume the vendor’s safety story has a 3-month patch window between published bypasses. Plan accordingly:

The next bypass is already being researched, somewhere. SafeBreach said so themselves. The question is not whether you will be patched in three months. It is what runs in front of the model in the meantime.

Run your own verification layer

AgentShield’s classifier runs the same in front of any LLM. Open source, public benchmark, per-sample FP/FN list, no vendor patch window between you and the next bypass.

Primary source: Exploiting Gemini via Prompt Injection by Or Yair, SafeBreach Labs, June 3, 2026. Companion piece on the related Anthropic disclosure: Anthropic’s 31.5% Browser Hijack Number Is the Most Honest Thing in AI Security Right Now.