Agentic AI threat report findings from Google Threat Intelligence Group show attackers moving from simple chatbot prompts to automated attack workflows. In one Q2 case, Google says a financially motivated actor moved from a compromised cloud resource to mass credential harvesting in under six hours.
- Google documented an attacker assembling an autonomous framework from an AI coding assistant, a prompt and agent instructions.
- The workflow handled scanning, credential testing, troubleshooting and IP rotation with minimal operator delay.
- Attackers also targeted open-source package ecosystems, proprietary models and cloud compute.
- The report does not say fully autonomous end-to-end intrusions are yet common.
The core finding: agentic automation compresses the time between initial access and material damage. Security teams should treat an AI agent as an executable identity with permissions, network reach and an auditable action trail, not as a harmless chat interface.
What the agentic AI threat report observed
Google’s report draws on Mandiant incident response, threat-actor tracking and platform defenses. The company says the six-hour campaign began after an attacker gained access to cloud infrastructure. The actor combined a coding chatbot with a prompt and markdown playbooks that described the work the system should perform.
The automated framework scanned targets and harvested credentials while troubleshooting failures and rotating source addresses. Because traffic originated from the victim’s own environment, some activity could blend into legitimate cloud operations. Google did not name the victim or publish every operational detail, so the case should be understood through the evidence and limitations disclosed by GTIG.
| Observed shift | Operational consequence |
|---|---|
| Prompting to workflows | More steps occur without waiting for an operator |
| Victim-cloud execution | Malicious traffic can resemble trusted activity |
| Agent troubleshooting | Failed steps can be retried automatically |
| Credential harvesting | Compromise can spread before manual triage begins |
| Stolen compute | Victims may fund unauthorized AI workloads |
Automation changes tempo more than technique
The individual actions are familiar: discover assets, test credentials, rotate infrastructure and exfiltrate data. What changes is the coordination speed. An operator no longer needs to review every error message or decide the next command. The agent can use feedback from one step to modify the next step, reducing pauses that defenders previously relied on.
That does not make the system independent in a human sense. The attacker still supplies access, objectives, instructions and infrastructure. Google’s wording is important: it describes advanced automation and agent-enabled workflows, while saying it has not observed fully autonomous attack pipelines operating end to end in the wild.
Independent coverage from SiliconANGLE, EFE and 01net focused on the same compressed timeline. Their reporting corroborates the release and its central findings, but the underlying telemetry remains Google’s. Readers should distinguish independent reporting about the report from independent reproduction of a confidential incident.
Open-source supply chains are both tool and target
GTIG says a group it tracks as UNC6780, also known as TeamPCP, poisoned software distributed through ecosystems including PyPI, npm and Docker Hub. The report describes trojanized forks of Model Context Protocol servers and malicious changes in repositories that AI coding assistants may clone.
Some malware samples placed files in hidden project directories associated with AI development tools. Other samples included extreme prompt-injection text apparently intended to cause model-based security scanners to refuse analysis. The tactic is a reminder that a natural-language safety refusal can itself become a defensive blind spot when security tooling treats model output as a final decision.
Package provenance therefore matters twice. Teams must check the code they install and the instructions that code exposes to agents. Signed releases, locked dependencies, restricted registries and review of MCP server permissions reduce the chance that a convenient connector becomes an executable path into internal systems.
AI systems now hold assets attackers want
The report also describes theft of proprietary models, source code and prompts from technology, healthcare and media organizations in North America and Europe. These assets can reveal intellectual property, internal controls or ways to reproduce a company’s product. In extortion cases, attackers may threaten publication just as they would with ordinary stolen files.
Compute is another target. GTIG links an alleged China-associated group, UNC6508, to attempts to run open-weight models inside compromised cloud environments. The report also notes a case in which an exposed GitHub token let an attacker provision high-performance GPU instances at a victim’s expense.
This expands the asset inventory security teams must maintain. Model weights, prompt libraries, agent credentials, tool manifests, vector stores and GPU quotas need owners, access policies and anomaly detection. A cloud account that looks quiet by ordinary application metrics may still be accumulating large compute charges or serving an unauthorized model.
What enterprises should change now
First, give every agent a distinct identity. Shared service accounts make it difficult to attribute a risky action or revoke one workflow without breaking others. Credentials should be short-lived and scoped to the smallest set of resources and actions.
Second, log decisions at the tool boundary. Teams do not need a model’s hidden reasoning to record which agent requested a command, which policy approved it, what data it accessed and what result came back. This is the same control-plane lesson behind the US agencies’ AI distillation warning: valuable model capabilities require explicit monitoring at access points.
Third, separate planning from execution. An agent can propose a sequence while a deterministic policy engine checks destinations, data classes and transaction limits. Human approval should remain mandatory for high-impact changes, but routine low-risk actions can be governed by pre-approved playbooks.
Fourth, inventory embedded agents. The riskiest workflow may not carry an AI label; it may sit inside a browser extension, support platform or coding tool with inherited OAuth grants. The permission model should reflect what the agent can actually do, similar to controls needed for consumer agents such as Meta Muse.
Limits of the evidence
Google is both a major cloud provider and a security vendor, so its visibility is substantial but not universal. The report does not establish how common the six-hour pattern is across the entire threat landscape. Named actor labels are analytic judgments, and some attributions may change as evidence develops.
The report is still useful because it supplies a concrete sequence rather than a hypothetical warning. The correct response is to test whether existing controls can detect and stop that sequence at machine speed.
A six-hour incident needs minute-scale controls
Traditional review cadences assume security teams have time to open a ticket, gather logs and escalate a suspicious pattern. An automated credential campaign can outrun that process. Detection rules need to combine identity, network and cloud-control-plane signals while the activity is still unfolding.
Examples include a service account suddenly enumerating repositories, a developer token provisioning expensive GPU instances, or an application identity rotating addresses while testing many credentials. Any one signal may be legitimate. The combination, pace and departure from the identity’s baseline make the sequence actionable.
Containment should be graduated. A policy engine can reduce rate limits, require fresh authentication, revoke one token or isolate one workload before shutting down an entire business service. Practising those responses matters because teams will otherwise hesitate when an agent is executing both legitimate and suspicious actions.
Why prompt injection belongs in supply-chain review
Agent instructions can arrive through files, package documentation, webpages and tool responses. A malicious dependency may therefore alter behaviour without exploiting a memory-safety bug. It can simply place persuasive text where an agent will read it and ask the agent to disclose secrets or ignore a security task.
Security scanners that use language models should treat refusal as an inconclusive result, not proof that a file is safe. Suspicious content can be analysed in isolated environments, transformed into non-executable representations or passed to deterministic scanners. The control objective is to stop hostile text from turning a safety policy into a blind spot.
Teams should also pin MCP server versions, review tool schemas and restrict outbound connections. An agent that can read local files and reach the internet has an obvious exfiltration path even when every component is working as designed.
Metrics for agent-security readiness
A practical program can track the percentage of agents with named owners, distinct identities, scoped credentials and complete tool-call logs. It can also measure how quickly a compromised token is detected, revoked and replaced. These are operational numbers a security leader can improve.
Counting how many AI products a company has licensed is less useful. Risk follows permissions and behaviour. One embedded agent with access to source code, customer records and production deployment can matter more than dozens of low-privilege assistants.
Boards should ask whether those controls are tested under realistic speed and failure conditions, not merely listed in a governance document.
Frequently asked questions
What is an agentic cyberattack?
It is an attack workflow in which AI agents plan or execute multiple connected steps, adapt to results and reduce the need for an operator to direct every action.
Did Google observe a fully autonomous hack?
No. Google documented advanced agent-enabled automation but said it had not observed a fully autonomous end-to-end attack pipeline operating in the wild.
Why are credentials central to the report?
Credentials let an attacker move from one service to another and can also unlock AI platforms or costly cloud compute.
What should security teams prioritize?
Distinct agent identities, least-privilege credentials, tool-call logs, dependency provenance and automated containment are the most immediate controls.
Get the day’s top stories in your inbox
One concise email. No spam, unsubscribe anytime.



