What practitioners surfaced in the last 30 days centers less on novel zero-days and more on a structural realization: as agents gain tool, codebase, and data access, untrusted content becomes executable. The sharpest concrete signal came via @glenngabe relaying Chrome's agent-security guidance warning that WebMCP can be used to hijack AI agents. Chrome names two primary attack vectors for agents using WebMCP — malicious manifests and contaminated outputs — where a hostile manifest hides prompt injection inside tool names, descriptions, and parameters, and contaminated tool outputs smuggle instructions back into the agent's context. This is the canonical tool-poisoning pattern: the agent trusts its own toolchain, so poisoning the tool metadata or its returns is as good as poisoning the prompt.
On the offense-tooling side, @VivekIntel promoted SuperClaw, an open-source framework to red-team agents against real-world threats — explicitly enumerating prompt injection, jailbreaks, tool-policy bypass, and multi-turn escalation. The multi-turn escalation framing matters: people increasingly argue single-shot filters miss attacks that build across a conversation. @ShinkaIoT amplified the OWASP agentic top-10, mapping how an agentic loop gets compromised layer by layer (the "processing and intent" layer being where injection lands first). Web coverage from thehackernews.com, infosecurity-magazine.com, truefoundry.com, and Cloud Security Alliance labs reinforced the same agent-risk and MCP-misuse themes.
On defenses people actually trust, the most credible signal was old-school and boring: a GitHub PR replacing execSync with execFileSync to kill a command-injection path in a pre-commit script — i.e., remove the shell-interpolation surface rather than try to sanitize it. That mirrors the prevailing practitioner stance: don't rely on prompt-level filtering to "detect" injection; constrain what tools can do (policy/allowlists, least privilege, separating untrusted data from instructions). The rsync "vibe-coding" blowup (RsyncProject/rsync #929, ~2,900 reactions) and the jqwik "malicious repository" thread underscored the adjacent worry that AI-generated contributions themselves introduce vulnerabilities into C/critical software. Net: teams distrust detection-only mitigations and trust capability containment, tool-policy enforcement, and removing injection-prone primitives. Caveat — this window was thin (Reddit largely blocked, zero YouTube/HN), so evidence skews toward X commentary, Chrome/OWASP guidance, and a few GitHub artifacts rather than a broad demo corpus.