The breach headlines did not suddenly mention "artificial intelligence" because hackers bought ChatGPT subscriptions. They mention AI because the attack surface moved—from static apps you could pen-test once a quarter to agents that read email, call APIs, and execute tools on your behalf. In 2026 that shift is no longer theoretical. It is sitting in your IDE, your CRM OAuth tokens, and the npm package your frontend team installed on a Tuesday.
BreachHistory indexes both flavors of harm: classic intrusions like the Conduent 62-million-patient HIPAA disaster and newer agent-era failures like forum-listed database sales against crypto analytics vendors. The through-line is not "smarter malware." It is faster abuse of trust—between humans and machines, between SaaS integrations, and between what a user thinks an AI is doing versus what it actually invoked.
The old game, accelerated
Ransomware still encrypts files. Phishing still steals passwords. What changed is throughput.
Voice-phishing crews that once hand-crafted pretexts now script calls with cloned voices and CRM context pulled from a Salesforce export. The ShinyHunters wave that hit Stellantis, Google, 7-Eleven, and dozens of other Salesforce tenants in 2025–2026 did not require a novel zero-day in the traditional sense—it required valid OAuth paths through third-party chat and integration tools, then bulk API reads. Attackers did not need to break Stellantis' datacenter. They needed a token that already had permission to ask Salesforce questions.
That is the AI-era pattern in miniature: compromise a narrow integration, inherit a wide blast radius.
Agents are endpoints now
Security teams spent twenty years classifying laptops and servers as endpoints. In 2026 you also have to classify agents—Cursor sessions with MCP tools, customer-support bots with database plugins, internal copilots wired to Jira and Slack.
Each agent is a composite principal:
- The human who typed the prompt
- The model vendor's policy layer (if any)
- Every tool the host can call—filesystem, SQL, GitHub, payment APIs
- Every document the retrieval layer fed into context
Block one bad firewall rule and you might stop a scanner. Misconfigure one agent tool scope and the model can exfiltrate rows it was never supposed to see while the user watches a polite summary stream by.
This is why "we enabled MFA" is necessary but no longer sufficient. MFA protects the human login. It does not protect the agent that already holds a live API key in mcp.json.
Prompt injection is not a parlour trick
Direct prompt injection—"ignore previous instructions" pasted into a chat box—still happens. The scarier variant for enterprises is indirect injection: malicious instructions embedded in a PDF, ticket, webpage, or email the agent ingests as ground truth.
Microsoft's security researchers describe the failure mode cleanly: external content masquerades as user intent, and the model issues tool calls the operator never consciously approved. In MCP ecosystems the same idea shows up as tool poisoning—hidden instructions in tool metadata that users never see but models treat as authoritative. Invariant Labs demonstrated agents exfiltrating chat histories through benign-looking tool descriptions; the user approved a "summarize my messages" capability and inherited a data pipeline they did not read.
To be clear: this is not "the model went sentient." It is confused deputy economics. The agent has power; untrusted text steers it.
Supply chain: models, embeddings, and MCP servers
Developers already know npm typosquatting. The AI stack adds parallel lanes:
- Foundation models and hosted embeddings—treat vendor swaps like compiler upgrades; re-run evals and red-team prompts.
- MCP servers—installing a community server is closer to
curl | bashthan adding a linter. You are granting an out-of-process program the right to act on live systems. - Poisoned SDKs—2026 has already seen cryptocurrency wallet stealers bundled into packages developers pull for Web3 integrations. Same incentive structure applies to "helpful" AI helper libraries.
BreachHistory's package-supply tracking lists multiple compromised @zapier/mcp-integration and @browserbasehq/mcp-server-* lines from worm campaigns. If your agent stack installs MCP tooling from random GitHub repos without pinning hashes, you are running an ungoverned extension marketplace on developer laptops.
AI on offense and defense—both are real
Attackers use AI to draft lures, prioritize victims, and summarize stolen dumps faster. Defenders use it to triage alerts, hunt anomalies, and—controversially—discover bugs. Microsoft publicly expects more Windows patches from AI-assisted vulnerability research in 2026. That cuts both ways: if your blue team can find logic flaws with agents, someone's red team can too.
The asymmetry is operational tempo. A human analyst might review ten phishing templates a day. A scripted pipeline can iterate ten thousand. Your compensating control is not "ban AI." It is rate limits, approvals, and logging on anything that spends money, moves data, or changes production.
Data breaches in the AI era look familiar—until you read the root cause
Not every 2026 incident is novel. Kakao Pay's 40-million-user Alipay transfer scandal is a compliance and governance failure more than a GPU story. Xsolis' 1.4-million-patient phishing breach is classic credential theft against a healthcare vendor.
But notice how often postmortems now mention third-party platforms and automation paths rather than unpatched VPNs. The Salesforce intrusions. The MCP tool that could read every file in a repo. The internal copilot with access to HR exports. Different vendors, same lesson: identity and integration sprawl beat perimeter firewalls.
What security teams should prioritize
Skip the keynote slide that says "AI governance framework" without owners. Start here:
- Inventory agent hosts. Cursor, Copilot, homegrown LangChain services—who can install tools, and with whose credentials?
- Treat tool descriptions as code. Review MCP metadata changes like you review dependency upgrades. Pin versions; diff server updates.
- Separate read and write tools. An agent that needs schema discovery should not also hold DELETE on production.
- Log tool calls with arguments redacted but intent preserved. You cannot investigate "the model did something weird" without telemetry.
- Re-run phishing drills with AI-generated pretexts. If your workforce only recognizes 2019 grammar mistakes, update the test.
- Assume OAuth and API tokens are the crown jewels. Rotate integration secrets after vendor incidents; scope them to single purposes.
What this is not
This is not an argument that AI makes defense hopeless, or that you must freeze innovation until a regulator writes a checklist. Most breaches BreachHistory still indexes are boring: stolen passwords, unpatched vendors, misconfigured buckets, ransomware dwell time measured in months.
AI raises the ceiling on speed and plausible social engineering. It does not repeal least privilege. Organizations that already struggled with asset inventory and third-party risk will feel the pain first. Teams that treat agents as privileged software—with approvals, segmentation, and audit trails—can adopt the tooling without handing attackers a remote control.
Further reading: Microsoft on indirect prompt injection in MCP, Invariant Labs tool poisoning research, SecurityWeek on Salesforce intrusion IOCs.