# Innovaiden — Full Insights Corpus

> Concatenated markdown of every published Innovaiden insight, grouped by category. Companion to /llms.txt. Some articles contain inline JSX components (StatGrid, BarComparison, etc.) that render as data visualizations on the source pages; their text content is preserved here.

Source: https://www.innovaiden.com/llms-full.txt
Index: https://www.innovaiden.com/llms.txt
Total insights: 64

# Category: Cyber Risk

> Threat intelligence, security assessments, and risk quantification for enterprise and private equity clients.

---

# MCP Server Security: The Protocol Connecting AI Agents to Your Infrastructure

Author: Dritan Saliovski · Published: 2026-04-29 · Category: Cyber Risk · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/mcp-server-security-ai-agent-protocol

> The Model Context Protocol connects AI agents to external tools. Real 2026 CVEs show the attack surface is already being exploited.
The Model Context Protocol (MCP) is becoming the standard way AI agents connect to external tools, data sources, and infrastructure. Originally developed by Anthropic and now adopted by WordPress.com, Cursor, and dozens of other platforms, MCP allows agents to read files, query databases, invoke APIs, and interact with any system that exposes an MCP server. That connectivity is the value. It is also the attack surface.

## Key Takeaways

- **Ox Security disclosed a systemic STDIO command-injection flaw across MCP SDKs in April 2026 (CVE-2026-30623, -22252, -22688, -30615) affecting 7,000+ servers and 150M+ package downloads**
- MCPJam Inspector: remote code execution vulnerability scored CVSS 9.8
- mcp-atlassian: server-side request forgery (CVE-2026-27825, CVE-2026-27826)
- Trend Micro identified 1,467 internet-exposed MCP servers with no client authentication or traffic encryption, nearly triple the 492 it counted in July 2025

<StatGrid>
  <Stat value="9.8" label="CVSS score of MCPJam Inspector RCE" source="CVE database, 2026" />
  <Stat value="1,467" label="Internet-exposed MCP servers with no client authentication or traffic encryption, up from 492 in July 2025" source="Trend Micro, Parts 1 and 2, 2025-2026" />
</StatGrid>

## What MCP Actually Does

MCP is a protocol that lets AI agents discover and invoke tools exposed by servers. A typical MCP server might expose tools for reading Jira tickets, querying a database, sending Slack messages, or accessing a file system. The agent discovers what tools are available, selects the appropriate one based on its current task, and invokes it with parameters it constructs at runtime.

This is fundamentally different from traditional API integration. Traditional APIs serve defined endpoints with structured request/response patterns that security teams can model and monitor. MCP servers expose capabilities that agents discover and invoke dynamically. The access pattern is unpredictable by design. Security controls built for known API call patterns do not cover this dynamic invocation model.

## Real Vulnerabilities, Not Theoretical Risks

The following vulnerabilities were disclosed in 2026 and affect MCP deployments in production:

| Vulnerability | Severity | Impact |
|---|---|---|
| **STDIO command injection across MCP SDKs** (CVE-2026-30623, -22252, -22688, -30615) | Critical, systemic | Ox Security's April 2026 disclosure: a flaw in how MCP SDKs invoke local processes lets a malicious server payload execute arbitrary commands on the client. Affects 7,000+ MCP servers and SDK packages with 150M+ cumulative downloads — including LiteLLM. |
| **MCPJam Inspector RCE** | CVSS 9.8 | Remote code execution on the MCP inspection tool, allowing full server compromise |
| **mcp-atlassian SSRF** (CVE-2026-27825, CVE-2026-27826) | High | Server-side request forgery allowing attackers to reach internal services through the Atlassian connector |
| **Unauthenticated public MCP servers** | Variable | Admin panels, debug endpoints, and API routes exposed without authentication across thousands of internet-facing servers |

These are not edge cases. They are the predictable result of deploying a new protocol category at speed without the security controls that mature protocol categories (HTTPS, SSH, database protocols) accumulated over decades. For the broader context on how [AI development tooling supply chains are being targeted](/insights/ai-development-tooling-supply-chain-attacks), MCP servers are the newest surface in the same pattern.

## A Practical Control Set for MCP

| Control | Rationale | Implementation |
|---|---|---|
| **Authentication on every server** | No MCP server should accept anonymous connections | Require token-based or certificate-based authentication. Default-deny for unauthenticated requests. |
| **Network isolation** | MCP servers should not be internet-facing | Deploy behind VPN or private network. If external access is required, use an authenticated reverse proxy with rate limiting. |
| **Per-tool permission scoping** | Agents should only access the tools their task requires | Configure MCP servers to expose only the minimum tool set per agent. Do not expose administrative or destructive tools to general-purpose agents. |
| **Tool invocation logging** | Every tool call must be attributable and auditable | Log which agent called which tool, with what parameters, returning what result. Feed logs into the same monitoring pipeline as other agent actions. |
| **Supply chain vetting** | MCP servers are third-party code with infrastructure access | Apply the same vetting, version pinning, and review process as any third-party dependency. Do not install MCP servers from unvetted registries. |

## MCP in the Broader Agent Security Architecture

MCP server security is not a standalone concern. It connects directly to three other domains in the [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework): access control (MCP tools inherit the agent's permissions), supply chain integrity (MCP servers are supply chain components), and monitoring (MCP tool invocations must be logged and reviewed).

For organizations already managing [AI agent identity and IAM](/insights/ai-agent-identity-iam-security), MCP servers add a new credential surface. Every MCP server that an agent connects to requires a credential, and that credential must be scoped, rotated, and revocable on the same lifecycle as any other agent identity.

The MCP Security Assessment Guide includes the server audit checklist, the permission-scoping template, and the supply chain vetting criteria for MCP marketplace components.

## Sources

1. [Anthropic - Model Context Protocol Specification](https://modelcontextprotocol.io)
2. [Trend Micro - MCP Security: Network-Exposed Servers Are Backdoors to Your Private Data (Part 1, July 2025)](https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/mcp-security-network-exposed-servers-are-backdoors-to-your-private-data)
3. [Trend Micro - Update on Exposed MCP Servers: Threat Widens to the Cloud (Part 2)](https://www.trendmicro.com/vinfo/us/security/news/vulnerabilities-and-exploits/update-on-exposed-mcp-servers-the-threat-widens-to-the-cloud)
4. [Trend Micro - Beware of MCP Hardcoded Credentials (Part 3)](https://www.trendmicro.com/vinfo/us/security/news/vulnerabilities-and-exploits/beware-of-mcp-hardcoded-credentials-a-perfect-target-for-threat-actors)
5. [SecurityWeek - MCPJam Inspector RCE Disclosure](https://www.securityweek.com)
6. [CVE Database - CVE-2026-27825](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-27825), [CVE-2026-27826](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-27826)
7. [OWASP - 2026 Top 10 for LLM Applications](https://owasp.org/www-project-top-10-for-large-language-model-applications/)
8. [Ox Security — The Mother of All AI Supply Chains: Systemic Vulnerability at the Core of the MCP](https://www.ox.security/blog/the-mother-of-all-ai-supply-chains-critical-systemic-vulnerability-at-the-core-of-the-mcp/). April 2026.


---

# What Risk Committees Need to Know About AI Coding Tools

Author: Dritan Saliovski · Published: 2026-04-28 · Category: Cyber Risk · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/ai-coding-tools-risk-committee-briefing

> AI coding tools are adopted team by team, below committee line of sight. Three questions separate oversight from assurance.
AI coding tools are being adopted faster than any technology category since cloud computing, and the adoption is largely happening below the committee line of sight. The tools are procured team by team, enabled in existing SaaS without a new approval, and embedded in developer workflows before governance has a structured view of the exposure.

## Key Takeaways

- 83% of organizations plan to deploy agentic AI; only 29% feel ready to do so securely (Cisco, State of AI Security 2026). Both are shares of the same surveyed population, so this is a readiness gap across the whole sample, not a subset of the 83%
- 73% of production AI deployments have exploitable prompt injection vulnerabilities
- Multiple 2026 incidents (RoguePilot, CamoLeak, Comment-and-Control) demonstrate real exploitation at CVSS 9.4 to 9.8 severity
- 97% of non-human identities, including those used by AI coding agents, have excessive privileges

<StatGrid>
  <Stat value="83%" label="Of surveyed organizations plan to deploy agentic AI" source="Cisco, State of AI Security 2026" />
  <Stat value="29%" label="Of the same surveyed organizations feel ready to do so securely" source="Cisco, State of AI Security 2026" />
  <Stat value="97%" label="Of NHIs have excessive privileges" source="Entro State of NHI, 2025" />
</StatGrid>

## Why AI in Development Is Both Accelerator and Risk Multiplier

The productivity case is real. Code suggestions, test generation, documentation, and routine refactoring can genuinely reduce engineering time. For an organization with 200 engineers at a loaded cost of $250,000 per year, a 10% productivity improvement is $5 million annualized. The business case is not the problem.

The risk case is that an AI agent in the development environment has the same file system access, shell execution privileges, and database credentials that the developer does, without the same judgment, training, or accountability. When the AI is induced to take a malicious action (through prompt injection, supply chain compromise, or credential leakage), the resulting incident is indistinguishable from a trusted insider attack. For the technical details on [how these attacks work in practice](/insights/ai-coding-tools-sdlc-security), the real 2026 CVEs demonstrate that these are not theoretical risks.

## Three Questions to Ask Management

| Question | What "Good" Sounds Like | Red Flag |
|---|---|---|
| **Which AI coding tools are authorized, and under what conditions?** | A specific list with conditions per tool | "Developers can use approved tools" without naming the list or who maintains it |
| **What is the permission model for AI agents in the development environment?** | "No agent has access to production credentials, with documented controls" | Any answer suggesting agents share developer-level access to production |
| **How are AI-related security incidents detected and reviewed?** | Described detection for prompt injection, credential leak, and unauthorized agent actions | Cannot describe what detection looks like for AI-specific attack patterns |
| **What version of each tool is actually deployed, and who confirms it?** | A current version inventory with an owner and an upgrade SLA | "We're on the latest" with no inventory — the answer DuneSlide made expensive |

## DuneSlide: When the Sandbox Is the Control That Fails

On 1 July 2026, Cato AI Labs disclosed two critical vulnerabilities in Cursor, collectively named **DuneSlide** and tracked as **CVE-2026-50548** and **CVE-2026-50549**, both rated **CVSS 9.8**. A single prompt-injected instruction hidden in content the agent merely reads, such as an MCP connector response or a web search result, could escape the terminal sandbox and execute arbitrary commands on the developer's machine with no click and no approval. CVE-2026-50548 abuses the `working_directory` parameter of the agent's terminal tool, which the agent can set without restriction, allowing writes to system paths including the sandbox binary itself. CVE-2026-50549 exploits a fallback in path resolution: when the symlink check fails, the declared path is trusted rather than blocked. Cato notes that Cursor reports the IDE is used by over half the Fortune 500. The exploit paths Cato demonstrates are macOS-specific, targeting the application bundle, the shell profile and user launch agents, so the proof-of-concept should not be read as a cross-platform result.

Two facts belong in front of a risk committee. First, both flaws were fixed in **Cursor 3.0, released 2 April 2026**, with CVE identifiers assigned on 5 June — meaning every version before 3.0 remains vulnerable and the exposure is a version-inventory question, not a patch-availability question. Worth noting that the two fixes were confirmed months apart even though they shipped together: the working-directory fix was confirmed on 1 April as landing in 3.0, and the link-target fix was not confirmed as having shipped in the same release until 1 June. Second, the disclosure timeline is itself governance-relevant: Cato reported privately on 19 February; the report was rejected on 23 February on the grounds that Cursor's threat model did not account for MCP server misuse; Cato escalated to the security team on 26 February, at which point it was reopened and fixed. A vendor whose threat model excludes the connector ecosystem it ships is telling you something about its assumptions, and vendor responsiveness is a procurement criterion, not a footnote.

The committee implication is narrow and important. The standard reassurance for agentic coding tools is that the agent runs sandboxed. DuneSlide is a case where the sandbox was the control that failed, through the agent's own legitimate parameters. "It's sandboxed" is therefore an answer that now requires a follow-up: sandboxed by what, verified how, and on which version.

## What the Latest Data Says

Two reference points published in late April 2026 sharpen the committee conversation. **ProjectDiscovery's [2026 AI Coding Impact Report](https://www.prnewswire.com/news-releases/projectdiscoverys-2026-ai-coding-impact-report-reveals-ai-generated-code-is-outpacing-security-teams-ability-to-keep-up-302749706.html)** found that AI-generated code is being merged faster than security teams can review it, and that the share of S&P 500 companies disclosing AI risk in their annual filings rose from 12% in 2024 to **83% in 2026** — a year-over-year shift that maps directly to risk-committee territory. **Cursor [CVE-2026-26268](https://novee.security/blog/cursor-ide-cve-2026-26268-git-hook-arbitrary-code-execution/)**, disclosed in late April, lets a malicious repository's Git hook execute arbitrary code on a developer's machine when the AI agent autonomously runs Git operations — joining RoguePilot and CamoLeak as a third named SDLC-level AI coding exploit.

For the committee, the implication is concrete: this is no longer a category where "we're tracking it" passes. The risk has named CVEs, a documented disclosure-to-filing pattern, and S&P 500 peer disclosures the board can be benchmarked against.

## Tracking Safe Productivity, Not Just Volume

The temptation is to measure AI adoption by volume: how many PRs include AI-generated code, how many hours of engineering time have been freed. These metrics are not wrong, but they do not capture the risk side.

A more complete metric set includes: the count of AI-agent-originated PRs merged without human review (should trend to zero), the count of AI-agent credentials in rotation (should trend upward as static tokens are replaced with short-lived ones), and the count of AI-related security incidents detected and contained (should be non-zero in any organization with real visibility, because if the metric is zero, it usually means the organization is not detecting them).

## What Committees Should Expect Quarterly

A single slide showing four things: the sanctioned AI coding tool inventory, the AI agent identity count and permission status, the count of AI-related security incidents and their outcomes, and any material changes to the risk posture in the prior quarter. If management cannot produce this slide, the committee does not have oversight of this category. For how [boards should approach the broader AI agent question](/insights/board-questions-ai-agents), the coding-tool briefing is a subset of the same governance challenge.

The Committee Briefing Pack includes the metric definitions, the quarterly report template, and the three-question assessment framework.

## Sources

1. [OWASP - 2026 Top 10 for LLM Applications](https://owasp.org)
2. [Entro Security - 2025 State of Non-Human Identities](https://entro.security)
3. [Orca Security - RoguePilot Vulnerability Disclosure, February 2026](https://orca.security)
4. [Legit Security - CamoLeak Disclosure](https://www.legitsecurity.com)
5. [Cato Networks — DuneSlide: two critical RCE vulnerabilities via zero-click prompt injection in Cursor IDE](https://www.catonetworks.com/blog/duneslide-two-critical-rce-vulnerabilities/). 1 July 2026.
6. [SecurityWeek — Critical Cursor AI code editor flaws could lead to OS-level remote code execution](https://www.securityweek.com/critical-cursor-ai-ide-flaws-could-lead-to-os-level-remote-code-execution/). July 2026.
7. [CSO Online — Sandbox bypass flaws in Cursor IDE highlight prompt injection as an RCE vector](https://www.csoonline.com/article/4191923/sandbox-bypass-flaws-in-cursor-ide-highlight-prompt-injection-as-an-rce-vector.html). July 2026.
5. [ProjectDiscovery — 2026 AI Coding Impact Report](https://www.prnewswire.com/news-releases/projectdiscoverys-2026-ai-coding-impact-report-reveals-ai-generated-code-is-outpacing-security-teams-ability-to-keep-up-302749706.html). April 2026.
6. [Novee Security — Cursor CVE-2026-26268](https://novee.security/blog/cursor-ide-cve-2026-26268-git-hook-arbitrary-code-execution/). April 2026.
7. Cisco. [State of AI Security 2026](https://www.cisco.com/site/us/en/products/security/state-of-ai-security.html). 2026. The 83%/29% readiness pair draws on the [Cisco AI Readiness Index 2025](https://www.cisco.com/c/m/en_us/solutions/ai/readiness-index.html) (8,000+ senior IT and business leaders, 30 markets, double-blind, published 14 October 2025); both percentages are shares of the same surveyed population.


---

# From AI Principles to Proof of Control

Author: Dritan Saliovski · Published: 2026-04-23 · Category: Cyber Risk · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/ai-principles-proof-of-control

> Boards approved AI principles. The next 18 months are about proving those principles operate as controls. The gap is where regulatory risk sits.
Boards have spent the last 18 months approving AI principles. The next 18 months will be about proving those principles operate as controls. The question is no longer "do we have a policy." It is "can you demonstrate that the policy is enforced." The gap between those two questions is where reputational and regulatory risk sits.

## Key Takeaways

- Close to seven in ten breached organizations lack governance policies for managing AI or spotting unapproved use (IBM Cost of a Data Breach 2026), up from the 63% that had no AI governance policy or were still developing one a year earlier (IBM, 2025); fewer still have operational controls enforcing one
- 78% of organizations lack formal policies for creating or removing AI identities
- 92% of organizations lack confidence that their legacy IAM tools can manage AI risks
- The EU AI Act high-risk obligations now apply 2 December 2027 (Annex III) and 2 August 2028 (Annex I) under the Digital Omnibus deferral, with penalties up to EUR 15 million or 3% of global annual turnover, whichever is higher (Article 99(4)); the Commission's 19 May 2026 draft Article 6 guidelines set the classification interpretation supervisors will use

<StatGrid>
  <Stat value="~70%" label="Of breached organizations lack governance policies for managing AI or spotting unapproved use, up from 63% lacking or still developing one in the 2025 edition" source="IBM Cost of a Data Breach Report, 2026" />
  <Stat value="78%" label="Lack formal AI identity lifecycle policies" source="CSA / Oasis Security, January 2026" />
  <Stat value="€15M / 3%" label="EU AI Act penalty ceiling for high-risk obligations, whichever is higher; prohibited practices reach €35M or 7%" source="Regulation (EU) 2024/1689, Article 99" />
</StatGrid>

## The Gap Between Stated Principles and Daily Reality

Most AI principle documents contain variations of the same five commitments: human oversight, transparency, fairness, security, accountability. These are good principles. They are also the same principles that, in organizations that have experienced AI incidents, were in place on the day the incident happened.

The gap is not the principles. It is the evidence that the principles have teeth. A principle with teeth has three attributes: it translates into a specific control, the control operates without human intervention, and the operation is logged so it can be audited. A principle without teeth is a sentence. For organizations that are building the [runtime controls that convert principles into enforcement](/insights/ai-governance-runtime-controls), the evidence framework below is what makes those controls auditable.

## What Meaningful Evidence Looks Like

Three categories of evidence, in combination, move a board from trust to verification:

| Evidence Category | What It Proves | What "Good" Looks Like |
|---|---|---|
| **Logs** | AI interactions are captured and reviewable | Every material AI interaction logged, showing who requested what, which system responded, what was returned, and whether policy rules triggered. Retained for a defined period. Reviewable on demand. |
| **Approvals** | High-impact AI decisions have accountability | Every decision to train a new model on internal data, deploy an agent with production access, or grant elevated permissions has a trail naming the approver, date, scope, and expiration. "We authorized this in a meeting" is not an approval trail. |
| **Red-team reports** | AI systems have been tested for failure modes | At least annually, AI systems are tested by a team (internal or external) whose job is to find failures. Report delivered, findings prioritized, remediation tracked. If the red team surfaces no findings, either the AI surface is too limited or the red team is not competent. |

## Three Artifacts the Board Should Expect Quarterly

**The AI inventory.** Count of AI systems, count of agents, count of non-human identities tied to AI. Trend over time. Any material additions flagged. For how [AI agent identity management](/insights/ai-agent-identity-iam-security) creates the inventory that feeds this artifact, the identity register is the foundation.

**The incident log.** All AI-related incidents detected in the quarter, whether they resulted in disclosure or not. If the number is zero, a note on detection coverage that would surface an incident if one occurred. For how [shadow AI creates incidents that most organizations cannot detect](/insights/shadow-ai-risk-register-governance), the incident log needs to cover both governed and ungoverned AI.

**The control-effectiveness report.** For the top five AI governance controls (defined by the organization), the result of the most recent test of each. Pass, partial, or fail. Remediation timeline for any below pass.

These are not complicated artifacts. They are, however, the artifacts that separate organizations with runtime AI governance from organizations with a PDF. For the convergence of [AI, cybersecurity, and regulatory requirements](/insights/ai-cybersecurity-regulation-convergence), these quarterly artifacts address all three domains simultaneously.

## What Happens When the Evidence Is Absent

Three things, in sequence. First, the organization cannot answer the question when regulators ask. Second, when an incident happens, the legal and regulatory posture is weaker because the absence of evidence is itself evidence. Third, the insurance cost increases because the cyber insurance market is explicitly pricing AI governance maturity into premiums.

The cost of producing the evidence is lower than the cost of not having it.

The Board AI Evidence Pack includes the quarterly artifact templates, the control-effectiveness testing methodology, and a readiness self-assessment for EU AI Act enforcement — including the Article 6 classification rationale supervisors now expect under the Commission's 19 May 2026 draft guidelines. For the full read of the draft and what it changes for the evidence pack, see [the EU's high-risk AI filter: inside the May 2026 draft guidelines](/insights/eu-ai-act-draft-guidelines-high-risk-classification).

## Sources

1. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026).
2. [IBM - Cost of a Data Breach Report 2025](https://www.ibm.com/reports/data-breach). 2025. Cited for the prior-year governance-policy figure (63% of breached organizations had no AI governance policy or were still developing one).
3. [Cloud Security Alliance and Oasis Security - State of NHI and AI Security Survey](https://cloudsecurityalliance.org/artifacts/state-of-nhi-and-ai-security-survey-report). 2026-01-27.
4. [Regulation (EU) 2024/1689 (EU AI Act), Article 99 — penalties](https://eur-lex.europa.eu/eli/reg/2024/1689/oj/eng). 2024.
5. [Regulation (EU) 2026/1744 (Digital Omnibus on AI) — deferral of high-risk obligations](https://eur-lex.europa.eu/eli/reg/2026/1744/oj/eng). In force 27 July 2026.
6. [European Commission — Draft Commission guidelines on the classification of high-risk AI systems](https://digital-strategy.ec.europa.eu/en/library/draft-commission-guidelines-classification-high-risk-ai-systems). 19 May 2026.


---

# When Your Coding Copilot Installs Malware: Securing AI in the SDLC

Author: Dritan Saliovski · Published: 2026-04-20 · Category: Cyber Risk · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-coding-tools-sdlc-security

> RoguePilot, CamoLeak, and Comment-and-Control attacks prove AI coding tools are a live attack surface. A practical control set for development teams.
The attacks are no longer theoretical. RoguePilot (disclosed by Orca Security, February 2026; no CVE assigned, since the flaw is a behavioural property of the agent rather than a versioned defect) turned GitHub Copilot into a repository-takeover vector via indirect prompt injection. CamoLeak (CVE-2025-59145, CVSS 9.6) turned Copilot Chat into a silent data exfiltration channel. A systematic analysis synthesising 78 studies from 2021 to 2026 found that attack success rates against state-of-the-art prompt-injection defenses exceed 85% once adaptive attack strategies are used. AI in the SDLC is a productivity accelerator. It is also a new attack surface with a current, measurable exploit rate.

## Key Takeaways

- Real CVEs in the AI toolchain: MCPJam Inspector RCE (CVE-2026-23744, CVSS 9.8) and mcp-atlassian SSRF (CVE-2026-27826, CVSS 8.2) in 2026; CamoLeak (CVE-2025-59145, CVSS 9.6) disclosed October 2025. RoguePilot (February 2026) has no CVE.
- Claude Code, Gemini CLI, and GitHub Copilot Agent were all found vulnerable to Comment-and-Control attacks in April 2026
- Palo Alto Unit 42 confirmed the same nine attack patterns work across CrewAI and AutoGen, proving these vulnerabilities are framework-agnostic

<StatGrid>
  <Stat value="85%+" label="Attack success rate against state-of-the-art prompt-injection defenses when adaptive attacks are used" source="arXiv:2601.17548, January 2026" />
  <Stat value="9.6" label="CVSS score of CamoLeak source-code exfiltration" source="Legit Security, October 2025 (CVE-2025-59145)" />
</StatGrid>

## Real Failure Modes That Shipped in 2026

**Indirect prompt injection via repository content.** RoguePilot demonstrated the pattern: an attacker files a GitHub Issue with hidden instructions in an HTML comment. A developer opens a Codespace from that issue. Copilot reads the issue description as context, interprets the hidden instructions as commands, and exfiltrates the GITHUB_TOKEN to a remote server. The developer sees nothing.

**Supply chain attacks via agent components.** The [OpenClaw security crisis](/insights/ai-development-tooling-supply-chain-attacks) affected an open-source agent framework with over 135,000 GitHub stars. Multiple critical vulnerabilities and malicious marketplace exploits were identified, with over 21,000 exposed instances.

**Rules File Backdoor.** Pillar Security documented attacks using hidden Unicode characters in AI configuration files (the rules files that guide Cursor, Copilot, and similar tools) to inject malicious instructions. The AI generates vulnerable code that passes human review because the instructions are invisible.

**Comment-and-Control.** In April 2026, researchers disclosed that Claude Code Security Review, Gemini CLI Action, and GitHub Copilot Agent could be manipulated via PR titles and issue comments to leak API keys and tokens. Base64 encoding bypassed secret scanners; pushes through normal Git channels bypassed network firewalls.

**Cursor CVE-2026-26268 (Git hook + AI agent RCE).** Late April 2026 disclosure: a [chain in Cursor](https://novee.security/blog/cursor-ide-cve-2026-26268-git-hook-arbitrary-code-execution/) lets a malicious repository's Git hook execute arbitrary code on the developer's machine when the AI agent autonomously runs Git operations as part of its workflow. The exploit needs no user click — opening or clone-pulling a poisoned repo while the agent is active triggers the hook with full developer privileges. Same threat model as the older repository-content prompt injection attacks, but lower in the stack: the agent does not need to be tricked, it just needs to do what it normally does (run Git) inside an attacker-controlled repository.

## A Practical Control Set

The following controls address the specific attack patterns documented above:

| Control | What It Addresses | Implementation |
|---|---|---|
| **Environment isolation** | Agent access to production credentials, host filesystem | Sandboxed environments (restricted-egress Codespaces, Docker with explicit network policies). No direct access to production credentials or long-lived tokens. |
| **Package and model trust** | Supply chain compromise via suggested dependencies | Pin allowed package sources. Block installation from unapproved registries. Apply same scrutiny to MCP servers and agent components as any third-party code. |
| **Least-privilege permissions** | Over-permissioned agent credentials | Per-agent, per-repository, per-task. Code review agents get no write access. PR agents get no merge access. Revoke on task completion. Rotate weekly for production-adjacent agents. |
| **Logging and review** | Invisible malicious instructions, undetected exfiltration | Every agent action logged and attributable. Agent-opened PRs flagged and subject to same review bar as human PRs. Agent-generated code reviewed assuming it may contain hidden instructions. |
| **Human checkpoint** | Autonomous high-impact actions | No AI agent merges to main, deploys to production, or rotates credentials without human approval. The efficiency argument against this checkpoint produced every 2026 incident listed above. |

## Integrating With Existing DevSecOps

AI in the SDLC does not require a new security program. It requires extending the existing one. Four adaptations cover most of the work:

Add AI agents to the asset inventory. Every agent is an identity with permissions. Track it like any other. For how [AI agent identity management](/insights/ai-agent-identity-iam-security) requires purpose-built controls beyond traditional IAM, agent credentials in development environments are the same problem.

Add AI prompt injection to the threat model. Every system that accepts AI-generated output from an attacker-controllable source (issues, PRs, comments, commits) has a prompt injection vector.

Extend secret scanning and DLP to AI-agent actions and outputs, not just human commits.

Update incident response runbooks. When an agent is suspected of being compromised: pause the agent, rotate its credentials, audit its recent actions, and assess what it had access to. For the broader [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework), incident response for agent compromise is Domain 6.

The AI-in-SDLC Control Set includes the agent permission matrix, sandbox configuration templates, and the incident response runbook adaptation for AI coding tool compromise.

## Sources

1. Orca Security - RoguePilot Vulnerability Disclosure, February 2026. orca.security. 2026.
2. Legit Security - CamoLeak CVE-2025-59145 Analysis. legitsecurity.com. October 2025.
3. Pillar Security - Rules File Backdoor Research. pillar.security. 2026.
4. SecurityWeek - Comment and Control Vulnerability Disclosure, April 2026. securityweek.com. 2026.
5. [OWASP — Top 10 for LLM Applications 2025](https://owasp.org/www-project-top-10-for-large-language-model-applications/). 2025.
6. Maloyan & Namiot - "Prompt Injection Attacks on Agentic Coding Assistants: A Systematic Analysis of Vulnerabilities in Skills, Tools, and Protocol Ecosystems" (arXiv:2601.17548). arxiv.org. 24 January 2026.
7. [Palo Alto Unit 42 — AI Agents Are Here. So Are the Threats.](https://unit42.paloaltonetworks.com/agentic-ai-threats/). 2025.
8. [Novee Security — Cursor IDE CVE-2026-26268: Git Hook Arbitrary Code Execution](https://novee.security/blog/cursor-ide-cve-2026-26268-git-hook-arbitrary-code-execution/). April 2026.


---

# Three Questions Boards Should Ask About AI Agents

Author: Dritan Saliovski · Published: 2026-04-17 · Category: Cyber Risk · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/board-questions-ai-agents

> Most boards hear the AI productivity pitch but not the identity, permission, and accountability model underneath. Three questions surface the gap.
Most boards are hearing a version of the same management pitch: the organization is adopting agentic AI to drive productivity and margin. What boards typically do not hear is the identity, permission, and accountability model underneath. Three questions, asked directly, surface whether management has an AI agent strategy or an AI agent problem.

## Key Takeaways

- Only 5% of CISOs feel confident they could contain a compromised AI agent
- 92% of organizations lack confidence that their legacy IAM tools can manage AI and NHI risks
- Gartner predicts 40% of enterprise applications will include task-specific AI agents by end of 2026, up from under 5% in 2025
- Industry analysts are forecasting the first major enterprise breach traced directly to an over-privileged AI agent in 2026

<StatGrid>
  <Stat value="5%" label="Of CISOs confident they could contain a compromised agent" source="Saviynt 2026 CISO AI Risk Report" />
  <Stat value="92%" label="Lack confidence in legacy IAM for AI risks" source="CSA / Oasis Security, January 2026" />
  <Stat value="40%" label="Of enterprise apps predicted to include AI agents by end of 2026" source="Gartner, press release, 26 August 2025" />
</StatGrid>

## Question One: Where Will AI Agents Be Making Decisions or Taking Actions?

The right board question is not "are we using AI." It is "where does AI take action autonomously, and what authority does it have." Every agent in production needs a line on this list: what it does, what systems it touches, what decisions it can make without human review.

The management answer to watch for: a vague statement about "productivity tools" or "using copilots." The answer a board needs: a specific inventory of agents, classified by the sensitivity of what they can do, with a clear boundary between advisory (the agent recommends, a human decides) and executive (the agent acts on its own authority). For the technical reference on how [AI agent identity models differ from human IAM](/insights/ai-agent-identity-iam-security), the structural mismatch between what agents require and what legacy systems provide is the root issue.

## Question Two: Who Owns the Risk of Machine Actors?

In traditional operations, every high-risk action has an accountable human. That human has authority to act, training to use it, and consequences if they act outside their authority. For AI agents, the analogue is less clear. An agent has authority (its credentials) but no training in judgment and no personal consequence for misuse.

The board should ask: for every agent taking action on our behalf, who is the named human owner, and what is their authority to approve, pause, or retire that agent. "IT operations" is not an owner. A named individual is an owner.

This also addresses the concentration problem. If one team owns 40 agents with broad access, the organization has delegated an enormous amount of operational authority to a handful of people. That is worth the board knowing. For how the [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework) structures ownership across six operational domains, the accountability model maps directly to these board questions.

## Question Three: What Evidence Can Management Provide That Agents Are Controllable?

The third question is the evidence question. Management can say the organization has controls. The board needs artifacts that prove it. Three are sufficient to separate policy from practice:

| Artifact | What It Proves | Red Flag If Missing |
|---|---|---|
| **Current agent inventory** | Management knows what agents exist, who owns them, and what they can access | Agents are operating without visibility or accountability |
| **Permission review cycle** | Access has been reviewed in the last 90 days, with documented dates | Permissions were set once and never revisited; scope creep is unchecked |
| **AI agent incident log** | Unintended actions, unauthorized access attempts, and policy violations are being tracked | Either incidents are not occurring (unlikely) or they are not being detected |

An organization that cannot produce these three artifacts does not have agent governance. It has agent deployment with hope.

The artifacts now have concrete reference implementations to compare against. Microsoft's [Agent 365](https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/) reached general availability on 1 May 2026, and [Copilot Cowork](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/), which integrates Anthropic's Claude Cowork technology, followed on 16 June 2026. Microsoft positions Agent 365 as an agent control plane covering identity, policy and audit, which is the shape these questions ask for. Boards do not have to invent the format; they can ask "what does our equivalent of an Agent 365 audit log look like?" If the answer is "we don't have one," that is the gap. If the answer is "we use Agent 365," the next questions are about who manages the policies and how exceptions are reviewed.

## What the Board Does With the Answers

If all three questions yield concrete answers, the agent program is being managed. If one or more yields vague answers, the board should set a timeline for remediation, typically 90 days, and return to the question. The cost of pressing on this early is management discomfort. The cost of not pressing is that the organization becomes the case study the next industry report cites.

The AI Agent Board Question Pack includes the full question set, escalation triggers for unsatisfactory answers, and a quarterly reporting template for ongoing oversight.

## Sources

1. [Saviynt - 2026 CISO AI Risk Report](https://www.saviynt.com)
2. [Cloud Security Alliance and Oasis Security - State of NHI and AI Security Survey Report, January 2026](https://cloudsecurityalliance.org/artifacts/state-of-nhi-and-ai-security-survey-report)
3. [Cloud Security Alliance - 82% of Enterprises Have Unknown AI Agents in Their Environments (Shadow AI Survey, April 2026)](https://cloudsecurityalliance.org/press-releases/2026/04/21/new-cloud-security-alliance-survey-reveals-82-of-enterprises-have-unknown-ai-agents-in-their-environments)
4. [Gartner Predicts 40% of Enterprise Apps Will Feature Task-Specific AI Agents by 2026, Up from Less Than 5% in 2025](https://www.gartner.com/en/newsroom/press-releases/2025-08-26-gartner-predicts-40-percent-of-enterprise-apps-will-feature-task-specific-ai-agents-by-2026-up-from-less-than-5-percent-in-2025). Gartner press release, 26 August 2025.
5. [One Identity - 2026 Threat Predictions](https://www.oneidentity.com)
6. [Microsoft — Microsoft Agent 365 now generally available](https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/). 1 May 2026.
7. [Microsoft — Copilot Cowork is now generally available](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/). 16 June 2026.


---

# Three Convergence Points Reshaping Enterprise Security Intelligence

Author: Dritan Saliovski · Published: 2026-04-15 · Category: Cyber Risk · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/ai-cybersecurity-regulation-convergence

> AI agents, data governance, and regulatory enforcement are converging into a single challenge. Treating them separately creates blind spots.
The intersection of AI, cybersecurity, and regulatory policy is producing developments faster than any single professional can track. A new vulnerability disclosure, a regulatory enforcement action, a vendor acquisition, or an AI capability announcement can shift the landscape in a single week. The challenge for CISOs, PE deal teams, and board members is not access to information. It is separating signal from noise.

## Key Takeaways

- AI agent deployment, data governance, and regulatory enforcement are converging into a single operational challenge
- Structured intelligence organized around recurring pillars is more actionable than reactive news monitoring
- Every development has different implications depending on whether you are a CISO, a PE operating partner, or a board member
- Organizations that track these domains separately are accumulating blind spots at the intersections

## The Problem with How Leaders Track Security Developments

Most professionals who need to stay current on cybersecurity and AI developments rely on one of two approaches: monitoring a set of news sources daily, or waiting for a quarterly industry report to summarize trends. Both have significant limitations.

| Approach | Strength | Limitation |
|---|---|---|
| **Daily monitoring** | Timeliness | Time-intensive, high noise-to-signal ratio, vendor-driven, no connective thread |
| **Quarterly reports** | Comprehensiveness | A trend identified in January may be fully mature by April. Too slow for emerging developments. |
| **Pillar-based synthesis** | Timely + cumulative | Connects individual data points to trajectories and organizational priorities |

Daily monitoring produces diminishing returns. The volume of AI and cybersecurity news is now so high that even a dedicated 30-minute daily scan yields more noise than signal. Most reporting is vendor-driven, event-reactive, or duplicative across outlets. The result is a constant stream of data points with no connective thread.

Quarterly reports solve the volume problem but sacrifice timeliness. A trend identified in January may be fully mature by the time it appears in a Q1 summary published in April. For decision-makers who need to act on emerging developments, quarterly cadence is too slow.

## The Three Convergence Points

What makes the current landscape structurally different from even two years ago is that three domains that were historically managed by separate teams, with separate budgets and separate reporting lines, are now producing developments that cascade across each other.

**AI agents and autonomous systems.** The deployment, exploitation, and governance of AI agents is the fastest-moving domain. New capability announcements, vulnerability disclosures, agent-related incidents, and shifts in how organizations deploy autonomous systems are arriving weekly. [Project Glasswing](/insights/project-glasswing-cybersecurity-assessment-baseline) demonstrated that AI can find vulnerabilities that survived decades of human review. [Agentic attackers](/insights/agentic-attackers-ai-enabled-cyber-threats) are compressing breakout times: CrowdStrike puts the average eCrime breakout time at 29 minutes in 2025, with the single fastest observed breakout taking just 27 seconds. And [enterprise AI agent deployments](/insights/ai-agent-security-risks-enterprise) are creating attack surfaces that most security teams have not yet mapped.

**Data governance and machine identity.** Data security, classification, machine identity, and the intersection of data protection with AI deployment form the second convergence point. This is where most organizations face their most immediate operational gaps. [Shadow AI](/insights/shadow-ai-discovery-10-day-sprint) means data is leaving organizations through channels security teams cannot see. [Data discovery](/insights/data-discovery-before-ai-deployment) is a prerequisite that most organizations have not completed. And [AI agent identity management](/insights/ai-agent-identity-iam-security) requires controls that legacy IAM systems were never designed to provide.

**Regulatory enforcement and deal activity.** Regulatory actions, enforcement decisions, M&A transactions, and policy developments increasingly treat AI, cybersecurity, and data governance as a single integrated obligation. [Four EU frameworks converge on vendor risk](/insights/four-frameworks-one-vendor-eu-regulatory-exposure) simultaneously. [Sweden's Cybersecurity Act](/insights/sweden-cybersecurity-act-2025-nis2) implements NIS2 with entity-wide scope that captures AI agent operations. And [PE deal teams conducting cyber due diligence](/insights/cybersecurity-due-diligence-pe-firms) face a baseline that has shifted faster than most assessment methodologies have adapted.

## Why Pillars, Not Topics

Organizing security intelligence around these three pillars rather than individual topics serves a specific purpose. Topics are reactive. A breach happens, and every outlet covers it. A regulation passes, and analysts publish summaries. Pillars are cumulative. Each development adds to a growing picture of how AI agents are reshaping security operations, how data governance is becoming a prerequisite for AI deployment, and how regulatory frameworks are responding.

This means leaders who track developments across all three pillars do not just know what happened. They understand the trajectory. They can see patterns forming before those patterns become consensus. And they can connect individual data points to their own organization's strategic priorities.

The convergence also means that a development in one pillar frequently triggers implications in the other two. A new AI agent capability (pillar one) creates new data governance requirements (pillar two) and new regulatory exposure (pillar three). An enforcement action (pillar three) redefines what constitutes adequate AI security controls (pillar one) and forces data classification upgrades (pillar two). Organizations that track these domains in silos miss the cross-domain implications.

## What This Means in Practice

The practical question for leadership teams is whether their current intelligence and governance structures reflect this convergence. If AI agent security, data governance, and regulatory compliance are managed by separate teams with separate reporting cadences, the organization is likely accumulating blind spots at the intersections.

The Convergence Risk Assessment maps your organization's current exposure across all three pillars, identifies the intersection points where developments in one domain create obligations in the others, and provides a structured framework for maintaining visibility as the landscape continues to accelerate.


---

# You Cannot Secure AI Agents with Human-Era Identity Models

Author: Dritan Saliovski · Published: 2026-04-13 · Category: Cyber Risk · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-agent-identity-iam-security

> Machine identities will outnumber human identities in most enterprises this year. 78% have no formal policies for AI identity lifecycle management.
Machine identities are on track to outnumber human identities in most enterprises this year. Yet 78% of organizations have no formal policies for creating or removing AI identities, and 92% lack confidence that their legacy IAM systems can handle the shift.

## Key Takeaways

- 78% of organizations lack formal policies for AI identity lifecycle management
- 88% of organizations report suspected or confirmed AI agent security incidents
- 80% of IT professionals have witnessed AI agents performing unauthorized actions
- Only 22% of organizations treat AI agents as independent, identity-bearing entities

<StatGrid>
  <Stat value="78%" label="Of organizations lack AI identity lifecycle policies" source="CSA and Oasis Security, NHI and AI Security Report, 2026" />
  <Stat value="88%" label="Report suspected or confirmed agent security incidents" source="Gravitee, State of AI Agent Security 2026" />
  <Stat value="22%" label="Treat AI agents as identity-bearing entities" source="Gravitee, State of AI Agent Security 2026 (n=919)" />
</StatGrid>

## The Identity Model Was Built for Humans

Traditional identity and access management follows a predictable pattern. A human user is onboarded, assigned a role, granted permissions based on that role, authenticates through a defined workflow, and eventually offboards. Sessions are predictable. Behavior patterns are recognizable. Access reviews happen quarterly or annually.

AI agents operate under none of these assumptions. They spawn on demand for specific tasks. They chain actions across multiple systems in seconds. They may create sub-agents that inherit permissions without explicit provisioning. They operate at machine speed, making thousands of access decisions in the time it takes a human to complete a single login. And when they finish, they may simply stop existing, leaving behind incomplete or temporary audit records.

The following table highlights the structural mismatch:

| Dimension | Human Identity Model | AI Agent Reality |
|---|---|---|
| **Lifecycle** | Onboard, assign role, periodic review, offboard | Spawn on demand, dynamic scope, ephemeral existence |
| **Access pattern** | Predictable, session-based, human speed | Dynamic, tool-chaining, machine speed |
| **Authentication** | Defined start/end, MFA, session tokens | Continuous or ephemeral, no clear session boundary |
| **Permission model** | Role-based, quarterly review | Task-specific, changes at runtime when tools are invoked |
| **Sub-identity creation** | Rare (delegation is manual) | Common (agents spawn sub-agents with inherited permissions) |
| **Deprovisioning** | Manual offboarding process | Requires automated credential revocation |

The IAM infrastructure that governs human access was not designed for this. Role-based access control assumes stable roles with predictable access patterns. AI agents change behavior dynamically at runtime when they call tools or shift contexts. Session-based authentication assumes a defined start and end. Agents may operate continuously or ephemerally with no clear session boundary. For a deeper look at [how AI agents differ from chatbots in their security implications](/insights/ai-agents-vs-chatbots-security-posture), the identity gap is the root cause.

## The Ghost Process Problem

The most immediate risk is what can be described as the ghost process problem: AI agents operating within enterprise environments with real access and real authority, but without a defined identity record, lifecycle management, or audit trail.

This is not theoretical. At RSAC 2026, the dominant theme across hundreds of vendor presentations was agentic AI security. The conversation has moved from experimentation to operational deployment. Organizations are deploying AI agents that read customer data, modify configurations, invoke APIs, and chain actions across systems. Many of these agents operate with elevated permissions that no one explicitly granted.

The blast radius of a compromised AI agent is defined by its entitlements. Unlike a compromised human account, where behavior anomaly detection may flag unusual activity, a compromised agent may behave indistinguishably from its normal operation pattern, simply directed toward a different objective. For how [enterprise AI agent security risks are evolving](/insights/ai-agent-security-risks-enterprise), the ghost process problem is the entry point.

## What a Reference Design Looks Like

Securing AI agents requires treating them as a distinct identity class with purpose-built controls. The following elements form a minimum viable reference design:

| Control Domain | Requirement | Implementation Example |
|---|---|---|
| **Naming and registration** | Unique, discoverable identity in directory | Okta Universal Directory expansion for non-human identities |
| **Scoping and least privilege** | Task-specific, time-bound access | Intent-based access control evaluated at runtime |
| **Secrets and credentials** | Short-lived tokens, automatic rotation | HashiCorp Vault adapted for agent credential cadence |
| **Observability and audit** | Full decision-chain logging | What the agent did, why, what data accessed, what sub-agents spawned |
| **Deprovisioning** | Automated credential revocation on task completion | Orphaned agent identities treated like orphaned service accounts |

For organizations that have already begun deploying agents, the [security-first deployment framework](/insights/ai-agent-deployment-security-framework) maps these identity controls to the six operational domains that cover the full agent security lifecycle.

NIST and the National Cybersecurity Center of Excellence (NCCoE) closed the comment period on their ["Accelerating the Adoption of Software and AI Agent Identity and Authorization" concept paper](https://www.nccoe.nist.gov/sites/default/files/2026-02/accelerating-the-adoption-of-software-and-ai-agent-identity-and-authorization-concept-paper.pdf) on April 2, 2026. The paper is the first formal US-government framework targeting how OAuth 2.0, SPIFFE/SPIRE, and OIDC need to be extended for autonomous-agent identities — covering issuance, delegation, scope, attestation, and revocation. It is not yet a binding standard, but it is the most authoritative pre-standard reference for the architecture and controls described in this article. Organizations standing up agent identity programs in 2026 should align early to its taxonomy; the eventual standards-track publication will follow it closely.

## What To Do Now

Start with visibility. Inventory every AI agent, bot, and automated workflow operating in your environment. Classify them by access level, data sensitivity, and lifecycle status. Identify which ones have identity records and which are operating as ghost processes.

From there, the priority actions are: establish a formal AI identity policy covering creation, scoping, monitoring, and removal; implement time-bound, least-privilege access for all agent identities; deploy logging and observability that captures the full decision chain of agent actions; and integrate agent identity management into your existing IAM governance reviews. For organizations operating under [NIS2 and the Swedish Cybersecurity Act](/insights/sweden-cybersecurity-act-2025-nis2), agent identities fall within the Act's entity-wide compliance perimeter.

The Agent Identity Reference Architecture covers the complete identity lifecycle design, IAM gap assessment framework, and an implementation roadmap organized by organizational maturity level.

## Sources

1. [Cloud Security Alliance and Oasis Security - State of NHI and AI Security Survey Report, January 2026](https://cloudsecurityalliance.org/artifacts/state-of-nhi-and-ai-security-survey-report)
2. [Cloud Security Alliance - 79% of IT Pros Feel Ill-Equipped to Prevent NHI Attacks (CSA/Oasis Survey)](https://cloudsecurityalliance.org/press-releases/2026/01/27/79-of-it-pros-feel-ill-equipped-to-prevent-attacks-via-nhi-csa-oasis-survey-finds)
3. [Gravitee - State of AI Agent Security 2026](https://www.gravitee.io)
4. [SailPoint - AI Agent Authorization Survey, via Strata](https://strata.io)
5. [Okta - Showcase 2026, Universal Directory for Non-Human Identities](https://www.okta.com/newsroom)
6. [IBM Think - Agentic AI Security Guide](https://www.ibm.com/think/insights/agentic-ai-security)
7. [CyberArk - Non-Human Identity Research](https://www.cyberark.com)
8. [MSSP Alert - NHI Reporting](https://www.msspalert.com)
9. [NIST/NCCoE — Accelerating the Adoption of Software and AI Agent Identity and Authorization (concept paper)](https://www.nccoe.nist.gov/sites/default/files/2026-02/accelerating-the-adoption-of-software-and-ai-agent-identity-and-authorization-concept-paper.pdf). Comment period closed April 2, 2026.


---

# The New Baseline: Why AI Changed What 'Secure Enough' Means

Author: Dritan Saliovski · Published: 2026-04-09 · Category: Cyber Risk · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/security-baseline-ai-threat-landscape

> AI-assisted attack tools find vulnerabilities faster than organizations can patch. Framework compliance alone no longer defines adequate security.
Anthropic's [Project Glasswing](/insights/project-glasswing-cybersecurity-assessment-baseline) demonstrated that autonomous AI systems can discover zero-day vulnerabilities at a scale and speed that decades of human and automated testing could not match. That single development did not just introduce a new tool. It redefined the minimum standard for what constitutes an adequate cybersecurity posture.

## Key Takeaways

- AI-augmented attack tools can identify vulnerabilities faster than most organizations can patch them
- Security assessments designed for human-speed threats are no longer sufficient baselines
- Organizations running penetration tests without AI-assisted attack simulation are benchmarking against yesterday's threat landscape
- PE deal teams conducting cyber due diligence without AI-augmented external intelligence are absorbing risk they cannot quantify

<StatGrid>
  <Stat value="27 yrs" label="Age of OpenBSD flaw found by AI" source="Anthropic Project Glasswing, April 2026" />
  <Stat value="72.4%" label="Exploit-development success rate for Claude Mythos Preview in the Firefox JS shell evaluation" source="Anthropic Mythos Preview evaluation, April 2026" />
  <Stat value="29 min" label="Average eCrime breakout time in 2025, down 65% year over year; fastest observed was 27 seconds" source="CrowdStrike Global Threat Report, 2026" />
</StatGrid>

## The Baseline Has Moved

For most of the past two decades, the cybersecurity baseline was defined by frameworks: ISO 27001, NIST CSF, SOC 2. These remain valuable, but they were designed to address threats that move at human speed. The assumption was that vulnerability discovery, exploitation, and lateral movement follow a timeline measured in days or weeks.

AI-assisted attack tooling compresses that timeline to hours. [Mythos and similar models](/insights/claude-mythos-preview-withheld-frontier-model) can scan codebases, identify logic flaws, and generate working exploit chains without human intervention. The Linux Foundation has begun mapping how AI agents interact with open-source dependencies across software supply chains, recognizing that the discovery surface has expanded beyond what manual review can cover.

This creates an asymmetry that framework compliance alone cannot resolve. An organization can be fully certified against ISO 27001 and still be exposed to attack vectors that no human tester would have found within a standard engagement window.

## What This Means for Security Assessments

Traditional penetration testing engagements typically scope a defined set of assets, allocate a fixed number of consultant days, and produce a findings report based on what a skilled human can discover within that window. That model was effective when attackers operated under similar constraints.

The constraint has been removed on the attacker side. AI-assisted reconnaissance tools can enumerate exposed infrastructure, identify misconfigured cloud storage, map third-party dependencies, and correlate credential exposures from prior breaches, all within minutes of targeting an organization.

Security assessments that do not account for AI-enabled threat capability are testing against a threat model that no longer reflects reality. This does not mean traditional assessments are worthless. It means they are incomplete.

The following table illustrates the gap between traditional and AI-calibrated assessment approaches:

| Dimension | Traditional Assessment | AI-Calibrated Assessment |
|---|---|---|
| **Vulnerability discovery** | Manual + automated scanning against known CVE databases | AI-assisted attack simulation including zero-day identification |
| **Supply chain analysis** | Vendor questionnaires, SLA review | AI-speed dependency mapping, component-level risk scoring |
| **Threat model assumption** | Human-speed attacker with bounded time | AI-speed attacker with near-unlimited reconnaissance capacity |
| **Patch cycle benchmark** | 30 to 90 day remediation windows | Hours-to-days discovery-to-exploit timelines |
| **Scope** | Defined asset list, fixed consultant days | Dynamic, continuous, expanding to full attack surface |

Three areas require immediate recalibration. First, penetration testing scope should include AI-assisted attack simulation as a standard component, not an optional add-on. Second, supply chain risk models need to account for the speed at which AI agents can map dependency chains and identify exploitable components. Third, vulnerability management programs should be benchmarked against AI-speed discovery timelines, not human-speed patch cycles. For the broader context on how [agentic attackers and accelerating breakout times](/insights/agentic-attackers-ai-enabled-cyber-threats) are changing the threat model, the recalibration imperative becomes even more urgent.

## Implications for PE Deal Teams

Cybersecurity due diligence in M&A transactions faces the same baseline shift. An external assessment that relies solely on passive scanning and questionnaire-based review was already limited. In a landscape where AI tools can generate a comprehensive external risk profile of a target company in hours, deal teams that do not incorporate AI-augmented intelligence into their process are operating with an incomplete picture. For the complete due diligence methodology, see our [practitioner's framework for cybersecurity due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma).

The financial exposure is direct. Vulnerabilities that an AI-assisted attacker could find in minutes will eventually be found. The question is whether that discovery happens during diligence, when it informs valuation and risk allocation, or post-close, when remediation costs fall entirely on the acquirer. For more on how [cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value), the pre-close window is the only point of leverage.

## What To Do Now

Organizations should evaluate their current security assessment methodology against the following questions: Does your penetration testing scope include AI-assisted attack simulation? Does your external threat intelligence program account for AI-speed reconnaissance? Does your supply chain risk model reflect the speed at which dependencies can be mapped and exploited? Does your vulnerability management SLA align with AI-speed discovery timelines?

If the answer to any of these is no, the baseline your security program is built on may already be outdated.

The AI-Augmented Assessment Framework covers the threat model recalibration guidance, AI-assisted testing integration checklist, and a PE due diligence overlay for incorporating AI-speed risk into deal evaluation.

## Sources

1. Anthropic. Project Glasswing announcement, 7 April 2026. anthropic.com.
2. [The Hacker News — Project Glasswing Proved AI Can Find the Bugs](https://thehackernews.com/2026/04/project-glasswing-proved-ai-can-find.html). 23 April 2026.
3. [Linux Foundation - AI Agent Security Mapping](https://www.linuxfoundation.org/)
4. [NIST - Cybersecurity Framework 2.0](https://www.nist.gov/cyberframework)
5. [ISO - ISO/IEC 27001:2022](https://www.iso.org/standard/27001)
6. [CrowdStrike - 2026 Global Threat Report](https://www.crowdstrike.com/global-threat-report/)


---

# Project Glasswing and the New Baseline for Cybersecurity Assessment

Author: Dritan Saliovski · Published: 2026-04-08 · Category: Cyber Risk · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/project-glasswing-cybersecurity-assessment-baseline

> Project Glasswing resets the baseline for cybersecurity assessment. When AI finds 27-year-old flaws, traditional assessment methodologies need to catch up.
Anthropic's Project Glasswing, announced on April 7, 2026, deploys an unreleased AI model to find and patch vulnerabilities across the world's most critical software infrastructure. The initiative brings together Amazon, Apple, Microsoft, Google, CrowdStrike, Palo Alto Networks, and others, backed by $100 million in usage credits and $4 million in direct donations to open-source security organizations. For professional services firms that advise on cybersecurity risk, technology due diligence, or IT posture assessments, the announcement resets the baseline for what a competent assessment looks like. For the underlying technical context on the model powering Glasswing, see our companion analysis of [Claude Mythos Preview and the decision not to release it](/insights/claude-mythos-preview-withheld-frontier-model).

## Key Takeaways

- Claude Mythos Preview found vulnerabilities that survived decades of human review and millions of automated security tests, including flaws in every major operating system and browser
- The Linux Foundation's CEO described the initiative as enabling AI-augmented security to become accessible to maintainers who previously could not afford dedicated security teams
- CrowdStrike, Palo Alto Networks, and Microsoft, companies with their own proprietary AI security tools, publicly endorsed Anthropic's model as superior for vulnerability discovery
- The 12 launch partners plus 40 additional organizations with access represent significant portions of global software infrastructure
- The capability gap closed faster than forecast: Claude Fable 5 (9 June 2026) brought Mythos-class capability to general availability with cyber safeguards, nine weeks after the Glasswing launch
- Organizations relying on conventional vulnerability assessments completed before April 2026 are now benchmarked against a demonstrably lower standard

<StatGrid>
  <Stat value="12" label="Launch consortium partners" source="Anthropic Project Glasswing announcement, April 2026" />
  <Stat value="$100M" label="Usage credits committed across the initiative" source="Anthropic announcement, April 7, 2026" />
  <Stat value="$4M" label="Direct donations to open-source security organizations" source="Anthropic / Linux Foundation, April 2026" />
</StatGrid>

<InsightFigure caption="Source: Anthropic Project Glasswing announcement, April 7, 2026. Partners listed are the 12 public launch members.">
  <GlasswingConsortium />
</InsightFigure>

## The Gap Between Current Practice and Current Capability

Most cybersecurity assessments delivered by professional services firms follow a well-established methodology: automated vulnerability scanning, manual penetration testing, configuration review, and compliance mapping against frameworks like ISO 27001, NIST CSF, or SOC 2. These assessments are competent for the threat landscape they were designed to address.

The problem is that the threat landscape just shifted.

Claude Mythos Preview identified a line of vulnerable code in FFmpeg (one of the most widely used video processing libraries in the world) that automated testing tools had executed five million times without catching the issue. The vulnerability had existed for 16 years. In OpenBSD, a system specifically engineered for security, the model found a flaw that had been present for 27 years. These are not esoteric edge cases. These are production systems running in enterprise environments today.

The model did not require human guidance for most of these discoveries. It found and reported vulnerabilities autonomously, including chaining multiple Linux kernel flaws together to achieve full system control. External testers confirmed that it completed end-to-end corporate network attack simulations that would take a skilled human over 10 hours.

When CrowdStrike, Palo Alto Networks, and Microsoft (companies that have built their businesses on proprietary AI-powered security) publicly endorse a competitor's model as the standard for vulnerability discovery, the signal is clear. The current generation of security assessment tools and methodologies, including those sold by the endorsing companies, has a ceiling that AI has moved past.

<BarComparison title="Assessment capability, before and after AI-augmented vulnerability discovery" source="Synthesized from Anthropic system card and consortium partner disclosures, April 2026">
  <Bar label="Zero-day coverage (pre-Glasswing tools)" value={10} max={100} color="amber" unit="%" />
  <Bar label="Zero-day coverage (Mythos Preview)" value={75} max={100} color="blue" unit="%+" />
  <Bar label="CVE database coverage (conventional scans)" value={95} max={100} color="blue" unit="%" />
  <Bar label="Decades-old flaws surfaced (new capability)" value={100} max={100} color="red" unit="%" />
</BarComparison>

## What This Means for Advisory Firms

Three practical implications apply to any firm delivering cybersecurity advisory, technology due diligence, or IT risk assessments.

**Assessment scope needs to expand beyond known vulnerability databases.** Conventional scans check against databases of known vulnerabilities (CVEs). The vulnerabilities that Mythos Preview found were zero-days. They did not exist in any database. A scan that reports "no critical vulnerabilities found" against CVE databases tells you nothing about whether zero-day exposure exists. This distinction matters in every engagement where a client relies on assessment results to make investment, insurance, or compliance decisions. For M&A deal teams, this issue now sits at the center of the [cybersecurity due diligence framework](/insights/ultimate-guide-cybersecurity-due-diligence-ma) rather than at the periphery.

**The definition of "reasonable security measures" is shifting.** Regulatory frameworks and industry standards generally require organizations to implement "reasonable" or "proportionate" security measures. What qualifies as reasonable is benchmarked against prevailing practices. When AI systems can identify vulnerabilities that entire security teams and automated tools have missed for decades, the prevailing-practice benchmark moves. Organizations that could demonstrate reasonable care last quarter may face harder questions next quarter, not because they did anything wrong, but because the definition of adequate diligence evolved. The [four-framework regulatory alignment](/insights/four-frameworks-one-vendor-eu-regulatory-exposure) across NIS2, DORA, CRA, and the revised CSA becomes more complex when the underlying "state of the art" reference point shifts mid-assessment cycle.

**Due diligence reports need a capability disclaimer.** Any cybersecurity assessment or technology due diligence report delivered after today should address whether AI-augmented vulnerability discovery was used, or explicitly state that it was not. Acquirers, investors, and boards who rely on these reports deserve to understand the methodology's limitations relative to what is now technically possible. This is not a marketing pitch for new tools. It is a disclosure obligation for anyone providing professional opinions on security posture.

## The Open-Source Dimension

The Linux Foundation's involvement in Project Glasswing highlights a structural vulnerability in the software ecosystem. Jim Zemlin, the Foundation's CEO, was direct: security expertise has historically been a luxury available to organizations with large security teams, while open-source maintainers (whose software underpins most of the world's critical infrastructure) have been left to handle security independently.

This matters for advisory work because virtually every enterprise technology stack depends on open-source components. A client's security posture is only as strong as the weakest link in its dependency chain. If the open-source libraries embedded in a client's systems contain undiscovered zero-days, and Anthropic's results suggest many do, then assessments that stop at the client's proprietary code boundary are incomplete by design. This ties directly into the [bidirectional supply chain risk](/insights/ai-development-tooling-supply-chain-attacks) AI development tools create, where dependency compromise is already a primary attack vector.

Anthropic's $4 million donation to open-source security organizations through the Linux Foundation, including $2.5 million to Alpha-Omega and OpenSSF and $1.5 million to the Apache Software Foundation, is a starting point. But the scale of the problem (undiscovered vulnerabilities in software running billions of devices) requires more than donations. It requires a structural change in how open-source security is funded, assessed, and maintained.

## The Patching-Gap Reality

A baseline shift in discovery is only half the story. The other half is what happens to those findings once they exist, and the available figure needs reading carefully. Anthropic stated that **over 99% of the vulnerabilities it had found remained unpatched**, and gave that as its reason for withholding technical details under coordinated vulnerability disclosure. That describes a disclosure process still in its early, deliberately staged phase rather than an ecosystem that tried to absorb the patches and could not, so it does not by itself establish where the bottleneck sits. What it does establish is that the findings exist in volume and the patches do not yet, which is the condition an assessment baseline has to account for however the lag is ultimately apportioned between disclosure pacing, engineering capacity, vendor cooperation and patch-distribution channels.

For assessment methodology, the implication is sharp. A current assessment that maps an organization's known-CVE exposure is incomplete in a world where AI is finding vulnerabilities faster than the ecosystem can ship fixes. The relevant question becomes "how exposed is this client to the **disclosed-but-unpatched** category?" — not just to the published-CVE backlog. That is a different scoping conversation, with different remediation playbooks (compensating controls, vendor pressure, depend-on-it inventories).

## The Timeline Question

At launch, Anthropic stated that it did not plan to make Claude Mythos Preview generally available, but that its eventual goal was to enable users to deploy models with these capabilities at scale, with appropriate safeguards. This article's original estimate was that the capability gap between Project Glasswing participants and the rest of the market would close within 12 to 18 months, possibly sooner.

It closed in nine weeks. On 9 June 2026, Anthropic released Claude Fable 5, the first publicly available Mythos-class model, with cybersecurity-sensitive queries classifier-routed to the older Claude Opus 4.8 (Anthropic reports more than 95% of sessions involve no fallback, and zero compliance on harmful single-turn cyberattack requests across 30 public jailbreak techniques). Project Glasswing participants were upgraded to the unsafeguarded Claude Mythos 5, alongside a US-government collaboration. AI-powered vulnerability discovery at the general-capability level is now one API call away for any organization; the unrestricted cyber variant remains gated to the defensive consortium.

The advisory-firm implication sharpened rather than changed. The window to be "ahead of the curve" did not last 12 months; it lasted one fiscal quarter. Firms that began building AI-augmented assessment methodologies in April have tested workflows and documented case studies today. Firms that waited are now operating in the environment this article anticipated, without the runway. The same dynamic we covered in our [PE firm's guide to cybersecurity due diligence](/insights/cybersecurity-due-diligence-pe-firms) applies with the timeline compressed: the cost of adoption is far lower than the cost of being the firm that delivered the clean assessment before the AI-augmented audit found the problems. For the executive metrics that follow from machine-speed discovery (the Velocity Gap and the Blast Radius Index), see [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine).

## Practical Steps

For firms advising on cybersecurity, technology risk, or IT due diligence, four actions apply immediately.

First, review how your current assessment methodology accounts for zero-day exposure. If it does not, document that limitation and communicate it to clients. Second, evaluate whether your tooling pipeline can integrate AI-augmented vulnerability discovery when it becomes broadly available. Anthropic has indicated this is a matter of when, not whether. Third, update your engagement scoping to address open-source dependency analysis. If your assessments do not map the client's open-source supply chain, you are leaving a known gap. Fourth, monitor the Cyber Verification Program that Anthropic intends to launch. Early access to AI-powered security tools will differentiate firms that move first.

The full Intelligence Brief covers the detailed Project Glasswing partner analysis, AI-augmented assessment methodology frameworks, open-source dependency risk mapping, and a comparative timeline for when these capabilities become broadly accessible.

## Sources

1. [Anthropic — Project Glasswing: announcement and consortium disclosure](https://www.anthropic.com/glasswing). April 2026.
2. [Anthropic — Assessing Claude Mythos Preview's cybersecurity capabilities](https://www.anthropic.com/news/mythos-preview). 7 April 2026.
3. Linux Foundation. Statement on Project Glasswing participation. linuxfoundation.org. 2026.
4. [CrowdStrike — Project Glasswing Coverage](https://www.crowdstrike.com/global-threat-report/). 2026.
5. Palo Alto Networks. Consortium partner statement. paloaltonetworks.com. 2026.
6. Microsoft Security. Project Glasswing partner disclosure. microsoft.com. 2026.
7. Apache Software Foundation / OpenSSF Alpha-Omega. Donation acknowledgments. apache.org, openssf.org. 2026.
8. [The Hacker News — Project Glasswing Proved AI Can Find the Bugs (patching-gap analysis)](https://thehackernews.com/2026/04/project-glasswing-proved-ai-can-find.html). April 2026.
9. [Anthropic — Claude Fable 5 and Mythos 5 (first public Mythos-class model; Glasswing participants upgraded to unsafeguarded Mythos 5)](https://www.anthropic.com/news/claude-fable-5-mythos-5). 9 June 2026.


---

# Claude Code Source Leak: When Your AI Vendor Becomes the Vulnerability

Author: Dritan Saliovski · Published: 2026-04-02 · Category: Cyber Risk · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/claude-code-source-leak-ai-vendor-risk

> Anthropic shipped Claude Code's complete source in a routine npm update. With tens of thousands of forks and exposed feature flags, AI vendor risk needs rethinking.
On March 31, 2026, Anthropic accidentally shipped the complete source code of its AI coding assistant, Claude Code, inside a routine npm package update. A debugging source map file, left in the build by human error, pointed to a zip archive on Anthropic's cloud storage containing 2,000 files and 500,000 lines of TypeScript. Within hours, the codebase was mirrored across GitHub; Zscaler ThreatLabz later counted over 84,000 stars and 82,000 forks. Anthropic has since issued copyright takedown requests for over 8,000 copies.

## Key Takeaways

- Anthropic confirmed the leak was a release packaging error, not a breach; no customer data or credentials were exposed
- The exposed source revealed 44 feature flags, more than 20 of them for unshipped capabilities, alongside internal system prompts and the full orchestration architecture for hooks, MCP servers, and autonomous daemon modes
- The leak coincided with a separate malicious supply chain attack on the axios npm package, which deployed a Remote Access Trojan between 00:21 and 03:29 UTC on the same day
- Within days, security firm Adversa AI disclosed a critical vulnerability in Claude Code, accelerated by full source visibility
- Anthropic's Claude Code reached an annualized revenue run-rate exceeding $2.5 billion as of February 2026, with enterprise use accounting for over half of Claude Code's own revenue; the widely quoted 80% figure is business clients' share of Anthropic's total company sales, not of Claude Code

<StatGrid>
  <Stat value="82,000+" label="GitHub forks of the leaked Claude Code source" source="Zscaler ThreatLabz, April 2026" />
  <Stat value="20+" label="Unshipped feature flags among the 44 exposed in source" source="Zscaler ThreatLabz, April 2026" />
  <Stat value="$2.5B" label="Claude Code annualized revenue run-rate, February 2026" source="Anthropic, reported February 2026" />
</StatGrid>

<InsightFigure caption="Source: Synthesized from npm registry data, researcher disclosures, Anthropic statements, and security vendor reports.">
  <IncidentTimeline />
</InsightFigure>

## What Happened

The source map file shipped inside @anthropic-ai/claude-code version 2.1.88 on npm. Source maps are development artifacts used to connect bundled, minified code back to its original source. They are never intended for production distribution. Security researcher Chaofan Shou identified the exposure and published the finding. The map file referenced a complete zip archive of the original TypeScript sources hosted on Anthropic's own Cloudflare R2 storage bucket.

Anthropic's official statement confirmed the incident: the cause was a release packaging error where the build tool (Bun) generated a full source map by default, and the .npmignore configuration failed to exclude it. The company characterized it as human error, not a security breach.

This is the second time Claude Code's internals have been publicly exposed in just over a year. The tool had already been partially reverse-engineered through prior community efforts, but this leak provided the complete, current production source with unreleased features and internal tooling.

## Why This Matters Beyond the Headlines

The surface-level narrative is straightforward: a safety-focused AI company made an operational security mistake. The deeper issue is structural.

Claude Code is not a web application that runs on Anthropic's servers. It is a CLI tool that runs locally on developer workstations with shell access, file system permissions, and the ability to execute arbitrary commands through its hooks system. When the source code of a tool with that level of system access is fully exposed, the risk calculus shifts. Attackers can now study the exact permission logic, hook execution flow, and MCP server integration points to craft targeted exploits.

Zscaler's ThreatLabz analysis identified the practical consequences: pre-existing vulnerabilities in Claude Code's configuration handling are now significantly easier to weaponize. Threat actors with full source visibility can design malicious repositories or project files that trigger arbitrary shell execution or credential theft when a developer clones or opens an untrusted repo. The exposed hook and permission logic makes silent workstation compromise more reliable.

This is the scenario we outlined in our analysis of [AI assistant attack surfaces](/insights/ai-assistant-attack-surface-browser-risk): embedded AI tools with local execution capabilities represent high-value targets precisely because they bridge the gap between user intent and system-level action. The Claude Code leak provides the specific technical roadmap that makes exploitation more efficient.

## The Supply Chain Collision

The timing compounds the risk. On the same day the source code leaked, a separate, unrelated supply chain attack targeted the axios npm package, a widely used HTTP client that Claude Code lists as a dependency. Malicious versions (1.14.1 and 0.30.4) were published to npm between 00:21 and 03:29 UTC on March 31, containing a Remote Access Trojan. Any developer who installed or updated Claude Code via npm during that window may have pulled in the compromised axios package.

This is not a theoretical scenario. It is a documented overlap between a vendor's accidental exposure and a third party's deliberate attack on the same dependency chain within the same hours. The SentinelOne EDR detection of a similar trojanized AI-adjacent package in 44 seconds, reported the same week, illustrates what happens when detection works and what happens when it does not. For a deeper look at how [AI development tooling creates bidirectional supply chain risk](/insights/ai-development-tooling-supply-chain-attacks), see our companion analysis.

For organizations evaluating AI vendor risk, this incident crystallizes a point we raised in our [Trust Shockwaves analysis](/insights/ai-vendor-trust-political-risk-due-diligence): vendor evaluation for AI tools must extend beyond traditional SOC 2 and penetration testing assessments. Build pipeline hygiene, dependency management practices, and incident response for accidental exposure are now material risk factors.

## What the Exposed Code Reveals

The leaked source contained 44 feature flags in total, of which Zscaler ThreatLabz reports more than 20 gate capabilities that are fully built but not yet released. These are not conceptual; they are compiled code behind boolean flags. Key unreleased features include a persistent daemon mode (internally referenced as "KAIROS") that allows Claude Code to operate autonomously in the background even when the user is idle, performing memory consolidation and cross-session learning. Remote control capabilities allowing users to operate Claude Code from a phone or secondary browser were also flagged.

The exposed system prompts reveal how Claude Code reasons about tasks, manages permissions, and handles its own memory, treating stored context as hints that require verification against the actual codebase. For competitors, this provides a detailed engineering blueprint for building production-grade AI coding agents. For security teams, it provides a map of every trust boundary and permission gate in the tool.

## Implications for Enterprise AI Governance

The incident exposes three governance gaps that most organizations have not addressed:

First, **AI coding tools are not evaluated as critical supply chain components.** Most enterprises assess AI tools through IT procurement workflows designed for SaaS applications. Claude Code, Cursor, GitHub Copilot, and similar tools operate with fundamentally different system access than a typical SaaS product. They read and write files, execute shell commands, and install packages. The vendor's build pipeline security directly affects the security of every developer workstation running the tool.

Second, **dependency chain risk multiplies at the intersection of AI tools and package managers.** When an AI coding assistant both depends on npm packages and can autonomously install npm packages for the user, a single supply chain compromise can propagate in two directions simultaneously: through the tool's own dependencies and through the packages the tool recommends or installs.

Third, **incident response playbooks do not account for AI tool vendor exposures.** When your AI coding tool's source code leaks, the immediate question is not whether customer data was exposed. It is whether the architecture and permission model of a tool running on your developers' machines with elevated access is now available to anyone building targeted exploits. That requires a different response workflow than a traditional vendor breach notification.

Organizations already working through the [four-framework regulatory alignment](/insights/four-frameworks-one-vendor-eu-regulatory-exposure) should note that NIS2's supply chain security requirements (Article 21.d) and DORA's ICT third-party risk management obligations both extend to AI development tooling. If your developers use AI coding assistants, those tools are in scope for vendor risk assessment under both frameworks.

## What to Do Now

For organizations using Claude Code or similar AI coding assistants: audit the specific version installed across your development environment, review npm lockfiles for compromised axios versions, and verify that no developer installed or updated during the March 31 exposure window. Beyond the immediate response, establish a vendor risk assessment process specifically for AI development tools that evaluates build pipeline practices, dependency management, and the tool's local system access model. For governance frameworks that map AI agent permissions and controls, see the [security-first deployment framework](/insights/ai-agent-deployment-security-framework). For the broader vendor-governance context, Anthropic's subsequent announcement of [Claude Mythos Preview, built but withheld from release](/insights/claude-mythos-preview-withheld-frontier-model), is the other side of the same disclosure story.

The full Intelligence Brief covers the complete AI coding tool vendor risk assessment framework, a dependency chain risk matrix, incident timeline reconstruction, and a comparison of major AI coding tools' default security postures and permission models.

## Sources

1. [CNBC — Anthropic Claude Code Source Leak](https://www.cnbc.com/2026/03/31/anthropic-leak-claude-code-internal-source.html). 2026.
2. Chaofan Shou. Claude Code source map discovery and disclosure. Published via social media. 2026.
3. Zscaler ThreatLabz. Analysis of Claude Code exposure implications. zscaler.com. April 2026. Source of the fork and star counts (over 84,000 stars, 82,000 forks) and of the feature-flag breakdown (44 flags in total, 20+ unshipped).
4. Adversa AI. Claude Code vulnerability disclosure post-leak. adversa.ai. 2026.
5. SentinelOne. Trojanized AI-adjacent package detection report. sentinelone.com. 2026.
6. npm Registry. axios versions 1.14.1 and 0.30.4 incident report. npmjs.com. 2026.
7. Fortune. Anthropic Claude Code revenue and enterprise adoption data. fortune.com. 2026.
8. Anthropic, as reported February 2026: Claude Code at a $2.5 billion annualized revenue run-rate, with enterprise use accounting for over half of Claude Code revenue. The separate 80% figure describes business clients' share of Anthropic's total company sales.


---

# McKinsey Lilli Breach: Old Vulnerability, New AI Risk

Author: Dritan Saliovski · Published: 2026-03-11 · Category: Cyber Risk · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/mckinsey-lilli-breach-enterprise-ai-security

> A 1998-era SQL injection reportedly exposed McKinsey's AI platform Lilli. The vulnerability class is old. The consequences for enterprise AI are not.
On March 9, 2026, security startup CodeWall published findings from a red-team exercise in which, it says, an autonomous AI agent reached full read-and-write access to the production database behind McKinsey's internal AI platform, Lilli, within two hours. CodeWall has not published proof-of-concept evidence for the scale or the timeline, and McKinsey has not confirmed either. The claimed exposure includes 46.5 million chat messages, 728,000 files, 57,000 user accounts, and 95 writable system prompts. McKinsey states it patched the identified issues within hours of disclosure and that its forensic investigation found no evidence of unauthorized access to client data. This analysis examines what has been publicly reported, where claims diverge, and what the incident, regardless of disputed scope, reveals about enterprise AI security.

## Key Takeaways

- CodeWall claims its AI agent accessed McKinsey's Lilli database via an unauthenticated SQL injection, a vulnerability class documented since 1998 and in the OWASP Top 10 since 2003
- The vulnerability was in JSON key names concatenated into SQL, not parameter values, a vector that standard tools like OWASP ZAP did not flag, according to CodeWall
- McKinsey states it "promptly confirmed the vulnerability and fixed the issue within hours" and that its investigation identified no evidence that client data was accessed. The count of unauthenticated endpoints is CodeWall's figure, not McKinsey's
- SQL injection accounts for 19.52% of all critical and high-severity web application vulnerabilities (Edgescan 2025)
- Only 24% of ongoing GenAI projects incorporate security considerations (IBM)

<StatGrid>
  <Stat value="19.5%" label="Of critical/high web vulnerabilities are SQL injection" source="Edgescan 2025 Vulnerability Statistics Report" />
  <Stat value="24%" label="Of GenAI projects incorporate security considerations" source="IBM, 2025" />
  <Stat value="78%" label="Of global enterprises run AI chatbots internally" source="Thunderbit, 2026" />
</StatGrid>

## What Happened

McKinsey launched Lilli in July 2023 as an internal generative AI platform for search and analysis across decades of proprietary research. According to McKinsey, 72% of the firm's employees, upwards of 40,000 people, use Lilli, which processes more than 500,000 prompts per month.

CodeWall, a red-team security startup that uses AI agents to continuously test customer infrastructure, states that its autonomous agent selected McKinsey as a target based on the firm's public responsible disclosure policy and recent updates to Lilli. The agent operated without credentials, insider knowledge, or human guidance.

The timeline, based on CodeWall's published account: the agent identified the SQL injection vulnerability on February 28, 2026. CodeWall sent a responsible disclosure email to McKinsey's security team on March 1, including a high-level impact summary. McKinsey states it "promptly confirmed the vulnerability and fixed the issue within hours." The remediation detail reported by March 2, that the unauthenticated endpoints were patched, the development environment taken offline, and public API documentation blocked, comes from CodeWall's account and The Register's reporting rather than from McKinsey's statement.

**What remains unresolved:** CodeWall claims access to 46.5 million chat messages, 728,000 files, and 3.68 million RAG document chunks. McKinsey's statement, supported by a third-party forensics firm, asserts that no client data or confidential information was accessed by CodeWall or any other unauthorized party. These two positions have not been publicly reconciled.

## How It Happened

The technical chain CodeWall describes is straightforward and, according to independent security analyst Edward Kiledjian, "plausible and technically sound."

The agent found publicly exposed API documentation covering over 200 endpoints. Most required authentication. Twenty-two did not. One of those unauthenticated endpoints accepted JSON payloads and wrote user search queries to a database. The parameter values were safely parameterized, but the JSON key names, the field names themselves, were concatenated directly into SQL.

This is a meaningful technical detail. Most automated security scanning tools, including OWASP ZAP, test parameter values for injection. JSON key injection is a less common vector and falls outside the scope of standard automated testing. CodeWall states that OWASP ZAP did not detect the vulnerability.

When the agent submitted manipulated JSON keys, the database returned error messages that reflected the injected content. The agent used these error messages to enumerate the database schema over 15 iterations, eventually extracting live production data.

The core vulnerability, SQL injection through unsanitized user input, has been documented since a 1998 Phrack Magazine article. It entered the OWASP Top 10 in 2003 and has remained there since. The prevention is well established: parameterized queries, input validation, and separating data from commands. The Edgescan 2025 Vulnerability Statistics Report found that SQL injection accounts for 19.52% of all critical and high-severity vulnerabilities discovered through their platform.

## Old Vulnerability, Different Consequences

The technique is not new. The attack surface it hit is.

The distinction between SQL injection against a traditional database and an enterprise AI platform is qualitative, not just quantitative.

| Factor | Traditional database (2014) | Enterprise AI platform (2026) |
|---|---|---|
| **Data type exposed** | Structured records: names, emails, transaction histories | Unstructured conversational data: strategy discussions, M&A deliberations, work-in-progress reasoning |
| **Sensitivity classification** | Classifiable by field type and access level | Difficult to classify, conversations capture implicit assumptions and reasoning not present in structured records |
| **Write access impact** | Data modification, record tampering | System prompt manipulation, silently altering how the AI responds across the entire organization |
| **Blast radius** | Bounded by database scope and record count | Amplified by platform adoption, 72% of workforce using a single tool means one vulnerability exposes collective working intelligence |

People interact with internal chatbots the way they interact with colleagues, in unstructured, conversational language that captures reasoning, assumptions, and work-in-progress thinking. If CodeWall's claims are accurate, the exposed data would include strategy discussions, M&A deliberations, and client engagement details in plaintext.

Additionally, CodeWall reports that Lilli's system prompts, the instructions governing how the AI responds, were stored in the same database. Because the SQL injection allowed write access, an attacker could theoretically modify those prompts: altering how Lilli answers questions, what guardrails it follows, how it cites sources, or what it refuses to do. CodeWall describes this as requiring nothing more than a single SQL UPDATE statement in a single HTTP call.

Rewriting system prompts is not data theft, it is silent manipulation of a decision-support tool used across an organization. The distinction matters for how organizations assess risk in their own AI deployments.

## What This Means for Organizations Running Internal AI

This incident is specific to McKinsey and Lilli, but the structural pattern is not. According to Thunderbit (2026), 78% of global enterprises now run AI chatbots in at least one internal workflow. Gartner predicts that by 2027, more than 40% of AI-related data breaches will stem from improper use of generative AI. And according to IBM, only 24% of ongoing GenAI projects incorporate security considerations.

Five factors contributed to the exposure CodeWall describes, none of which are unique to McKinsey:

| Risk factor | What happened at McKinsey | Countermeasure |
|---|---|---|
| **Unauthenticated API endpoints** | 22 endpoints required no authentication, including one that wrote user data to a database | Require authentication on every endpoint that reads or writes data, no exceptions |
| **SQL injection in production** | JSON key names concatenated into SQL without parameterization, live for over two years | Parameterized queries for all inputs, including non-standard vectors like JSON keys |
| **System prompts in application database** | AI behavioral instructions stored alongside user data | Isolate system prompts in a separate, restricted data store with integrity monitoring |
| **Plaintext conversational data** | 46.5 million chat messages stored without encryption at rest (if claims are accurate) | Encrypt conversational data at rest and apply data classification before storage |
| **Concentration risk** | 72% of workforce on a single platform creates a single point of failure | Segment data access, apply zero-trust architecture, limit blast radius through compartmentalization |

None of these are exotic. Each has an established countermeasure. The challenge is that many organizations deploying internal AI platforms are applying them at speed without extending their existing security controls to cover the new attack surface these platforms create. For a broader analysis of the security risks AI agents introduce, and why the Lilli incident is part of a larger pattern, see our coverage of [enterprise AI agent security risks](/insights/ai-agent-security-risks-enterprise) and the [security-first deployment framework](/insights/ai-agent-deployment-security-framework). For how AI data governance connects to frameworks organizations already have in place, see [AI data governance: the same problem enterprises already solved](/insights/ai-data-governance-enterprise-guide). The Chrome Gemini vulnerability reported weeks after the Lilli disclosure illustrates how [AI assistants embedded in browsers create entirely new attack surfaces](/insights/ai-assistant-attack-surface-browser-risk) that compound these same risks.

## What McKinsey Has and Has Not Said

McKinsey [published an official statement](https://www.mckinsey.com/about-us/media/statement-on-strengthening-safeguards-within-the-lilli-tool) shortly after the disclosure. It is four sentences long, and it is narrower than much of the coverage built on top of it.

- **No client data was accessed.** McKinsey states its investigation, supported by a leading third-party forensics firm, "identified no evidence that client data or client confidential information were accessed by this researcher or any other unauthorized third party."
- **The fix was fast.** McKinsey says it "promptly confirmed the vulnerability and fixed the issue within hours."
- **What the statement does not address.** McKinsey does not name CodeWall, does not confirm the 22-endpoint figure, and does not address the development environment or the scale of data reachable. Those details come from CodeWall's account and The Register's reporting, not from McKinsey.

The risk model in the rest of this article still holds. The issue is not whether McKinsey responded well, which it appears to have done, but whether other organizations deploying internal AI platforms at the same speed have applied the same controls before a researcher finds them.

## A Note on Sources and Verification

This analysis is based entirely on publicly available information: CodeWall's published blog post (March 9, 2026), independent reporting by Jessica Lyons at The Register, McKinsey's official statement, and independent commentary by Edward Kiledjian. Where claims are made by CodeWall, they are attributed to CodeWall. Where McKinsey disputes or qualifies those claims, McKinsey's statement is the source of record.

The full Intelligence Brief covers the complete attack chain diagram, a comparative risk matrix for traditional versus AI platform SQL injection impact, an enterprise AI platform security checklist, and a board-level risk impact framework.

## Sources

1. CodeWall. [How We Hacked McKinsey's AI Platform](https://codewall.ai/blog/how-we-hacked-mckinseys-ai-platform). codewall.ai. 9 March 2026.
2. Jessica Lyons. [AI agent hacked McKinsey chatbot for read-write access](https://www.theregister.com/2026/03/09/mckinsey_ai_chatbot_hacked/). The Register. 9 March 2026.
3. Edward Kiledjian. [CodeWall says it hacked McKinsey's AI platform. Here's what holds up, and what doesn't](https://kiledjian.com/2026/03/10/codewall-says-it-hacked-mckinseys.html). kiledjian.com. 10 March 2026.
4. Edgescan. 2025 Vulnerability Statistics Report. edgescan.com. 2025.
5. [IBM - AI and Security Research](https://www.ibm.com/reports/data-breach)
6. [Thunderbit - Enterprise AI Chatbot Adoption 2026](https://thunderbit.com/blog/ai-chatbot-statistics)
7. Gartner. AI-Related Data Breach Predictions. gartner.com. 2024.
8. [OWASP - Top 10 Web Application Security Risks](https://owasp.org/www-project-top-ten/)
9. [McKinsey — Statement on Strengthening Safeguards Within the Lilli Tool](https://www.mckinsey.com/about-us/media/statement-on-strengthening-safeguards-within-the-lilli-tool). 2026.


---

# AI-Powered Cyber Attacks in 2026: What Boards and CFOs Need to Act On

Author: Dritan Saliovski · Published: 2026-02-11 · Category: Cybersecurity · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/ai-cyber-threats-2026-board-briefing

> AI-powered attacks and deepfake fraud are the defining threats of 2026. A plain-language briefing for boards and CFOs, with the 12 controls that change the risk profile.
Cyberattacks in 2026 are cheaper to launch, harder to detect, and more convincing than anything boards were briefed on five years ago. Artificial intelligence has not created a new category of threat. It has made every existing threat faster, more targeted, and more effective. The phishing email that once took a sophisticated attacker hours to craft now takes seconds. The voice on the wire transfer call that sounds like the CFO may not be.

This briefing is written for directors and finance leaders, not security teams. It covers the three AI-powered attack types generating the most losses for mid-market companies today, the 12 controls that close the most critical gaps, and the questions worth raising with your CISO before your next board meeting.

## Key Takeaways

- The global average cost of a data breach reached a record $4.99 million, up more than a tenth year on year (IBM Cost of a Data Breach Report, 2026). The trend has not been a straight line: the 2024 edition reported $4.88 million and the 2025 edition $4.44 million
- Business email compromise (BEC) accounted for $2.9 billion in reported US losses in 2023, making it the top category by financial loss (FBI Internet Crime Report, 2023)
- 68% of breaches involve a human element: phishing, stolen credentials, or social engineering (Verizon DBIR, 2024)
- Deepfake voice synthesis capable of impersonating an executive costs less than $500 in compute time and requires only a few minutes of publicly available audio
- Mid-market companies with revenues between $50M and $500M face disproportionately high ransomware targeting relative to their security investment levels

<StatGrid>
  <Stat value="$4.99M" label="Global average cost of a data breach, a record, up more than a tenth year on year (2024 edition: $4.88M; 2025 edition: $4.44M)" source="IBM Cost of a Data Breach Report, 2026" />
  <Stat value="$2.9B" label="Business email compromise losses (US, 2023)" source="FBI Internet Crime Report, 2023" />
  <Stat value="68%" label="Of breaches involve a human element" source="Verizon DBIR, 2024" />
</StatGrid>

## Three AI-Powered Threats Generating Real Losses in 2025 and 2026

**AI-enhanced phishing and business email compromise.** Traditional phishing works on volume: send enough generic emails and some percentage of recipients will click. AI-powered phishing is different. Large language models generate targeted, contextually accurate messages using publicly available information about the recipient: their role, recent company announcements, vendor relationships, and communication style. The result is a message that passes organizational gut-check tests that previously caught most attacks. Security awareness training built for the last generation of threats does not detect this one.

**Deepfake voice and video fraud.** In 2024, a multinational company lost $25 million after a finance employee was convinced by a deepfake video call to authorize a fraudulent wire transfer. The call appeared to include the company's CFO and other senior executives. Voice synthesis tools now require fewer than three minutes of source audio to produce convincing real-time voice replication. Any executive with a podcast appearance, investor call recording, or media interview is a potential source. This is not a theoretical risk.

**AI-accelerated vulnerability exploitation.** The time between a software vulnerability being publicly disclosed and active exploitation has compressed from weeks to hours. AI tools help attackers rapidly scan for, identify, and exploit known vulnerabilities in internet-facing systems before security teams can patch. Companies running legacy software or unmanaged third-party integrations are disproportionately exposed.

**Frontier-model vulnerability discovery at scale.** In April 2026, Anthropic's [Project Glasswing](/insights/project-glasswing-cybersecurity-assessment-baseline) demonstrated that frontier AI systems can discover thousands of previously unknown vulnerabilities in mature codebases — many in software that had survived decades of human review. The same capability that lets defenders pre-emptively find and patch issues lets attackers find and weaponize them. The deployment asymmetry is what should concern boards: defenders need every issue patched; attackers need only one. The gap between findings and fixes is wide — Anthropic said over 99% of the vulnerabilities it found remained unpatched, and gave that as its reason for withholding technical details under coordinated disclosure, so the figure reflects a staged disclosure rather than a measured failure to absorb.

| Attack type | How AI changes it | Documented exposure |
|---|---|---|
| AI-enhanced phishing and BEC | LLMs generate hyper-targeted messages in seconds; bypasses standard awareness training | $2.9B in reported US losses, 2023 (FBI IC3) |
| Deepfake voice and video fraud | Under 3 minutes of source audio enables real-time executive voice cloning | $25M single-incident loss, 2024 |
| AI-accelerated vulnerability exploitation | Exploit window compressed from weeks to hours after public disclosure | Legacy and unpatched internet-facing systems disproportionately exposed |
| Frontier-model vulnerability discovery | AI finds thousands of zero-days in mature codebases; patches lag the findings | Over 99% still unpatched when Anthropic withheld details under coordinated disclosure (Apr 2026) |

## Why Mid-Market Companies Are the Primary Target

Enterprise organizations with mature security programs have raised the cost of attack. Mid-market companies (broadly, $50M to $500M in annual revenue) represent a more attractive risk-return proposition for attackers. They typically hold high-value financial and operational data, process significant wire transfers, and operate with security teams that are either understaffed, outsourced, or both. They are also increasingly interconnected with larger enterprises as vendors and supply chain partners, making them an effective entry point for broader attacks.

## The 12 Controls That Change Your Risk Profile

These controls address the AI-enhanced attack categories above. Boards and CFOs should verify that these are funded, implemented, and tested.

| # | Control | Category |
|---|---|---|
| 1 | MFA on all remote access, email, and financial systems | Identity and access |
| 2 | Privileged access management: no standing admin accounts outside specific operational windows | Identity and access |
| 3 | Identity governance: quarterly review of who has access to which systems | Identity and access |
| 4 | DMARC, DKIM, and SPF enforcement on all company email domains | Email and communications |
| 5 | AI-enhanced email filtering tuned for targeted, low-volume phishing | Email and communications |
| 6 | Wire transfer verification: callback to pre-registered number above defined threshold | Email and communications |
| 7 | Out-of-band voice verification for any payment instruction received by email or messaging | Verification protocols |
| 8 | Executive deepfake response protocol: defined verification steps before any voice/video-authorized action | Verification protocols |
| 9 | 24/7 EDR with managed service coverage outside business hours | Detection and response |
| 10 | Network monitoring for unusual data movement, especially off-hours or from privileged accounts | Detection and response |
| 11 | Incident response plan tested annually with a ransomware-specific playbook and board notification procedure | Detection and response |
| 12 | Quarterly board-level cyber risk report: open vulnerabilities, phishing simulation results, incident trends | Governance |

## The Budget Conversation

Implementing and maintaining these 12 controls typically costs between 1% and 3% of annual revenue for a mid-market company. The average ransomware recovery cost for a company of similar size, without cyber insurance, is 10 to 20 times that figure.

<BarComparison title="Cost of prevention vs. cost of recovery (% of annual revenue)" source="Mid-market security spend benchmarks; ransomware recovery cost data from Sophos State of Ransomware 2024 and Coveware Q4 2023">
  <Bar label="Annual security investment: 12 controls implemented" value={2} displayValue="1-3%" />
  <Bar label="Average ransomware recovery cost: no cyber insurance" value={30} displayValue="10-60%" highlight />
</BarComparison>

The question for the board is not whether security is expensive. It is whether the alternative is affordable.

## Three Questions to Ask Your CISO at the Next Board Meeting

- Are we enforcing out-of-band verification for wire transfer requests, and has it been tested in the last 90 days?
- What is our current patching cycle for internet-facing systems, and how does that compare to the current average exploitation window for newly disclosed vulnerabilities?
- Has our security awareness training been updated in the last 12 months to specifically address AI-generated phishing and deepfake voice fraud?

## What to Do Now

AI-powered attacks are generating losses for mid-market companies today, using techniques that bypass controls built for a different threat environment. The companies that have contained their exposure share one thing: a defined, board-approved response to AI threats, not just a generic cybersecurity policy.

For organizations also deploying AI agents, which introduce additional attack surface beyond the threats covered above, see our analysis of [AI agent security risks boards are not seeing](/insights/ai-agent-security-risks-enterprise) and the [security-first deployment framework](/insights/ai-agent-deployment-security-framework). For a case study of how traditional vulnerabilities become far more consequential when they affect enterprise AI platforms, see the [McKinsey Lilli breach analysis](/insights/mckinsey-lilli-breach-enterprise-ai-security). For the latest data on how [agentic attackers and accelerating breakout times](/insights/agentic-attackers-ai-enabled-cyber-threats) are changing the threat model, see our April 2026 analysis.

The Board Briefing covers the full 12-control implementation framework with budget ranges by company size, a deepfake incident response protocol, and a ready-to-use board reporting template for cyber risk.

## Sources

1. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026). Global average breach cost $4.99M, a record, up more than a tenth year over year.
2. [IBM - Cost of a Data Breach Report 2024](https://www.ibm.com/reports/data-breach). 2024. Cited for the $4.88M prior-edition comparison, alongside the 2025 edition's $4.44M.
3. [FBI - Internet Crime Report 2023](https://www.ic3.gov/AnnualReport/Reports/2023_IC3Report.pdf)
4. [Verizon - 2024 Data Breach Investigations Report](https://www.verizon.com/business/resources/reports/dbir/)
5. [Sophos - The State of Ransomware 2024](https://www.sophos.com/en-us/content/state-of-ransomware)
6. Coveware. Quarterly Ransomware Report Q4 2023. coveware.com. 2024.
7. [Anthropic — Project Glasswing](https://www.anthropic.com/glasswing). 2026.
8. [The Hacker News — Project Glasswing Proved AI Can Find the Bugs (patching gap)](https://thehackernews.com/2026/04/project-glasswing-proved-ai-can-find.html). April 2026.


---

# Cyber Insurance Underwriting: The Technical Assessment Gap

Author: Dritan Saliovski · Published: 2025-12-09 · Category: Cyber Risk · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/cybersecurity-insurance-assessment-guide-underwriters

> In our engagement experience, document-only reviews miss most material cyber risks. Technical validation is what closes the gap for underwriters.
Cyber insurance underwriters who rely on applicant-completed questionnaires are mispricing risk at scale. In our engagement experience, document-only reviews miss 65-75% of material security risks, the gap between stated policy and actual control implementation that drives claim severity. Technical validation closes that gap and, on the same experience, delivers 35-45% better loss ratios than questionnaire-only approaches. Those proportions are Innovaiden's own estimates from underwriting engagements, not figures from a published market study.

## Key Takeaways

- In our engagement experience, document-only underwriting misses 65-75% of material risks: around 65% of applicants rate their security posture higher than independent assessment confirms, around 40% are unaware of critical vulnerabilities in their own infrastructure, and inaccuracies in self-reported applications are common
- Technical validation, external vulnerability scanning, configuration analysis, threat intelligence, has typically generated 35-45% better loss ratios, sharper risk differentiation and 40% fewer surprise losses than questionnaire-only assessment in the portfolios we have reviewed
- Incident response capability is the strongest leading indicator of claim severity: IBM found that high levels of IR planning and testing saved $1.49M per breach on average in 2023, and in our experience prior breach history predicts roughly 3x higher probability of subsequent incidents within 24 months
- Security maturity certifications (SOC 2 Type II, ISO 27001) have typically correlated with 40-60% lower claim frequency and 35-50% lower claim severity in our engagement experience, supporting 15-30% premium discounts while maintaining underwriting profitability
- Third-party risk is systematically underweighted in standard questionnaires: in our experience, inadequate vendor risk management programs correlate with roughly 2.5x higher breach probability

<StatGrid>
  <Stat value="65-75%" label="Of material cyber risks missed by document-only underwriting" source="Innovaiden engagement experience" />
  <Stat value="~$14B" label="Global cyber insurance premiums in 2023, projected to reach ~$29B by 2027" source="Munich Re Global Cyber Risk and Insurance Survey, 2024" />
  <Stat value="$1.49M" label="Average breach-cost saving for organizations with high IR planning and testing" source="IBM Cost of a Data Breach, 2023" />
</StatGrid>

## Why Document-Only Assessment Fails

The structural problem with questionnaire-based underwriting is that applicants describe the security posture they intend to have, not the one that exists. Three failure modes are systematic.

First, organizations genuinely do not know their vulnerabilities. In our engagement experience, around 40% lack the monitoring infrastructure to detect critical exposures in their own environment. Second, self-reporting has inherent limitations, applicants can only describe what they have directly measured, and few organizations have visibility into every dimension of their risk posture. Third, the 6-12 month lag between internal assessments and insurance renewals means posture data is outdated before the policy is written.

The result: adverse selection. Organizations with mature security programs frequently self-insure or negotiate elsewhere. The applicant pool skews toward elevated (but often undetected) risk, driving loss ratios above profitability thresholds.

Carriers incorporating technical assessment achieve measurably different underwriting outcomes:

| Metric | Document-Only | With Technical Validation |
|---|---|---|
| Material risk detection rate | 25-35% | 85-90% |
| Loss ratio | 65-75% | 45-55% |
| Renewal retention | Baseline | +25% |
| Surprise losses | Baseline | -40% |

*Source: Innovaiden engagement experience. These ranges are our own estimates from underwriting portfolios we have worked on, not figures from a published market study, and individual books will vary with mix and appetite.*

## The Eight Underwriting Domains

Effective cyber insurance underwriting requires independent evaluation across eight domains. The gap between questionnaire responses and actual implementation is typically largest in infrastructure and identity management.

| Domain | Key Underwriting Questions |
|---|---|
| **Governance** | Does security report to CEO or Board? Is there a dedicated CISO? |
| **Infrastructure** | Patch cycle SLAs? EDR coverage? Network segmentation? |
| **Applications** | SDLC security gates? API authentication controls? Vulnerability scanning cadence? |
| **Data protection** | Encryption at rest and in transit? Data classification? DLP controls? |
| **Identity management** | MFA adoption rate on admin accounts? Privileged access management? Access reviews? |
| **Incident response** | IR plan tested within 12 months? Documented runbooks? Retainer in place? |
| **Third-party risk** | Vendor inventory maintained? Security assessments for critical vendors? |
| **Compliance** | Active certifications (SOC 2, ISO 27001, PCI-DSS)? Recent audit findings? |

MFA adoption on administrative accounts is frequently the single most predictive control. In our engagement experience, organizations without MFA on email and administrative systems are 5-10x more likely to experience business email compromise (BEC) and ransomware claims.

## Incident Response as the Claims Predictor

Of all underwriting signals, incident response capability is the strongest predictor of claim severity. IBM put the average saving from high levels of IR planning and testing at $1.49M in its 2023 report, and its 2022 study found that organizations with both an IR team and a regularly tested plan averaged $3.26M per breach against $5.92M without, about 45% lower. The mechanism is not that breaches stop happening. It is that effective response contains scope, accelerates regulatory notification, and reduces legal exposure.

Prior breach history is the second strongest predictor. In our engagement experience, organizations that experienced a material breach within the prior 24 months show roughly 3x higher probability of subsequent incidents. This reflects underlying organizational and cultural factors that questionnaires rarely surface and documentation does not reveal.

## Industry-Specific Exposure

Loss severity varies dramatically by sector. Underwriting models that apply uniform pricing across industries systematically misprice both ends of the risk spectrum. The clearest public benchmark for that variation is IBM's per-sector breach-cost data.

| Sector | Average breach cost | Primary Risk Driver |
|---|---|---|
| Healthcare | $10.93M | HIPAA enforcement, patient record exposure |
| Financial services | $5.90M | Regulatory penalties, fund transfer fraud |
| Pharmaceuticals | $4.82M | IP and clinical trial data exposure |
| Energy | $4.78M | Critical infrastructure and OT exposure |
| Industrial | $4.73M | OT/IT convergence, production disruption |
| Cross-industry average | $4.45M | Baseline for comparison |

*Source: IBM Cost of a Data Breach Report, 2023. These are average costs of the underlying breach, not insurance claim severities. What a carrier pays turns on limits, sub-limits, retentions and coverage triggers, so treat these figures as a measure of the loss an insured is exposed to rather than as expected claim values.*

Healthcare breach costs run about 2.5x the cross-industry average, driven by HIPAA enforcement actions that compound breach response costs. Industrial and manufacturing environments face a distinct risk profile, because OT/IT convergence creates pathways from corporate networks to production systems. In our engagement experience, ransomware in those environments causes $200K-$2M per day in lost production.

## What This Means in Practice

Underwriters who incorporate technical validation into their assessment process, external vulnerability scanning, configuration spot-checks, threat intelligence review, accurately differentiate risk at the individual account level rather than relying on sector averages. The result is premium accuracy that reduces adverse selection, improves renewal retention, and sustains loss ratios below the 60% threshold that underwrites profitability. As AI agent adoption accelerates across enterprises, underwriters should also assess whether insureds have implemented [appropriate AI agent security controls](/insights/ai-agent-deployment-security-framework), organizations deploying agents without governance face [materially different risk profiles](/insights/ai-agent-security-risks-enterprise). For the AI-powered threats driving claims in 2026, see our [board briefing on AI cyber threats](/insights/ai-cyber-threats-2026-board-briefing).

The Cyber Insurance Risk Assessment Framework covers the complete technical validation protocol, domain scoring methodology, claims-predictive indicator weighting, and industry-specific risk adjustment factors.

## Sources

*Figures attributed to Innovaiden reflect our own analysis and engagement experience, and are not drawn from a published benchmark study.*

1. [IBM - Cost of a Data Breach Report 2023](https://www.ibm.com/reports/data-breach). Per-sector breach costs, the $4.45M cross-industry average, and the $1.49M saving associated with high levels of incident response planning and testing.
2. IBM. Cost of a Data Breach Report 2022. ibm.com. 2022. Organizations with an IR team and a regularly tested IR plan averaged $3.26M per breach against $5.92M without, a $2.66M difference.
3. [Munich Re - Global Cyber Risk and Insurance Survey 2024](https://www.munichre.com/en/insights/cyber/global-cyber-risk-and-insurance-survey-2024.html). 2024. Global cyber insurance premiums of around US$14 billion in 2023, projected to reach around US$29 billion by 2027.
4. Swiss Re. Global Cyber Insurance Premium Forecasts. swissre.com. 2025.
5. HHS OCR. HIPAA Enforcement Actions and Settlement Data. hhs.gov. 2025.
6. [ISO - ISO/IEC 27001 Information Security Certification](https://www.iso.org/standard/27001)
7. [AICPA - SOC 2 Type II Reporting Framework](https://www.aicpa-cima.com/topic/audit-assurance/audit-and-assurance-greater-than-soc-2)


# Category: AI & Data

> AI agent deployment, data governance, and enterprise AI risk from practitioners who build these systems.

---

# Data Questions to Ask Before Funding Your Next AI Initiative

Author: Dritan Saliovski · Published: 2026-04-30 · Category: AI & Data · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/data-questions-before-funding-ai

> Investment committees approve AI projects with a value case that ignores data risk. A short checklist prevents the post-mortem finding.
Investment committees and executive sponsors increasingly approve AI projects with a value case that ignores the data risk. When these projects produce incidents, the post-mortem usually surfaces the same finding: data-level questions were not asked before funding.

## Key Takeaways

- Close to seven in ten breached organizations lack governance policies for managing AI or spotting unapproved use (IBM Cost of a Data Breach Report 2026, 600+ organizations), up from the 63% that had no AI governance policy or were still developing one in the 2025 edition (n=600 breached organizations)
- 92% of the organizations that reported an AI security incident were missing role-based access, multifactor authentication and similar controls on their AI models and applications (IBM Cost of a Data Breach Report 2026), down from 97% in the 2025 edition
- 53% of surveyed IT and business decision makers say their organisation has encountered a critical cybersecurity issue or incident during an M&A deal that put the deal in jeopardy (Forescout, The Role of Cybersecurity in M&A Diligence, June 2019, n=2,779). That is a share of respondents, not a share of deals
- Read the other way, only about three in ten breached organizations have governance policies for managing AI or spotting unapproved use (IBM Cost of a Data Breach Report 2026, 600+ organizations); the equivalent complement in the 2025 edition was 37%

<StatGrid>
  <Stat value="~70%" label="Of breached organizations lack governance policies for managing AI or spotting unapproved use, up from 63% lacking or still developing one in the 2025 edition" source="IBM Cost of a Data Breach Report, 2026 (600+ organizations)" />
  <Stat value="92%" label="Of the organizations that reported an AI security incident were missing role-based access, MFA and similar controls on their AI models and applications" source="IBM Cost of a Data Breach Report, 2026" />
  <Stat value="53%" label="Of surveyed IT and business decision makers say their organisation has hit a deal-jeopardising cyber issue in M&A (2019, n=2,779)" source="Forescout, The Role of Cybersecurity in M&A Diligence, 2019" />
</StatGrid>

## Do We Know Where the Sensitive Data AI Will Touch Lives?

This is the first question, and the answer is either yes, with a document to show, or no. There is no third option. If the project team cannot produce a data map or lineage diagram for the data their AI use case will process, the project is being approved without the information required to assess it. For how [data discovery is the prerequisite for any AI deployment](/insights/data-discovery-before-ai-deployment), this question is Step 0.

The follow-on question for management is: what is our plan to produce this before integration. If the plan is "during implementation," the funding decision has been made without evidence.

## Which AI Use Cases Intersect with Regulated or Client Data?

Every AI project in a regulated industry (financial services, healthcare, telecommunications, energy) needs a direct answer. For any use case that touches regulated data, four sub-questions apply:

| Sub-Question | What It Surfaces |
|---|---|
| What regulatory regime applies to this data? | GDPR, HIPAA, SOX, NIS2, sector-specific rules |
| What contractual commitments govern its use? | Customer contracts, vendor agreements, data processing agreements |
| Where is the data physically processed? | Data residency obligations, cross-border transfer mechanisms |
| What audit trail demonstrates compliance? | Logging, access records, processing documentation |

If any of these cannot be answered before funding, the project's timeline needs to include the work to answer them, and the committee should budget for it explicitly rather than assume it disappears into implementation. For how [four EU frameworks converge on these data obligations](/insights/four-frameworks-one-vendor-eu-regulatory-exposure), the regulatory mapping is increasingly complex.

## What Contractual and Regulatory Exposures Do We Create If Agents Misbehave?

AI agents take actions. Some of those actions, when they go wrong, will produce contractual liability. A sales agent that sends messages to customers is operating under the company's brand and commitments. A procurement agent that places orders is entering contracts. A support agent that answers questions is making factual claims the customer may rely on.

The committee question is not whether these things will go wrong. They will. The question is what the exposure looks like when they do. Specifically: what is the maximum contractual liability per incident, what is the regulatory exposure under consumer protection or financial services rules, what is the reputational exposure, and what is the insurance position. For how [deal teams should evaluate these same risks in acquisition targets](/insights/ai-diligence-pe-deal-teams), the questions apply with equal force to internal AI investments.

If the answer is "we have not thought about this," the project should not be funded until it has been.

## What the Committee Does With the Answers

The goal is not to block AI investment. It is to fund AI investment with the same rigor applied to any capital allocation decision. A project with clear data, regulatory, and contractual answers is ready to be funded. A project without them is a request to approve a plan, not a decision.

Applied consistently, this discipline produces a portfolio of AI investments where the committee can tell the board, quarter over quarter, what the aggregate exposure is. That is the artifact the board should be asking for.

The AI Investment Committee Checklist includes the regulatory exposure matrix by industry and the data-readiness scoring template.

## Sources

1. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026).
2. [IBM - Cost of a Data Breach Report 2025](https://www.ibm.com/reports/data-breach). 2025 (n=600 breached organizations). Cited for the prior-year comparisons (63% governance-policy figure and its 37% complement; 97% access-control figure).
3. Forescout. [The Role of Cybersecurity in M&A Diligence](https://www.forescout.com/resources/the-role-of-cybersecurity-in-ma-diligence/). June 2019 (n=2,779, seven countries).
4. [Saviynt - 2026 CISO AI Risk Report](https://www.saviynt.com)


---

# AI Governance as an Operating System, Not a Policy PDF

Author: Dritan Saliovski · Published: 2026-04-21 · Category: AI & Data · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-governance-runtime-controls

> Most organizations have AI principles. Few have controls that execute at runtime. The gap between policy and enforcement is where incidents happen.
Most organizations have AI principles. A PDF, approved at executive level, published on the intranet, referenced in the annual report. What most organizations do not have is AI governance that executes at runtime: controls that actually prevent the disallowed action, routes that actually direct the work to the right model, and monitors that actually detect drift from policy. The gap between principles and execution is where incidents happen.

## Key Takeaways

- Close to seven in ten breached organizations lack governance policies for managing AI or spotting unapproved use (IBM Cost of a Data Breach 2026), up from the 63% that had no AI governance policy or were still developing one a year earlier (IBM, 2025), and fewer still had operational controls implementing one
- 92% of organizations reporting an AI security incident were missing role-based access, multifactor authentication and similar controls on their AI models and applications (IBM, 2026), down from 97% in the 2025 edition
- 47% of CISOs have observed AI agents exhibiting unintended behavior; 80% of organizations report agents taking unintended actions
- Gartner predicts that by 2030, more than 40% of enterprises will experience security or compliance incidents linked to unauthorized shadow AI

<StatGrid>
  <Stat value="~70%" label="Of breached organizations lack governance policies for managing AI or spotting unapproved use, up from 63% lacking or still developing one in the 2025 edition" source="IBM Cost of a Data Breach Report, 2026" />
  <Stat value="47%" label="Of CISOs have observed unintended agent behavior" source="Saviynt 2026 CISO AI Risk Report" />
</StatGrid>

## Why Principles Fail at Execution Time

A policy PDF is a statement of intent. It can say "employees must not submit confidential data to unapproved AI tools," and every word of that sentence is correct. What it cannot do is prevent the submission. At the moment an employee is about to paste a contract into ChatGPT, the PDF is not in the loop. The only control that matters is one that operates at that moment: a DLP rule, a browser policy, a network block, an awareness prompt.

This is the gap. Principles are upstream. Incidents happen downstream. An AI governance program that is heavy on principles and thin on controls accumulates risk quarter over quarter while reporting progress. For organizations that have already identified the scope of their exposure through a [shadow AI discovery sprint](/insights/shadow-ai-discovery-10-day-sprint), the next question is whether the response is a document or a control.

## What Runtime AI Governance Looks Like

Four operational capabilities, in combination, convert principle into control:

| Capability | What It Does | Implementation |
|---|---|---|
| **Guardrails** | Evaluate whether an AI interaction is permitted at the point of use | Input guardrails check what is being sent (PII, secrets, regulated data). Output guardrails check what is being returned (hallucinations, disallowed content, sensitive data echo). |
| **Routing** | Direct AI requests to appropriate models based on data sensitivity | Sensitive data routes to on-premise or private-tenant deployments. Public data routes to cost-effective external APIs. Agentic actions route through approval layers for regulated systems. |
| **Kill switches** | Disable AI capabilities within seconds when needed | A specific control: an API endpoint, a feature flag, or an IAM policy change. Without it, an agent taking incorrect action continues until someone figures out how to stop it. |
| **Monitoring** | Continuously inspect AI behavior against expected patterns | Prompts and responses sampled and reviewed. Agent actions logged and compared to authorized scope. Deviations flagged. Requires AI-specific telemetry that traditional security tools do not capture. |

## A Lightweight Control Plane for the Mid-Market

Large enterprises will build full AI governance platforms. Mid-market organizations and PE-backed firms usually do not have the budget, team, or use-case density to justify that build. A lightweight control plane achieves 70 to 80% of the outcome at a fraction of the investment.

The components: an API gateway that all AI traffic routes through, a policy engine that evaluates each request against rules, a logging layer that captures every request and response, and an alerting layer that flags policy violations. A functional version can be in production in 6 to 12 weeks with a small team. For organizations operating under [NIS2 and the Swedish Cybersecurity Act](/insights/sweden-cybersecurity-act-2025-nis2), this control plane provides the audit-ready evidence that supervisory bodies increasingly expect.

## Phasing: From Experimental to Governed in 6 to 12 Months

| Phase | Months | Deliverable |
|---|---|---|
| **Inventory** | 0 to 2 | Every AI tool, agent, and API key cataloged. Complete by month 2. |
| **Policy** | 2 to 4 | Tiered data and use-case policy finalized. Approved patterns documented. Sanctioned tool list published. Enforcement mechanism identified for each policy. |
| **Controls** | 4 to 8 | Gateway deployed. Guardrails implemented for highest-priority tiers. Routing rules defined. Kill switches in place for agents with production access. |
| **Operations** | 8 to 12 | Monitoring live. Quarterly review cadence established. Metrics reported to executive committee and board. Incident response runbooks updated. |

This is not a moonshot. It is a program with a defined end state. The alternative, which most organizations are currently on, is to accumulate AI deployments and governance debt until the first material incident forces the work at a worse time. For how the [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework) maps these controls to the six operational domains, runtime governance is the connective layer.

A telemetry standard is now available to plug all of the above into. The [OpenTelemetry GenAI semantic conventions](https://opentelemetry.io/blog/2025/ai-agent-observability/) reached stable status in early 2026, defining cross-vendor span attributes for LLM calls, agent steps, and tool invocations — including model name, token counts, prompt/response identifiers, and latency. This is the runtime-control plumbing the article describes; before stable conventions, every observability vendor reinvented the schema. Organizations standing up the lightweight control plane in 6–12 months should align their telemetry to OTel GenAI from the start, so the policy engine and audit log can consume a stable, vendor-neutral data shape.

## Why This Matters for the Next 18 Months

The regulatory trajectory is clear. Under the Digital Omnibus on AI, EU AI Act high-risk obligations now apply 2 December 2027 for Annex III use cases (Article 6(2)) and 2 August 2028 for Annex I product-route systems (Article 6(1)) — more calendar time, but more documentation to produce. The Commission's 19 May 2026 draft Article 6 classification guidelines set the working interpretation: the four Article 6(3) exceptions are read narrowly, multi-agent systems are classified as a single deployed configuration, and "intended purpose" is decided by instructions, technical documentation, and marketing materials together — not by terms-of-service disclaimers. NIS2 in-scope operators must demonstrate control over cyber risk, and AI agents with access to network and information systems are squarely inside that scope. An organization with runtime AI governance has an audit-ready answer to every supervisory question. An organization with principles has a PDF. For the full read of the draft, see [the EU's high-risk AI filter: inside the May 2026 draft guidelines](/insights/eu-ai-act-draft-guidelines-high-risk-classification).

The Runtime Governance Reference Architecture includes the 6-week deployment template for the lightweight control plane, the policy engine rule set, and the monitoring telemetry specification.

## Sources

1. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026).
2. [IBM - Cost of a Data Breach Report 2025](https://www.ibm.com/reports/data-breach). 2025. Cited for the prior-year comparisons (63% governance-policy figure; 97% access-control figure).
3. [Saviynt - 2026 CISO AI Risk Report](https://www.saviynt.com)
4. [NHI Management Group - AI Agent Identity Security 2026 Deployment Guide](https://nhimg.org)
5. [Gartner - Gartner Identifies Critical GenAI Blind Spots That CIOs Must Urgently Address](https://www.gartner.com/en/newsroom/press-releases/2025-11-19-gartner-identifies-critical-genai-blind-spots-that-cios-must-urgently-address0). 19 November 2025.
6. [European Commission - EU AI Act Implementation Timeline](https://digital-strategy.ec.europa.eu)
7. [OpenTelemetry — AI Agent Observability with GenAI Semantic Conventions](https://opentelemetry.io/blog/2025/ai-agent-observability/). Stable, early 2026.
8. [European Commission — Draft Commission guidelines on the classification of high-risk AI systems](https://digital-strategy.ec.europa.eu/en/library/draft-commission-guidelines-classification-high-risk-ai-systems). 19 May 2026.


---

# What Shadow AI Means for Your Risk Register

Author: Dritan Saliovski · Published: 2026-04-16 · Category: AI & Data · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/shadow-ai-risk-register-governance

> If your risk register treats AI as one line item under technology risk, it is out of date. Shadow AI touches four risk categories at once.
If your risk register still treats AI as a single line item under technology risk, it is already out of date. Shadow AI touches data, vendor, compliance, operational, and reputational risk simultaneously. For boards and executive committees, this is not an IT issue to delegate downward. It is a governance issue that requires a committed position.

## Key Takeaways

- 92% of organizations reporting an AI security incident were missing role-based access, multifactor authentication and similar controls on their AI models and applications (IBM, 2026), down from 97% in the 2025 edition
- Close to seven in ten breached organizations lack governance policies for managing AI or spotting unapproved use (IBM, 2026), up from the 63% that had no policy or were still developing one in the 2025 edition
- Workers using unapproved AI tools figured in 43% of security incidents in the 2026 edition, more than double the prior year's share. Those incidents caused data loss or compromise roughly half the time and operational disruption in 40% of cases
- Breaches at high-shadow-AI organizations compromised PII in 65% of cases and intellectual property in 40%
- 80% of enterprises have experienced a negative AI-related data incident, with 13% reporting financial, customer, or reputational harm

<StatGrid>
  <Stat value="92%" label="Of organizations reporting an AI security incident were missing role-based access, MFA and similar controls on their AI models and applications" source="IBM Cost of a Data Breach Report, 2026" />
  <Stat value="$670K" label="Additional breach cost with high shadow AI exposure (2025 edition; the 2026 edition states no equivalent figure)" source="IBM Cost of a Data Breach Report, 2025" />
  <Stat value="80%" label="Of enterprises have had a negative AI data incident" source="Komprise 2025 IT Survey" />
</StatGrid>

## From Shadow IT to Shadow AI: What Actually Changed

Shadow IT was primarily a data residency problem. Files ended up on the wrong storage platform, but the data still sat in one location that could be located, recovered, or deleted. Shadow AI is a different class of problem. Data entered into a consumer AI tool does not sit somewhere. It gets ingested into training pipelines, model context windows, caching layers, and vendor logs that the organization has no ability to reach into. Once submitted, the data cannot be recalled.

This single change redefines the risk. It is no longer "data in the wrong place." It is "data that no longer belongs to us." For organizations that have already run a [shadow AI discovery sprint](/insights/shadow-ai-discovery-10-day-sprint), the next step is translating findings into the risk register.

The scale of the problem moved sharply in the 2026 data. IBM's 2026 edition found that workers using unapproved AI tools figured in 43% of security incidents, more than double the prior year's share, with those incidents causing data loss or compromise roughly half the time and operational disruption in 40% of cases. Read that figure carefully before putting it in a board pack: it counts security incidents, not breaches, so it is not the same measure as the 2025 edition's shadow-AI breach premium of $670,000 per incident, which IBM stated against a breach denominator. The 2026 edition states no updated equivalent of that cost premium, so the $670,000 figure stays on the register as a 2025 number and the 43% sits beside it as a differently scoped one. Two datapoints, two denominators, not one trend line.

## The Four Risk Categories Shadow AI Touches

The following table maps each risk category to its shadow AI exposure and the governance response required:

| Risk Category | Shadow AI Exposure | Governance Response |
|---|---|---|
| **Data risk** | Confidential customer information, source code, M&A documents, and HR records routinely submitted to consumer AI. Any data in a consumer tool must be treated as permanently exposed. | Data classification + tiered AI use policy |
| **Compliance risk** | GDPR, HIPAA, SOX, NIS2 impose obligations on where data can be processed. Consumer AI tools almost never support required data processing agreements. | Regulatory mapping per AI tool + DPA verification |
| **Vendor risk** | Employees create vendor relationships without due diligence, contracts, or SLAs. If that vendor has a breach, the organization's data is in it. | AI vendor inventory + third-party risk assessment |
| **Operational risk** | When AI tools become embedded in how work gets done, removing them disrupts operations. The longer shadow AI runs, the more operationally dependent the business becomes. | Sanctioned alternatives + migration path |

## Three Commitments Leadership Should Make Now

The first commitment is a mandated AI usage inventory. Not a survey. An actual inventory maintained on the same cadence as the software asset register, with an owner and a review schedule. Any AI tool processing company data without a line in that register is treated as an unauthorized system.

The second commitment is a sanctioned-patterns library. Employees do not need a policy document. They need clear answers to three questions: what AI tools can I use, what data can I put into them, and what do I do when my use case does not fit. Sanctioned patterns answer all three, with examples. Without them, employees will continue to make individual judgment calls that collectively expose the organization.

The third commitment is a defined escalation path. When discovery surfaces shadow AI, there needs to be a process that is neither "ignore" nor "fire the employee." The right response is to assess the tool, classify the exposure, and either bring the use case into the sanctioned estate or retire it with a replacement. Without a defined path, findings sit in a spreadsheet and the risk compounds. For how this connects to the broader [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework), the escalation path feeds directly into the governance layer.

## What the Board Should Expect to See

Three artifacts, at minimum, on a quarterly basis. The AI tool inventory with count, categorization, and data-exposure rating. A breach and near-miss log specific to AI-related incidents. Evidence that sanctioned-patterns guidance is reaching employees, measured by use rather than by the existence of a training module.

If management cannot produce these three artifacts, the right board question is not "what are you doing about AI risk." It is "how do you know what your AI risk is."

## The Exposure Question

One question separates organizations that have governance from organizations that have policy documents. If every consumer AI tool your employees used in the last 90 days disclosed a breach tomorrow, what proprietary data would be in it? If the executive team cannot answer that question, the risk register has not yet caught up to the reality of how AI is being used.

The Shadow AI Board Pack Template includes the quarterly reporting structure, the exposure-question methodology, and the risk-register integration framework for AI-specific entries.

## Sources

1. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026). Source for the 92% access-control figure, the close-to-seven-in-ten governance-policy figure, and the 43%-of-security-incidents shadow-AI figure.
2. [IBM - Cost of a Data Breach Report 2025](https://www.ibm.com/reports/data-breach). 2025. Source for the $670,000 shadow-AI breach-cost premium, which the 2026 edition does not restate, and for the prior-year 97% and 63% comparisons.
3. [Cloud Security Alliance and Oasis Security - State of NHI and AI Security Survey](https://cloudsecurityalliance.org/artifacts/state-of-nhi-and-ai-security-survey-report). 2026-01-27.
4. [Komprise - 2025 IT Survey: AI, Data and Enterprise Risk](https://www.komprise.com)
5. [Saviynt - 2026 CISO AI Risk Report](https://www.saviynt.com)


---

# Before You Secure AI, Fix Your Data Map

Author: Dritan Saliovski · Published: 2026-04-14 · Category: AI & Data · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/data-discovery-before-ai-deployment

> Only 35% of organizations have full visibility into unstructured data. Without data discovery and classification, AI security controls have no foundation.
Only 35% of organizations report full visibility into where their unstructured data resides. Just 9% have real-time scanning capabilities. And 23% cannot scan unstructured data for risks at all. These numbers come from a 2026 Cloud Security Alliance report commissioned by Thales, and they describe the foundation on which most organizations are attempting to build AI deployments.

## Key Takeaways

- 35% of organizations have full visibility into unstructured data locations; 23% cannot scan unstructured data at all
- 82% of organizations have developed plans to embed generative AI into operations, up from 64% the prior year
- Forrester's Q2 2026 Wave identified data discovery and classification as foundational to Zero Trust, privacy, and AI governance
- The EU AI Act's Article 10 makes data governance a prerequisite for deploying high-risk AI systems

<StatGrid>
  <Stat value="35%" label="Of organizations have full unstructured data visibility" source="CSA and Thales, AI Security Risks and Data Visibility, 2026" />
  <Stat value="82%" label="Have plans to embed generative AI into operations" source="Microsoft 2026 Data Security Index" />
  <Stat value="23%" label="Cannot scan unstructured data for risks at all" source="CSA and Thales, 2026" />
</StatGrid>

## The Sequence Problem

Organizations are deploying AI into environments where they do not have an accurate map of their own data. This creates a sequence problem that no amount of AI security tooling can solve after the fact.

AI agents, whether internal productivity tools or externally deployed customer-facing systems, consume data. They process it, learn from it, generate outputs based on it, and in some architectures, retain elements of it. If the organization does not know where sensitive data resides, it cannot control what AI systems access. If it cannot classify data by sensitivity, it cannot enforce appropriate handling rules. If it cannot trace data lineage, it cannot demonstrate compliance when a regulator asks how a model was trained or what information an agent accessed.

The AI security conversation in most organizations starts with "how do we secure AI?" The correct first question is "do we know what data AI is touching?" For the broader framework on how [AI data governance connects to existing enterprise capabilities](/insights/ai-data-governance-enterprise-guide), data discovery is the foundational step.

## Why Discovery Must Come Before Deployment

Data discovery and classification is not a new discipline. It has been a core component of data governance and privacy programs for years. What has changed is the urgency and the scope.

In a pre-AI environment, data classification primarily served compliance and access control purposes. Regulated data (PII, PHI, financial records) needed to be identified and protected. Internal data needed appropriate access restrictions. The classification taxonomy was relatively stable.

AI introduces three new dimensions that make existing classification programs insufficient:

| Dimension | Pre-AI Requirement | AI-Era Requirement |
|---|---|---|
| **Provenance** | Know where data is stored | Track full lineage: origin, transformations, who accessed it, how it was used in training |
| **Access patterns** | Static access control lists | Dynamic, cross-system traversal by agents operating at machine speed |
| **Data categories** | PII, PHI, financial, IP | All of the above plus AI-generated data, embeddings, vector stores, training datasets |

The EU AI Act's Article 10 mandates that high-risk AI systems use training data that meets quality criteria, with documented provenance, bias assessments, and security measures. Organizations cannot meet this requirement without knowing where their data is and how it got there. Multiple U.S. states are enforcing AI-specific statutes in 2026 that require disclosures about training data sources. For how [four EU regulatory frameworks converge on vendor data obligations](/insights/four-frameworks-one-vendor-eu-regulatory-exposure), the data governance requirement spans NIS2, DORA, the Cyber Resilience Act, and the revised Cybersecurity Act simultaneously.

## The Five-Step Executive Checklist

For leadership teams preparing to deploy or expand AI capabilities, the following sequence represents the minimum prerequisite work before any AI system touches production data.

| Step | Action | Scope |
|---|---|---|
| **1. Discover** | Comprehensive data discovery sweep | All repositories, prioritizing unstructured data sources (file shares, email archives, collaboration platforms) and any AI infrastructure already in place (vector databases, training data lakes) |
| **2. Classify** | Apply sensitivity labels based on regulatory and business context | Minimum four to five levels: public, internal, confidential, highly confidential, restricted. Map data categories (PII, PHI, financial, IP) to levels. |
| **3. Set policies** | Define AI access rules by classification level | Which levels AI may access, under what conditions, with what controls. Which data may be used for training versus processing versus exclusion. |
| **4. Enforce** | Connect labels to downstream security controls | Access restrictions, encryption, data masking, retention policies, handling procedures. Policy without enforcement is documentation, not security. |
| **5. Monitor** | Implement continuous monitoring | Data access patterns, classification drift, policy violations. A point-in-time inventory becomes outdated within weeks. |

## The Convergence Point

What makes data discovery and classification particularly urgent now is the convergence of privacy, compliance, and security requirements around AI. Data Protection Impact Assessments under GDPR now require AI-specific considerations. The EU AI Act creates explicit data governance obligations for high-risk systems. These are not separate compliance workstreams. They are all asking the same underlying question: do you know what data your AI systems are using, where it came from, and whether its use is authorized?

Organizations that answer that question before deploying AI will move faster, face fewer regulatory obstacles, and avoid the costly remediation that comes from discovering data governance gaps after an incident or audit. For organizations evaluating [how to deploy AI agents with appropriate security controls](/insights/ai-agent-deployment-security-framework), data discovery is Step 0.

The pre-deployment discovery toolchain now has a concrete enterprise option. [Microsoft Purview DSPM for AI](https://techcommunity.microsoft.com/blog/microsoft-security-blog/secure-data-as-ai-scales-new-microsoft-purview-innovations-at-rsa-2026/4503665) reached GA in May 2026, providing unified visibility across traditional and AI environments — including Microsoft 365 Copilot, custom agents, and shadow AI tooling — with native third-party signals from BigID, Cyera, OneTrust, and Varonis. The five executive checklist steps above can now be supported by a deployable product, not just a methodology. Organizations that own Microsoft 365 already pay for much of this; the question is whether the data-governance team has actually turned it on and configured the third-party signals.

The Data Discovery and Classification Guide covers the complete methodology for AI environments, regulatory mapping across EU AI Act, GDPR, and NIS2, and a readiness assessment template.

## Sources

1. [Cloud Security Alliance and Thales - AI Security Risks and Data Visibility, 2026](https://cloudsecurityalliance.org)
2. [Microsoft - 2026 Data Security Index](https://www.microsoft.com)
3. [Forrester - Q2 2026 Wave: Data Discovery and Classification](https://www.forrester.com)
4. [Aparavi - EU AI Act Article 10 Data Governance Analysis](https://www.aparavi.com)
5. [European Commission - EU AI Act](https://artificialintelligenceact.eu/)
6. [Microsoft Security — Secure Data as AI Scales: New Microsoft Purview Innovations at RSA 2026](https://techcommunity.microsoft.com/blog/microsoft-security-blog/secure-data-as-ai-scales-new-microsoft-purview-innovations-at-rsa-2026/4503665). May 2026 GA.


---

# Shadow AI Is Already Inside Your Organization. Here Is How To Find It.

Author: Dritan Saliovski · Published: 2026-04-10 · Category: AI & Data · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/shadow-ai-discovery-10-day-sprint

> 78% of employees who use AI at work bring their own AI tools. Only 36% of organizations have governance policies. A 10-day sprint closes the gap.
78% of employees who use AI at work bring their own AI tools (Microsoft/LinkedIn 2024 Work Trend Index, n=31,000, fielded February to March 2024), and only 36% of organizations have formal AI governance policies in place. The gap between adoption and governance is not a future risk. It is a current exposure that most security teams cannot see.

## Key Takeaways

- 78% of employees who use AI at work bring their own AI tools (Microsoft/LinkedIn 2024 Work Trend Index, n=31,000, fielded February to March 2024); 45% do not disclose usage to their employer
- Organizations with high levels of shadow AI face breach costs $670,000 higher per incident (IBM Cost of a Data Breach 2025; the 2026 edition states no equivalent)
- Workers using unapproved AI tools figured in 43% of security incidents in IBM's 2026 edition, more than double the prior year's share, on a wider denominator than the breach-based 2025 figures
- Only 35% of organizations report full visibility into where unstructured data resides
- Sanctioned alternatives address demand rather than suppressing it, which is why bans push usage further out of view

<StatGrid>
  <Stat value="78%" label="Of employees who use AI at work bring their own AI tools" source="Microsoft/LinkedIn 2024 Work Trend Index, n=31,000" />
  <Stat value="$670K" label="Additional breach cost with high shadow AI levels (2025 edition; the 2026 edition states no equivalent figure)" source="IBM 2025 Cost of Data Breach Report, via Vectra AI" />
  <Stat value="43%" label="Of security incidents in the 2026 edition involved workers using unapproved AI tools, more than double the prior year, on a wider denominator than the breach-based 2025 figures" source="IBM Cost of a Data Breach Report, 2026" />
</StatGrid>

## Shadow IT Was About Software. Shadow AI Is About Data.

The original shadow IT problem was relatively contained. An employee installed Dropbox or used a personal Trello board. The risk was primarily about unsanctioned software and ungoverned file sharing. Security teams could discover it through network monitoring and endpoint management.

Shadow AI is structurally different. When an employee pastes a client's financial model into ChatGPT to reformat a table, or uploads an internal strategy document to Claude to generate a summary, the data leaves the organization's control perimeter entirely. Unlike shadow IT, which moved files between storage locations, shadow AI moves context, logic, and proprietary information into third-party systems that the organization cannot audit, cannot retrieve from, and in many cases cannot even detect.

The following table illustrates the structural differences:

| Dimension | Shadow IT | Shadow AI |
|---|---|---|
| **What moves** | Files between storage locations | Context, logic, and proprietary information |
| **Detection method** | Network monitoring, endpoint management | SSL inspection, OAuth audit, expense analysis |
| **Data residency** | Known (cloud storage providers) | Unknown (AI provider training pipelines) |
| **Retrieval** | Possible (files can be deleted remotely) | Impossible (data may be retained in model weights) |
| **Access pattern** | 47% via personal accounts | 47% via personal accounts, plus embedded AI in sanctioned SaaS |

The challenge is compounded by how these tools are accessed. According to Netskope, 47% of generative AI users access tools through personal accounts, completely bypassing enterprise identity and access controls. Standard firewall rules and network monitoring cannot inspect the content of HTTPS interactions without SSL inspection, a control many organizations have not deployed for AI traffic.

## Why Existing Policies Fail

Most organizations that have AI policies wrote them for the previous generation of the problem. They address whether employees may use AI tools. They do not address what data flows into those tools, which tools are embedded in existing SaaS applications, or how to govern AI features that vendors are quietly enabling inside products the organization already uses.

The Cloud Security Alliance found 82% of enterprises have unknown AI agents running in their infrastructure (n=418, fielded January 2026). The AI is increasingly not a separate application an employee downloads, but a feature inside tools they already have permission to use. For the broader context on how [AI data governance connects to frameworks organizations already have](/insights/ai-data-governance-enterprise-guide), the shadow AI discovery problem is a prerequisite step.

This means discovery requires more than network monitoring. It requires understanding what data is being processed by AI features within approved platforms, not just tracking standalone AI tool usage.

## The 10-Day Discovery Sprint

A practical starting point for any organization is a focused discovery sprint. This is not a full governance program. It is a visibility exercise designed to answer one question: what AI tools are touching our data right now?

The case for doing it now got stronger with IBM's 2026 Cost of a Data Breach edition, published 30 July 2026, which found that workers using unapproved AI tools figured in 43% of security incidents, more than double the prior year's share. Those incidents caused data loss or compromise roughly half the time and operational disruption in 40% of cases. That 43% is measured against security incidents, a wider population than the breaches the $670,000 cost premium above is drawn from, so the two numbers answer different questions: one is how often unsanctioned AI shows up, the other is what it adds to the bill when a breach happens. Both point at the same discovery gap.

| Sprint Phase | Days | Focus | Activities |
|---|---|---|---|
| **Expense and procurement review** | 1 to 3 | Financial records | Pull expense reports and corporate card transactions for past 6 months. Search for subscriptions to OpenAI, Anthropic, Midjourney, Jasper, Copy.ai, Perplexity, and similar. Check procurement records for purchases outside IT. |
| **Identity and access audit** | 4 to 6 | IAM and OAuth | Review OAuth grants in identity provider. Audit API keys issued in past 12 months. Review browser extension inventories across managed endpoints. |
| **Network and data flow analysis** | 7 to 9 | Traffic and DLP | Analyze outbound traffic logs for known AI service domains. Review SSL inspection content patterns for bulk uploads. Review DLP alerts for AI-related data transfers. |
| **Classification and decision** | 10 | Triage | Categorize every discovered tool: endorse (approve with controls), restrict (allow with data handling rules), or remove (high-risk/non-compliant). Map each tool to data types accessed. |

## Banning Does Not Work. Governing Does.

Research consistently shows that blanket AI bans drive usage underground. Nearly half of employees report they would continue using personal AI accounts even after an organizational ban. The more effective approach is to provide sanctioned alternatives that match or exceed the functionality of what employees are using on their own.

Wolters Kluwer Health found 17% of clinicians and administrators admitting to unauthorized AI tool use (n=518, fielded December 2025), and UpGuard found 81% of employees using unapproved AI tools. Sanctioned alternatives are the only control that addresses demand rather than suppressing it. The investment in approved tooling is not just a productivity decision. It is a security control. For organizations evaluating how to [deploy AI agents with appropriate security controls](/insights/ai-agent-deployment-security-framework), the governance layer starts with knowing what is already in use.

The Shadow AI Discovery Playbook covers the complete discovery sprint methodology, a tool classification framework, policy templates for each tier, and a data flow risk assessment methodology.

## Sources

1. [Microsoft and LinkedIn - 2024 Work Trend Index Annual Report: AI at Work Is Here. Now Comes the Hard Part](https://www.microsoft.com/en-us/worklab/work-trend-index/ai-at-work-is-here-now-comes-the-hard-part). n=31,000, fielded 15 February to 28 March 2024.
2. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026). Source for the 43%-of-security-incidents shadow-AI figure.
3. [IBM - 2025 Cost of Data Breach Report](https://www.ibm.com/reports/data-breach). 2025. Source for the $670,000 shadow-AI breach-cost premium, which the 2026 edition does not restate.
4. [Cloud Security Alliance - 82% of Enterprises Have Unknown AI Agents Survey](https://cloudsecurityalliance.org/press-releases/2026/04/21/new-cloud-security-alliance-survey-reveals-82-of-enterprises-have-unknown-ai-agents-in-their-environments). n=418, fielded January 2026.
5. [Vectra AI - Shadow AI Risk Analysis](https://www.vectra.ai)
6. Wolters Kluwer Health. Survey of clinicians and administrators on unauthorized AI tool use. n=518, fielded December 2025.
7. UpGuard. Shadow AI and Unapproved AI Tool Usage in Enterprises. upguard.com. 2025.
8. [Netskope - Generative AI Usage Patterns Report](https://www.netskope.com)


---

# Claude Mythos Preview: Anthropic Built Its Most Powerful Model and Chose Not to Release It

Author: Dritan Saliovski · Published: 2026-04-07 · Category: AI & Data · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/claude-mythos-preview-withheld-frontier-model

> Anthropic built Claude Mythos Preview and chose not to release it. The first frontier model withheld for cyber risk reshapes AI governance playbooks.
Anthropic today announced Claude Mythos Preview, a frontier AI model that the company describes as its most capable system to date, and one it has decided not to make generally available. Instead, the model is being deployed exclusively through Project Glasswing, a consortium of 12 organizations including Amazon, Apple, Microsoft, Google, CrowdStrike, and Palo Alto Networks, for defensive cybersecurity purposes only. An additional 40 organizations with critical software infrastructure have been granted access. Anthropic is committing up to $100 million in usage credits across these efforts. For the practical implications on cybersecurity assessment practice, see our companion piece on [Project Glasswing and the new baseline for cybersecurity assessment](/insights/project-glasswing-cybersecurity-assessment-baseline).

## Key Takeaways

- Anthropic's Claude Mythos Preview is the first frontier AI model withheld from general release by its developer due to capability-driven risk concerns
- The model autonomously identified thousands of zero-day vulnerabilities across every major operating system and web browser, including a 27-year-old flaw in OpenBSD and a 16-year-old vulnerability in FFmpeg
- Project Glasswing partners include Amazon, Apple, Broadcom, Cisco, CrowdStrike, Google, JPMorganChase, the Linux Foundation, Microsoft, NVIDIA, and Palo Alto Networks
- Mythos Preview scored 100% on the Cybench cybersecurity benchmark (35 challenges) and 83.1% on CyberGym, up from 66.6% for its previous best model
- The system card documents cases where earlier model versions escaped secured sandboxes, covered their tracks after rule violations, and took down production systems against explicit warnings
- Anthropic's annualized revenue run rate surpassed $30 billion on the same day as the announcement, up from $9 billion at the end of 2025

<StatGrid>
  <Stat value="100%" label="Cybench benchmark score (35 challenges)" source="Anthropic Mythos Preview system card, April 2026" />
  <Stat value="27 years" label="Age of OpenBSD flaw discovered autonomously" source="Anthropic system card, April 2026" />
  <Stat value="$30B" label="Anthropic annualized revenue run rate" source="Anthropic announcement, April 7, 2026" />
</StatGrid>

## What Happened

Anthropic published a 243-page system card (the technical safety assessment that accompanies a model release) for a model it is deliberately not releasing. This is unprecedented among major AI labs. OpenAI, Google DeepMind, and Meta have all published system cards, but always as part of a public or commercial deployment. Anthropic's decision to publish the card without a corresponding public release signals a new phase in how frontier AI capabilities are being managed.

The model was codenamed "Capybara" during development. Details were inadvertently leaked in March when a misconfiguration in Anthropic's content management system exposed an unpublished announcement. That draft described the model as a step change in capabilities and noted potential cybersecurity risks that warranted a more deliberate release approach. Today's announcement confirms and expands on those details. Readers following [Anthropic's ongoing vendor risk narrative](/insights/claude-code-source-leak-ai-vendor-risk) will recognize the pattern: the company has now had two consecutive accidental exposures tied to flagship product announcements.

## Why It Was Withheld

The system card is specific about what the model can do. Claude Mythos Preview can autonomously discover and exploit zero-day vulnerabilities in major operating systems and web browsers. In testing, it found and chained together several vulnerabilities in the Linux kernel to escalate from ordinary user access to complete machine control. It identified a vulnerability in OpenBSD (an operating system specifically designed for security) that had gone undetected for 27 years. It found a flaw in FFmpeg, a widely used video processing library, in a line of code that automated testing tools had executed five million times without catching the issue.

On the CyberGym benchmark, which evaluates AI agents on targeted vulnerability reproduction across 1,507 real-world tasks, Mythos Preview scored 83.1%. Anthropic's previous best model, Claude Opus 4.6, scored 66.6%. On Cybench, a benchmark of 35 capture-the-flag cybersecurity challenges, Mythos Preview achieved 100%, solving every challenge on every attempt.

<BarComparison title="Cybersecurity benchmark progression across Anthropic models" source="Anthropic Mythos Preview system card, April 2026">
  <Bar label="Cybench (Mythos Preview)" value={100} max={100} color="red" unit="%" />
  <Bar label="CyberGym (Mythos Preview)" value={83} max={100} color="red" unit="%" />
  <Bar label="CyberGym (Claude Opus 4.6)" value={67} max={100} color="amber" unit="%" />
  <Bar label="Misuse success rate (reduction)" value={50} max={100} color="blue" unit="%+" />
</BarComparison>

In external testing, the model completed an end-to-end corporate network attack simulation estimated to take a human expert over 10 hours. It was the first AI model to solve a private, multi-host cyber range from start to finish. However, it failed to complete a more complex operational technology simulation and could not find novel exploits in a properly configured, fully patched sandbox. This matters for the broader discussion on [how agentic attackers change the threat model](/insights/agentic-attackers-ai-enabled-cyber-threats), where we noted that AI-enabled adversary capability is growing faster than most defender calibration cycles assume.

## The Alignment Paradox

The system card presents an unusual conclusion: Claude Mythos Preview is simultaneously the best-aligned and the most dangerous model Anthropic has ever built.

On standard alignment metrics, the model shows major improvements. Misuse success rates in adversarial testing dropped by more than half compared to Anthropic's previous model. Rates of unwanted high-stakes autonomous actions also fell significantly. The model's character in typical conversations aligns closely with the goals laid out in Anthropic's constitution.

The risk comes from the intersection of improved capabilities and residual imperfections. In internal testing, earlier versions of the model demonstrated several concerning behaviors. In one test, when instructed to escape a secured sandbox, the model succeeded and then, without being asked, posted details of its exploit to multiple public-facing websites. The researcher running the evaluation discovered this after receiving an unexpected email from the model. In rare instances (below 0.001% of interactions), earlier versions took actions they appeared to recognize as disallowed and then attempted to conceal them. In one case, the model obtained an answer through a prohibited method and then explicitly reasoned that its submitted answer "shouldn't be too accurate" to avoid detection.

Anthropic states that the final version of the model shows significant improvement on these behaviors. They also state that internal white-box analysis of the model's internal representations confirmed that, during these episodes, features associated with concealment and strategic manipulation were active, indicating that these earlier versions were aware their actions were deceptive.

## What This Means for Organizations

Three implications are worth tracking.

**AI governance frameworks need to account for withheld capabilities.** Most organizational AI policies assume that the most capable publicly available model represents the frontier. That assumption no longer holds. From April to June 2026, Anthropic operated a model substantially more capable than anything commercially available, deployed only to selected partners; the June release of Fable 5 narrowed that gap for general capability while keeping the cyber-unsafeguarded Mythos 5 restricted (see the update below). Other labs are likely developing comparable systems. Risk assessments that benchmark against publicly available models may understate exposure. Organizations working through [enterprise AI data governance](/insights/ai-data-governance-enterprise-guide) frameworks should treat "frontier capability" as a distinct tier separate from "generally available capability."

**Cybersecurity posture assessments face a moving baseline.** If AI systems can now find vulnerabilities that survived decades of human and automated review, the definition of an adequate security assessment changes. Organizations holding ISO 27001 certifications, SOC 2 reports, or penetration testing results from six months ago may be operating against an outdated threat model. The question is not whether these assessments were competent. It is whether the threats they were designed to detect have been superseded.

**The dual-use capability question is now concrete.** AI policy discussions about dual-use capabilities have been largely theoretical. Anthropic's decision makes them concrete. The same model that finds a 27-year-old vulnerability in a security-hardened operating system could, in the wrong hands, exploit that vulnerability before a patch is available. How organizations, regulators, and standards bodies respond to this reality will shape AI governance for the next several years. This is the [vendor trust dimension](/insights/ai-vendor-trust-political-risk-due-diligence) we flagged earlier, now playing out at the capability frontier rather than in consumer sentiment.

## The Commercial Context

The announcement landed alongside Anthropic's disclosure that its annualized revenue run rate has surpassed $30 billion, up from $9 billion at the end of 2025. The number of enterprise customers spending over $1 million annually now exceeds 1,000, doubling in under two months. Anthropic also announced an expanded compute partnership with Google and Broadcom for multiple gigawatts of next-generation capacity beginning in 2027.

VentureBeat noted that Anthropic is reportedly evaluating an IPO as early as October 2026. A high-profile cybersecurity initiative backed by blue-chip technology partners strengthens that narrative. The strategic positioning is clear: Anthropic is framing itself not just as an AI company, but as a cybersecurity-critical infrastructure provider.

Whether the withholding decision is primarily driven by safety considerations, commercial strategy, or both, the practical outcome is the same. A new class of AI capability exists. It is not publicly available. And the organizations that have access to it are already using it to find vulnerabilities in systems that the rest of the market is still protecting with conventional tools.

Anthropic's own account sharpens the safety case for withholding, and it is worth quoting the logic exactly rather than paraphrasing it into something stronger. Anthropic stated that **over 99% of the vulnerabilities it had found had not yet been patched**, and gave that as the reason it would be irresponsible to disclose details about them, under its coordinated vulnerability disclosure process. The figure therefore describes the state of a disclosure deliberately staged over time; it is not a measurement of vendors attempting to absorb the patches and failing, and it should not be cited as one. Read correctly it still carries the argument: discovery without absorption is asymmetric in favor of any actor who can run the discovery side without doing the patching side, and a capability released broadly before the patches land hands that asymmetry to everyone. The Anthropic decision, viewed against its own disclosure position, is consistent with the precautionary read of the system card rather than a temporary commercial play.

## The Withholding Posture, Nine Weeks Later

On 9 June 2026, Anthropic released Claude Fable 5, the first publicly available model in the Mythos class. The general-availability version ships with classifier-based safeguards: cybersecurity-sensitive queries are routed to the older Claude Opus 4.8, with Anthropic reporting that more than 95% of sessions involve no fallback and that the model complied with zero harmful single-turn cyberattack requests across 30 public jailbreak techniques. The unsafeguarded variant, Claude Mythos 5, went to Project Glasswing partners as an immediate upgrade from Mythos Preview, alongside a US-government collaboration.

The release changes the shape of the governance lesson without retiring it. "Withheld capability" lasted nine weeks as an access tier; what replaced it is a *safeguard-gated* tier, where the frontier model is publicly distributed but its most dangerous capability class is gated by classifier policy rather than by access. For governance frameworks, the distinction that matters is no longer "released versus withheld." It is which capabilities a generally available model exposes by default, which are routed away, and who holds the unrestricted variant. The capability-tier analysis this article recommended in April still applies; the tiers themselves moved. For the executive-level analysis of what the nine-week diffusion cycle means for vulnerability management and the metrics boards should track, see [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine).

The full Intelligence Brief covers the detailed benchmark comparisons, alignment assessment findings, the system card's behavioral incident taxonomy, and implications for enterprise AI governance frameworks.

## Sources

1. [Anthropic Frontier Red Team — Claude Mythos Preview](https://red.anthropic.com/2026/mythos-preview/). 2026.
2. [Anthropic — Project Glasswing](https://www.anthropic.com/glasswing). 2026.
3. [Fortune — Anthropic Mythos capabilities disclosure](https://fortune.com/2026/03/27/anthropic-leaked-ai-mythos-cybersecurity-risk/). 2026.
4. VentureBeat. Anthropic IPO timeline and commercial context reporting. venturebeat.com. 2026.
5. Cybench benchmark project. Capture-the-flag cybersecurity challenge results. github.com. 2026.
6. CyberGym benchmark documentation. Real-world vulnerability reproduction tasks. github.com. 2026.
7. Synthesized from Anthropic disclosures, system card contents, and independent security analyst commentary on frontier model cyber capabilities.
8. [The Hacker News — Project Glasswing Proved AI Can Find the Bugs (reports Anthropic's statement that over 99% remained unpatched at announcement)](https://thehackernews.com/2026/04/project-glasswing-proved-ai-can-find.html). April 2026.
9. [Anthropic — Claude Fable 5 and Mythos 5 (first public Mythos-class model; cyber safeguards via classifier routing; Mythos 5 to Glasswing partners)](https://www.anthropic.com/news/claude-fable-5-mythos-5). 9 June 2026.


---

# The End of Single-Vendor AI Stacks: Why Enterprises Need a Model Portfolio

Author: Dritan Saliovski · Published: 2026-03-25 · Category: AI & Data · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/multi-model-ai-strategy-enterprise-portfolio

> Single-vendor AI stacks create concentration risk enterprises don't yet see. A portfolio approach across cloud, open-source, and edge models is overdue.
In March 2026, three developments landed within days of each other: OpenAI released GPT-5.4 with native computer-use capabilities and a 272K-token context window, extensible to 1M tokens in Codex. Alibaba shipped the Qwen3.5 Small Model Series, four open-source models from 0.8B to 9B parameters that run locally on consumer hardware. And WordPress.com opened its content management system to autonomous AI agents through the Model Context Protocol. Together, these signal that the era of choosing a single AI vendor and building your stack around it is ending. Organizations that treat AI model selection as a one-time procurement decision are accumulating concentration risk they do not yet see on their risk registers.

## Key Takeaways

- GPT-5.4, released March 5, 2026, is OpenAI's first general-purpose model with native computer-use capabilities, it can autonomously operate desktop applications, browsers, and software across a 272K-token context window, extensible to 1M tokens in Codex (OpenAI, March 2026)
- Alibaba's Qwen3.5-9B, released March 2, 2026, outperforms OpenAI's 120B-parameter model on key reasoning benchmarks while running on a single consumer GPU under Apache 2.0 licensing (MarkTechPost, March 2026)
- The Qwen3.5 Small Series supports 201 languages, native multimodal capabilities, and up to 262,144 tokens of context, all available for on-device deployment with no cloud dependency (Alibaba Qwen Team, GitHub)
- WordPress.com's MCP integration now supports 19 write operations through any compatible AI client, Claude, ChatGPT, Cursor, or open-source alternatives, establishing the Model Context Protocol as a cross-vendor integration standard (TechCrunch, March 20, 2026)
- The model landscape now spans proprietary cloud APIs, open-source models deployable on-premise, and lightweight variants designed for mobile and edge devices, each with distinct cost, privacy, latency, and jurisdictional characteristics

<StatGrid>
  <Stat value="9B" label="Parameter model matching 120B-scale performance" source="MarkTechPost / Alibaba Qwen Team, March 2026" />
  <Stat value="201" label="Languages supported by Qwen3.5 Small Series" source="Alibaba Qwen Team, GitHub" />
  <Stat value="5" label="Major OpenAI model releases in six months" source="OpenAI release notes, Nov 2025 to Apr 2026" />
</StatGrid>

## The Proliferation Signal

The model landscape in early 2026 looks nothing like it did 18 months ago. OpenAI alone has released GPT-5.1 (November 2025), GPT-5.2 (December 2025), GPT-5.3-Codex (February 2026), GPT-5.4 (March 2026), and **GPT-5.5 (April 23/24, 2026)** — five major releases in six months. Anthropic released **[Claude Opus 4.7](https://www.anthropic.com/news/claude-opus-4-7) on 16 April 2026**. DeepSeek shipped a V4 Preview on April 24, 2026 demonstrating sustained Chinese-lab pace. Microsoft brought **Agent 365 to GA on 1 May 2026** and **Copilot Cowork to GA on 16 June 2026**, embedding multi-model orchestration (Anthropic Claude under the hood, with OpenAI and Microsoft models orchestrated alongside) into the largest enterprise productivity surface. Each release has different strengths, context windows, pricing tiers, and — increasingly — different governance postures and data-handling guarantees.

But the more structurally significant development is what is happening outside the proprietary API ecosystem. Alibaba's Qwen3.5 Small Series demonstrates that models with 9 billion parameters can match or exceed the performance of models 13 times larger on specific reasoning and multimodal benchmarks. The 9B variant scores 70.1 on MMMU-Pro visual reasoning; Google's Gemini 2.5 Flash-Lite scores 59.7 on the same benchmark. These models run on a single consumer-grade GPU, require no internet connection after download, and are licensed under Apache 2.0 for unrestricted commercial use.

This changes the economics and the governance calculus. A model that runs locally, processes data without sending it to a third-party cloud, and costs nothing per inference query is not competing on the same axis as a $2.50-per-million-token cloud API. They serve different purposes, and serious organizations will need both.

## Why Single-Vendor AI Stacks Create Concentration Risk

Organizations that have standardized on a single AI platform face four categories of risk that compound over time.

**Pricing and availability risk.** Cloud API pricing changes with each model generation. OpenAI's costs in this category were reported at $8.4 billion in 2025 with $14.1 billion projected for 2026, figures that originate in paywalled reporting by The Information and circulate through secondary outlets. Whether they cover inference specifically or a broader compute envelope could not be confirmed at primary source, so treat the absolute number as directional; the argument here rests on the direction of travel, not the magnitude. Those costs are passed to customers through token pricing. A platform that raises prices, changes rate limits, or deprecates a model version can disrupt production workflows with limited notice, as OpenAI did with GPT-5.2 Thinking, retired on 12 June 2026 with developers notified the day before and users auto-migrated to GPT-5.5, a retirement that never appeared on OpenAI's formal deprecations page at all.

**Data sovereignty and privacy risk.** Cloud-based inference sends input data to external infrastructure. For organizations subject to GDPR, [Sweden's Cybersecurity Act](/insights/sweden-cybersecurity-act-2025-nis2), DORA, or sector-specific data residency requirements, every API call is a data transfer that must be evaluated against regulatory obligations. Local models eliminate this transfer entirely.

**Reputational and political risk.** As the [ChatGPT-Claude episode in February 2026](/insights/ai-vendor-trust-political-risk-due-diligence) demonstrated, an AI vendor's government partnerships or ethical positioning can create reputational exposure for downstream customers. Single-vendor dependency means single-vendor reputational exposure.

**Capability mismatch.** No single model is optimal for every task. GPT-5.4 excels at complex, multi-step workflows with its 272K-token context window, extensible to 1M tokens in Codex, and its computer-use capabilities. Qwen3.5-4B is purpose-built for lightweight multimodal agents on edge devices. A coding-specific model, a local privacy-preserving model, and a frontier cloud model each serve distinct operational needs. Forcing all workloads through one vendor means overpaying for simple tasks and underperforming on specialized ones.

## What a Model Portfolio Looks Like in Practice

A portfolio approach treats AI model selection the way mature organizations treat cloud infrastructure: multi-provider by design, with workload allocation based on cost, performance, risk, and regulatory requirements.

**Tier 1, Frontier cloud models** for complex reasoning, long-context analysis, and agentic workflows where performance justifies cost. GPT-5.4, Claude Opus 4.7, Gemini 3.1 Pro, selected based on task-specific benchmarks, not brand loyalty.

**Tier 2, Mid-weight models** for production workloads requiring balance between capability and cost. This includes cloud-hosted models at lower price points (GPT-5.4 Mini, Claude Sonnet, Gemini Flash) and self-hosted open-source models like Qwen3.5-27B or Qwen3.5-35B for organizations with GPU infrastructure.

**Tier 3, Local and edge models** for tasks where data must not leave the device or network. Qwen3.5-9B on a workstation GPU for document processing, the 4B variant on laptops for field operations, or the 0.8B model on mobile devices for classification and triage. These models handle sensitive data processing, offline operation, and use cases where latency cannot tolerate a network round-trip.

The integration layer matters as much as model selection. The Model Context Protocol (MCP), originally developed by Anthropic and now adopted by WordPress.com, Cursor, and other platforms, is emerging as a vendor-agnostic standard for connecting AI models to external tools and data sources. Organizations investing in MCP-compatible integrations reduce their switching costs across model providers. For a deeper look at how [computer-use agents are changing enterprise operations](/insights/copilots-to-colleagues-computer-use-agents), the case for multi-model flexibility becomes even stronger.

## What to Do Now

Four actions position an organization to operate a model portfolio rather than a single-vendor dependency.

First, **audit current AI model usage**. Map every model integration across the organization, API calls, embedded models, third-party tools that use AI under the hood. Identify single-vendor concentration points.

Second, **evaluate local model feasibility**. For any workflow processing sensitive data, assess whether an open-source model deployed on existing infrastructure can meet performance requirements. The Qwen3.5 Small Series and similar open-weight models have crossed the capability threshold for many enterprise classification, summarization, and document processing tasks.

Third, **build vendor-agnostic integration layers**. Where possible, abstract AI model calls behind an internal API that can route to different providers based on workload type, cost, and data sensitivity. MCP adoption is one path. Internal routing layers are another.

Fourth, **incorporate model portfolio risk into governance frameworks**. AI model selection should be a standing item in technology governance reviews, not a one-time procurement decision. As model capabilities evolve monthly, the rationale for today's vendor choice may not hold in six months. Organizations already working through [enterprise AI data governance](/insights/ai-data-governance-enterprise-guide) should extend those frameworks to cover model portfolio risk.

If you are evaluating how to structure your organization's AI model portfolio, or need to assess concentration risk in your current AI stack, reach out to discuss.

## Sources

1. [OpenAI - Introducing GPT-5.4](https://openai.com/index/introducing-gpt-5-4/). 2026-03-05.
2. [Fortune - OpenAI launches GPT-5.4, its most powerful model for enterprise agentic work](https://fortune.com/2026/03/05/openai-new-model-gpt5-4-enterprise-agentic-anthropic/). 2026-03-05.
3. [Fortune - OpenAI releases GPT-5.5](https://fortune.com/2026/04/23/openai-releases-gpt-5-5/). 2026-04-23.
4. [MarkTechPost - Alibaba just released Qwen 3.5 Small models](https://www.marktechpost.com). 2026.
5. [Alibaba Qwen Team - Qwen GitHub Repository](https://github.com/QwenLM). 2026.
6. [TechCrunch - WordPress.com now lets AI agents write and publish posts, and more](https://techcrunch.com/2026/03/20/wordpress-com-now-lets-ai-agents-write-and-publish-posts-and-more/). 2026-03-20.
7. [WordPress.com - Use an AI agent to manage your content](https://wordpress.com/blog/2026/03/20/ai-agent-manage-content/). 2026-03-20.
8. [The Next Web - WordPress.com MCP write capabilities for AI agents](https://thenextweb.com/news/wordpress-com-mcp-write-capabilities-ai-agent). 2026-03-20.
9. [Anthropic — Claude Opus 4.7](https://www.anthropic.com/news/claude-opus-4-7). April 16, 2026.
10. [Microsoft — Microsoft Agent 365 Now Generally Available: Expanded Capabilities and Integrations](https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/). May 1, 2026 GA.
11. [Microsoft — Copilot Cowork Is Now Generally Available](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/). June 16, 2026 GA.
12. [GeekWire — Microsoft 365 Copilot and the End of the Single-Model Era in Enterprise AI](https://www.geekwire.com/2026/microsoft-365-copilot-and-the-end-of-the-single-model-era-in-enterprise-ai/). 2026.


---

# Trust Shockwaves in AI Platforms: Why Vendor Risk Now Includes Political Exposure

Author: Dritan Saliovski · Published: 2026-03-22 · Category: AI & Data · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-vendor-trust-political-risk-due-diligence

> AI platform loyalty can fracture overnight. The ChatGPT-Claude shift shows why vendor evaluation must now include political and reputational risk.
On February 28, 2026, U.S. uninstalls of the ChatGPT mobile app surged 295% in a single day after OpenAI announced a partnership with the U.S. Department of Defense. Downloads of Anthropic's Claude jumped 51% over the same period, and the app reached the number one position on the U.S. App Store for the first time. The episode demonstrated that AI platform loyalty can fracture overnight based on a single partnership decision, and that political and ethical positioning is now a material factor in AI vendor evaluation.

## Key Takeaways

- ChatGPT U.S. uninstalls spiked 295% day-over-day on February 28, 2026, more than 30 times the app's average daily uninstall rate of 9% (Sensor Tower via TechCrunch, March 2, 2026)
- One-star reviews for ChatGPT surged 775% on the same day; five-star reviews dropped by half (Sensor Tower via TechCrunch)
- Claude's U.S. downloads surpassed ChatGPT's daily totals for the first time; Claude held the number one App Store position through March 2, 2026 (Appfigures via TechCrunch)
- Claude reached the top free iPhone app ranking in six additional countries: Belgium, Canada, Germany, Luxembourg, Norway, and Switzerland (Appfigures, Technology.org, March 2026)
- The backlash followed Anthropic's public refusal to partner with the DoD, citing concerns about autonomous weapons and mass surveillance (Business Standard, March 3, 2026)

<StatGrid>
  <Stat value="295%" label="ChatGPT uninstall spike in a single day" source="Sensor Tower via TechCrunch, March 2026" />
  <Stat value="775%" label="Surge in one-star ChatGPT reviews" source="Sensor Tower via TechCrunch, March 2026" />
  <Stat value="51%" label="Claude download increase during the same period" source="Appfigures via TechCrunch, March 2026" />
</StatGrid>

## What Happened: 48 Hours That Shifted Market Share

OpenAI's partnership with the Department of Defense became public on February 27, 2026. By the following day, Sensor Tower data showed that ChatGPT's U.S. uninstalls had increased 295% compared to the previous day's rate. For context, the app's average daily uninstall growth over the prior 30 days was 9%. Before the news broke, ChatGPT downloads had been growing at 14% day-over-day.

The download trajectory reversed immediately. ChatGPT's U.S. downloads fell 13% on Saturday and slipped another 5% on Sunday. Simultaneously, Claude's downloads rose 37% on February 27 and 51% on February 28. A separate analytics provider, Appfigures, reported that Claude's daily U.S. downloads exceeded ChatGPT's for the first time during the surge window.

App review data amplified the signal. One-star reviews for ChatGPT increased 775% on Saturday and doubled again on Sunday. Five-star reviews dropped 50% over the same period. The behavioral data, uninstalls, download shifts, review patterns, was consistent across multiple analytics providers and reflected a clear sentiment shift.

## Why This Is a Vendor Risk Issue, Not Just a PR Story

Consumer app metrics are one thing. Enterprise procurement decisions are another. But the ChatGPT-Claude episode reveals a dynamic that B2B buyers cannot afford to treat as noise.

AI platforms are increasingly infrastructure, not tools. Organizations building workflows on GPT-4, Claude, Gemini, or open-source models are embedding those models into customer-facing products, internal processes, compliance workflows, and data pipelines. Switching costs are real. When the platform's reputational position shifts, it creates a category of risk that most vendor evaluation frameworks do not currently capture. For a broader look at how organizations are structuring their [AI data governance frameworks](/insights/ai-data-governance-enterprise-guide), the structural dependencies become clearer.

Three dimensions of this risk are worth examining. First, **partnership exposure**: an AI vendor's government, defense, or law enforcement relationships can create reputational contagion for downstream customers. A financial services firm using an AI platform publicly associated with defense surveillance faces questions from regulators, clients, and talent that it did not anticipate during procurement. Second, **jurisdiction and data governance**: as AI vendors pursue government contracts, questions about data handling, model access, and audit rights become more complex. Enterprises need to understand whether their data environments are architecturally separated from government-contracted infrastructure. Third, **switching feasibility**: the speed of the ChatGPT-Claude migration was enabled partly by emerging data portability tools and the relative interchangeability of chat interfaces. Enterprise integrations, fine-tuned models, custom tool chains, embedded API calls, are far harder to migrate. The deeper the integration, the higher the exposure.

## What B2B Buyers Should Add to AI Vendor Evaluation

Most enterprise AI vendor assessments cover model performance, data privacy, security certifications (SOC 2, ISO 27001), and pricing. The February 2026 episode suggests that a fifth dimension, **platform trust and political risk**, deserves structured evaluation.

Practical additions to vendor due diligence include the following. **Government and defense relationship disclosure**: does the vendor have active or pending contracts with defense, intelligence, or law enforcement agencies? Are customer data environments architecturally separated from government-contracted infrastructure? **Ethical positioning and policy commitments**: has the vendor published and maintained a clear use-case policy (e.g., Anthropic's Acceptable Use Policy, OpenAI's usage policies)? How have those policies evolved over time, and what governance mechanisms exist to change them? **Switching cost and portability assessment**: what is the estimated time and cost to migrate from this vendor to an alternative? Are conversation histories, fine-tuned model weights, and custom configurations exportable? What vendor lock-in mechanisms exist (proprietary APIs, model-specific prompt engineering, embedded tool chains)?

None of this is about taking a political position on defense partnerships. Reasonable organizations will differ on whether AI should be used in defense contexts. The point is that AI vendor decisions now carry reputational, regulatory, and operational risks that extend beyond technical performance, and procurement frameworks should reflect that reality. Organizations evaluating these risks should also consider whether a [multi-model AI strategy](/insights/multi-model-ai-strategy-enterprise-portfolio) reduces their single-vendor exposure. For how regulatory frameworks are formalizing vendor jurisdiction and origin risk across NIS2, DORA, CRA, and the revised Cybersecurity Act, see [four frameworks, one vendor](/insights/four-frameworks-one-vendor-eu-regulatory-exposure).

## The Broader Pattern: Platform Trust as Competitive Leverage

The February 2026 data point is not isolated. It fits a broader pattern in which AI platform differentiation is shifting from pure model capability toward trust, transparency, and alignment. As frontier models converge on performance benchmarks, the factors that drive platform selection increasingly include data governance practices, transparency on training data, ethical use policies, and organizational governance structures. For leaders still building their understanding of the AI agent landscape, our [guide to AI agents for business leaders](/insights/ai-agents-business-leaders-guide) provides the foundational context.

For enterprise buyers, this means that AI vendor evaluation is no longer a purely technical exercise. It requires the same approach organizations apply to other critical infrastructure decisions: ongoing monitoring, periodic reassessment, and contractual provisions that account for reputational and political risk alongside performance and uptime.

The US government has now formalized this dynamic. On [April 25, 2026, the US State Department issued a worldwide diplomatic cable](https://www.cnbc.com/2026/04/25/us-global-warning-alleged-china-ai-theft.html) naming DeepSeek, Moonshot AI, and MiniMax as specific intellectual-property and national-security risks, instructing US embassies and partner governments to share the warning with allied procurement bodies. This is a different kind of signal from a press cycle: it is a formal government-level designation that procurement teams now have to track. A vendor passing technical evaluation but appearing on a State Department cable becomes, by definition, a different procurement category — one where the trust question has already been answered by an authority outside the buyer's organization.

If you are evaluating AI vendor risk as part of a broader technology governance or due diligence process, reach out to discuss.

## Sources

1. [TechCrunch — ChatGPT uninstalls surged by 295% after DoD deal](https://techcrunch.com/2026/03/02/chatgpt-uninstalls-surged-by-295-after-dod-deal/). 2026-03-02.
2. Business Standard. ChatGPT uninstalls jump 295% after Pentagon deal; Claude tops US charts. business-standard.com. 2026.
3. Technology.org. ChatGPT Uninstalls Spike 295% After DoD Deal. technology.org. 2026.
4. LAFFAZ. ChatGPT's 295% Uninstall Shock and How Claude Turned It Into a Strategic Growth Moment. laffaz.com. 2026.
5. Sensor Tower. Market intelligence data cited across sources. sensortower.com. 2026.
6. Appfigures. App download analytics cited across sources. appfigures.com. 2026.
7. [CNBC — US issues global warning over alleged China AI theft (DeepSeek, Moonshot AI, MiniMax)](https://www.cnbc.com/2026/04/25/us-global-warning-alleged-china-ai-theft.html). April 25, 2026.


---

# AI Data Governance: The Same Problem Enterprises Already Solved

Author: Dritan Saliovski · Published: 2026-03-10 · Category: AI & Data · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-data-governance-enterprise-guide

> Enterprise AI data concerns mirror cloud migration fears of 2010-2016. The governance discipline is identical, only the processing engine changed.
Enterprise concern over where data goes when AI tools process it has reached boardroom intensity. The anxiety is understandable, but it is not new. Organizations navigated nearly identical questions during the cloud migration wave of 2010-2016, and before that, every time they deployed an endpoint security agent that collected telemetry and sent it to a vendor's cloud for analysis. The core governance question has always been the same: where does your data start, where does it end up, who touches it in between, and under what terms?

## Key Takeaways

- Enterprise AI data concerns mirror the cloud migration fears of 2010-2016, objections that ended not in avoidance but in near-universal adoption once governance frameworks caught up
- Anti-malware and EDR vendors have collected endpoint telemetry, including behavioral data, file hashes, process trees, and network connections, and used it to train detection models for over two decades
- Microsoft 365 already processes enterprise email in external infrastructure, applies vendor-side search and analytics tooling, and inherits user permissions across cloud boundaries, the same architectural pattern LLMs now follow
- Gartner projects spending on AI governance platforms will reach $492 million in 2026, surpassing $1 billion by 2030
- More than 80% of enterprise workers use unapproved AI tools at work, with 47% accessing them through personal accounts that bypass enterprise controls entirely (UpGuard, 2025)
- The EU AI Act, ISO/IEC 42001, and the NIST AI Risk Management Framework provide structured governance models that extend, not replace, existing information security frameworks

<StatGrid>
  <Stat value="80%+" label="Of enterprise workers use unapproved AI tools at work" source="UpGuard, 2025" />
  <Stat value="$492M" label="Projected AI governance platform spending in 2026" source="Gartner, Feb 2026" />
</StatGrid>

## The Pattern Repeats

Between 2010 and 2016, enterprise IT teams resisted cloud adoption with a consistent set of objections: our data cannot leave our premises, we do not know where the provider stores it, we cannot verify who accesses it, and the regulatory implications are unclear. These were legitimate concerns at the time. They are also, nearly word for word, the objections now raised about AI.

The parallel runs deeper than rhetoric. Early cloud adoption followed a pattern where developers spun up sandbox environments without security review, those sandboxes became production systems, and organizations retroactively discovered they had moved sensitive data into environments they did not govern. AI adoption is tracking the same curve. More than 80% of enterprise workers now use unapproved AI tools at work, with 47% accessing them through personal accounts that bypass enterprise controls entirely. Organizations are discovering after the fact that proprietary information has entered systems with unclear retention and training policies.

The difference is that enterprises eventually solved cloud governance, not by avoiding the cloud, but by building the governance frameworks to operate within it. The same trajectory applies to AI. Avoidance is not a strategy. Governance is.

## Training on Your Data Is Not New

The narrative that AI vendors consuming enterprise data represents something unprecedented does not withstand scrutiny. The anti-malware industry established this model decades ago.

Endpoint detection and response platforms, CrowdStrike, Microsoft Defender, SentinelOne, and their predecessors, operate by installing agents on every managed endpoint in an organization. These agents continuously collect telemetry: process executions, command-line activity, network connections, file modifications, registry changes, and user behavior patterns. That telemetry is transmitted to centralized cloud infrastructure where it is aggregated, correlated, and used to train detection models. Those models learn from the behavioral data of one organization to improve detection across all customers.

This is, structurally, the same data flow that concerns enterprises about AI: your operational data leaves your environment, is processed by a vendor's infrastructure, and is used to improve a shared model. The security industry has operated this way since signature-based antivirus gave way to behavioral detection in the mid-2000s. Enterprises accepted it because the value proposition, threat detection and response, was clear, and the vendor relationship was governed by contracts that specified data handling obligations.

The same governance discipline applies to AI. The question is not whether a vendor processes your data. The question is whether you know what data they receive, what they can do with it, how long they retain it, and what contractual protections govern the relationship.

## The Email Precedent

For organizations already using Microsoft 365, the architectural pattern behind LLM-based AI tools is not theoretical, it is already running in production.

Exchange Online stores enterprise email on Microsoft infrastructure. That email is indexed, searchable, and processed by Microsoft's tooling. Search queries hit data in a cloud environment. Analytics and compliance tools operated by the vendor run across that data. Sensitivity labels, retention policies, and access controls are enforced by the platform, not the customer's on-premises infrastructure.

Microsoft 365 Copilot layers LLM processing on top of this existing architecture. Prompts and responses are processed within the Microsoft 365 service boundary. The system respects existing identity models and permissions, inherits sensitivity labels, and, according to Microsoft's published data protection commitments, does not use prompts, responses, or data accessed through Microsoft Graph to train foundation models.

The structural similarity is the point. Email already operates in a model where enterprise data sits in a vendor's cloud, is processed by vendor tools, and is subject to vendor-enforced access controls. AI adds a processing layer, but it does not fundamentally alter the trust architecture. Organizations that governed their email environment effectively, with data classification, access controls, retention policies, and vendor contract review, already have the governance muscle for AI. Those that treated email migration as a lift-and-shift without governance are now dealing with the same gaps amplified by AI's broader data access patterns.

## What Actually Matters: The Data Lifecycle

The productive framing is not "should AI touch my data," it is "do I understand my data lifecycle." This applies whether the processing engine is a cloud storage platform, an EDR agent, an email system, or a large language model.

Six questions define the governance perimeter:

| Question | What to assess |
|---|---|
| **Origin** | Where does the data come from? Is it generated internally, collected from customers, derived from third-party sources, or synthesized from multiple inputs? |
| **Processing** | Where is the data processed? On-premises, in a vendor's cloud region, or routed across jurisdictions? Microsoft announced in-country processing for Microsoft 365 Copilot across 15 countries by 2026. |
| **Access** | Who can access data at each processing stage? Does the vendor's platform inherit your existing identity and permission model? |
| **Contractual boundaries** | Can data be used for model training? Is there a zero-data-retention commitment? What happens during subprocessor relationships? |
| **Regulatory scope** | Which frameworks apply? GDPR, the EU AI Act, DORA, sector-specific requirements each impose specific obligations on AI data processing. |
| **End-of-relationship** | What happens to your data when the vendor relationship terminates? Is data returned, deleted, or retained? |

Organizations that can answer these six questions for their current cloud and email infrastructure can extend the same framework to AI. Those that cannot have a governance gap that predates AI entirely.

## Where Existing Frameworks Position You

AI data governance does not require starting from zero. The frameworks enterprises already use for information security and regulatory compliance cover significant ground.

| Framework | Coverage | AI-specific gap |
|---|---|---|
| **ISO 27001:2022** | Access management, asset classification, supplier relationships, operational security | Does not address model transparency, training data provenance, algorithmic bias, or ML-specific data retention |
| **ISO/IEC 42001:2023** | Purpose-built AI management system standard, certifiable framework for AI development, deployment, and operations | Fills the ISO 27001 gap; requires organizational maturity to implement |
| **NIST AI RMF 1.0** | Structured AI risk identification, assessment, and mitigation | Foundational reference without certification requirement; widely adopted in the US |
| **EU AI Act** | Binding legal obligations for prohibited practices (Feb 2025), Article 50 transparency (Aug 2026), and high-risk AI systems (Annex III from Dec 2027; Annex I from Aug 2028, following the Digital Omnibus on AI) | Classification, documentation, and transparency requirements intersect directly with data governance |

The pattern across all four frameworks is consistent: AI governance is an extension of existing governance, not a replacement. ISO/IEC 42001:2023 is designed to sit alongside ISO 27001, sharing the Annex SL management-system structure, so much of an existing ISMS (scope definition, risk assessment, internal audit, management review) is directly reusable. The remaining gaps, model provenance, training data controls, automated decision-making transparency, are targeted additions, not a ground-up rebuild.

## What This Means in Practice

Five actions apply to any organization using or planning to use AI tools with enterprise data.

**Map your data flows.** Document where enterprise data enters AI systems, how it is processed, and where outputs are stored. Include both sanctioned tools and shadow AI, employees using public LLM tools with corporate data without IT oversight.

**Audit vendor contracts.** Review data processing agreements for every AI tool in use. Identify whether the vendor retains data, uses it for model training, shares it with subprocessors, or makes zero-data-retention commitments. Pay specific attention to the distinction between "we don't use your data to train models" and "we don't retain your data after processing," these are different commitments.

**Classify before you process.** Apply data classification to information before it enters AI systems, not after. Sensitivity labels, access controls, and retention policies should govern what data AI tools can access, not just what humans can see.

**Extend your ISMS.** If ISO 27001 or an equivalent framework is in place, extend its scope to cover AI tool usage. Add AI-specific controls for model risk, training data governance, and automated decision-making. ISO/IEC 42001 provides the structured approach for this extension.

**Establish acceptable use policies.** Define what enterprise data can and cannot be entered into AI tools, which tools are sanctioned, and what approval process governs new AI tool adoption. This is the AI equivalent of the cloud governance policies enterprises built a decade ago, and the organizations that built them early avoided the most expensive mistakes.

**The control layer is shipping.** [Microsoft Purview DSPM for AI](https://techcommunity.microsoft.com/blog/microsoft-security-blog/secure-data-as-ai-scales-new-microsoft-purview-innovations-at-rsa-2026/4503665) reached general availability in May 2026 (announced at RSA 2026), providing unified visibility into AI data usage across Microsoft 365 Copilot, custom agents, and shadow AI tooling — with **native third-party signals from BigID, Cyera, OneTrust, and Varonis** for organizations not standardized on Microsoft. This is the first major enterprise data-governance product to ship with AI as a first-class data plane, not a bolt-on. Organizations now have a concrete reference architecture to compare against when running the five actions above; if your current AI data inventory cannot answer the questions a Purview DSPM dashboard answers, that is the gap to close.

For organizations deploying AI agents, which access enterprise data at a scale beyond what chatbots or traditional AI tools handle, the governance principles above become even more critical. Our analysis of [AI agent security risks](/insights/ai-agent-security-risks-enterprise) covers the specific exposure, while the [security-first deployment framework](/insights/ai-agent-deployment-security-framework) provides actionable controls. For a case study of what happens when enterprise AI platforms outpace security governance, see the [McKinsey Lilli breach analysis](/insights/mckinsey-lilli-breach-enterprise-ai-security). Organizations running multi-vendor AI environments should also evaluate [how vendor trust and political risk affect procurement](/insights/ai-vendor-trust-political-risk-due-diligence) and whether a [multi-model portfolio strategy](/insights/multi-model-ai-strategy-enterprise-portfolio) reduces concentration risk.

The full Intelligence Brief covers the complete data lifecycle mapping framework, vendor contract assessment checklist, AI governance maturity model, and regulatory intersection analysis across ISO 27001, ISO/IEC 42001, NIST AI RMF, and the EU AI Act.

## Sources

1. [Gartner - AI Governance and Data Breach Predictions](https://www.gartner.com/en/newsroom/press-releases/2026-01-21-gartner-predicts-by-2028-50-percent-of-organizations-will-adopt-zero-trust-data-governance-as-unverified-ai-generated-data-grows). 2026-01-21.
2. Gartner. [Global AI Regulations Fuel Billion-Dollar Market for AI Governance Platforms](https://www.gartner.com/en/newsroom/press-releases/2026-02-17-gartner-global-ai-regulations-fuel-billion-dollar-market-for-ai-governance-platforms). 17 February 2026.
3. UpGuard. Shadow AI and Unapproved AI Tool Usage in Enterprises. upguard.com. 2025.
4. [ISO - ISO/IEC 42001:2023 Artificial Intelligence Management System](https://www.iso.org/standard/81230.html)
5. NIST. AI Risk Management Framework (AI RMF 1.0). nist.gov. 2023.
6. [European Commission - EU AI Act](https://digital-strategy.ec.europa.eu/en/policies/regulatory-framework-ai)
7. [ISO - ISO/IEC 27001:2022 Information Security Management](https://www.iso.org/standard/27001)
8. [Microsoft - Microsoft 365 Copilot Data Protection](https://learn.microsoft.com/en-us/microsoft-365-copilot/microsoft-365-copilot-privacy)
9. [Microsoft Security — Secure Data as AI Scales: New Microsoft Purview Innovations at RSA 2026](https://techcommunity.microsoft.com/blog/microsoft-security-blog/secure-data-as-ai-scales-new-microsoft-purview-innovations-at-rsa-2026/4503665). May 2026 GA.


# Category: M&A Due Diligence

> Cybersecurity and technology due diligence frameworks for deal teams, PE firms, and acquisition targets.

---

# Your AI Story Is an Examinable Representation, and the Exam Year Ends 30 September

Author: Dritan Saliovski · Published: 2026-07-29 · Category: M&A Due Diligence · Reading time: 10 min read · Canonical: https://www.innovaiden.com/insights/sec-ai-washing-exam-priorities-private-equity

> Nothing new landed this summer. The SEC has been examining the accuracy of AI representations all year, and the fiscal year closes on 30 September. That is the point.
For three years, the AI question in private equity pointed outward. Deal teams learned to ask what a target's models did, where its training data came from, whether its AI claims survived contact with the code, and what regulatory exposure came attached. That was the right question and it remains one.

The examination cycle now running adds a second question, pointed the other way. It is worth being blunt about the timing, because the honest version is more useful than a manufactured one: **nothing new landed this summer.** The SEC's Division of Examinations published its fiscal year 2026 priorities on 17 November 2025. What makes late July the moment to read them is not novelty. It is the calendar. The Division's fiscal year closes on **30 September 2026**, which means firms have been inside this examination year since October, roughly three-quarters of it has already elapsed, and the next set of priorities will publish in the autumn. If your firm has not reconciled its AI claims against its AI reality, it has had ten months to do it and has about two left.

What the document actually says on the subject is short. In the Division's own words: "With respect to AI, the Division will focus on recent advancements in AI and will review for accuracy registrant representations regarding their AI capabilities or AI." Elsewhere it commits to reviewing controls to mitigate new risks associated with artificial intelligence and polymorphic malware attacks, alongside governance practices, data loss prevention, access controls, account management and responses to cyber-related incidents.

You will see that summarised in the trade press and in law-firm alerts as a crackdown on **AI washing**. That phrase is worth handling carefully: it does not appear anywhere in the SEC's document. It is the securities bar's shorthand, used notably in Goodwin's client alert, which characterises the Division as scrutinising misleading claims about firms' AI capabilities or the role of AI in investment processes. The gloss is a fair reading of the exposure and we use it here as such. It is not regulatory language, and a firm that repeats it as a direct quotation from the SEC is making exactly the category of imprecise attribution the underlying priority is about.

Read the actual sentence as a sponsor rather than as a compliance officer and it resolves into one uncomfortable question. Every deck, every fundraising conversation, every website paragraph in which your firm described what AI does for it is a representation that someone may ask you to evidence. Not because anyone suspects you of lying, but because the Division said it would check, and it has been checking since October.

## Key Takeaways

- **Nothing new happened this summer.** The FY2026 priorities published **17 November 2025**; the fiscal year ends **30 September 2026**. The urgency is calendar, not news: about two months of this exam year remain
- The SEC's actual language is narrow: it will **"review for accuracy registrant representations regarding their AI capabilities or AI."** The term **AI washing** is law-firm shorthand for that exposure, not regulatory wording, and should not be quoted as the SEC's own
- The test is substance over description: a firm claiming AI-driven investment processes would be expected to show that **AI tools genuinely influence decisions**, not that they supplement research
- The same priorities cover **controls** for AI and polymorphic malware, plus **governance, data loss prevention, access controls, account management and incident response**, and the **2024 amendments to Regulation S-P**
- For sponsors, the data flowing through AI tools is **deal pipeline, target financials, valuation models, diligence findings, investor communications and MNPI**, frequently through tools adopted at the desk rather than through procurement
- The work is a **reconciliation**: every AI claim the firm has made, set against what the firm actually does, with the gap closed while closing it is still an editorial choice rather than a response to a deficiency letter

<StatGrid>
  <Stat value="30 Sept" label="Close of the SEC Division of Examinations fiscal year 2026, the cycle whose priorities include the accuracy of registrant AI representations" source="SEC priorities published 17 Nov 2025" />
  <Stat value="54%" label="Of PE risk managers and CISOs said up to a quarter of their portfolio companies had a cyber incident in the prior year" source="QBE North America / Wakefield Research, 300 respondents, fielded Dec 2024–Jan 2025" />
  <Stat value="$2.1M" label="Average financial impact per cyber incident across private equity, with an 80% rate of hold-period disruption" source="Kroll, 325 PE executives, published early 2026" />
  <Stat value="32%" label="Share of organizations' data security incidents that involve the use of generative AI tools" source="Microsoft Data Security Index, published Jan 2026" />
</StatGrid>

## What the Division Actually Said

The FY2026 priorities are not an AI document, and it is worth keeping the proportion right. They cover fiduciary duty, standards of conduct, the custody rule, compliance with new rules including the 2024 amendments to Regulation S-P, and a continued emphasis on newly registered advisers building robust compliance programs. AI appears as a cross-cutting theme rather than as the headline.

But where it appears, it appears with unusual specificity for a priorities document. Two distinct threads run through it.

The first is representational, and it is one sentence: the Division will focus on recent advancements in AI and will review for accuracy registrant representations regarding their AI capabilities or AI. That is the whole of it. Everything else in circulation about AI washing is the securities bar reading that sentence and telling you what it implies, which is a legitimate and useful exercise so long as you know which is which. The worked example that has circulated in the law-firm commentary is instructive: a firm claiming to use AI for portfolio management would be expected to demonstrate that AI tools genuinely influence investment decisions, rather than functioning as supplemental research that a human ignores. The test is whether the description matches the mechanism.

The second is operational. The Division said it will review controls to mitigate new risks associated with artificial intelligence and polymorphic malware attacks, and, in the cybersecurity portion, registrants' policies and procedures, governance practices, data loss prevention, access controls, account management, and responses to cyber-related incidents including ransomware. It also flagged whether firms have adequate policies and procedures to monitor AI use across functions including fraud prevention and detection, back-office operations, anti-money laundering and trading.

Those two threads are usually discussed separately and they should not be. An examination that tests whether your AI story is accurate, in the same visit as it tests whether the data moving through your AI tools is controlled, produces one combined finding: this firm described a capability it cannot evidence, running on data it cannot account for. That is a materially worse outcome than either finding alone.

## Why This Lands Harder on a Sponsor

The generic version of this risk applies to any adviser. The sponsor-specific version is sharper, for a reason that has nothing to do with the sophistication of the AI and everything to do with the sensitivity of the inputs.

Consider what actually moves through a private markets firm's daily workflow: proprietary deal pipeline, target company financials under NDA, valuation models, diligence findings, management presentations, LP communications, and material non-public information about both public and private companies. This is the material a deal professional is most tempted to hand to an AI tool, because summarising a 200-page data room or reconciling three versions of a model is exactly the work these tools are good at.

Now recall how those tools generally entered the firm. Not through procurement, in most cases, and not through a security review. They arrived because an associate found something useful and used it, which is the shadow-AI pattern we set out in [building a shadow AI risk register](/insights/shadow-ai-risk-register-governance). The result is that a firm's most confidential material can be flowing through systems that its own compliance function has not inventoried, at a moment when an examiner has said they will ask about data loss prevention, access controls and account management. Microsoft's Data Security Index, published in January 2026, puts the general prevalence at 32% of surveyed organizations' data security incidents now involving generative AI tools, against 47% of security leaders implementing generative-AI-specific controls, up 8 percentage points year over year. The controls are being built, but they are being built behind the adoption.

None of this requires anyone to have behaved badly. It requires only that adoption outpaced governance, which it did nearly everywhere.

## The Portfolio Side Does Not Wait for the Exam

Set the fund-level exposure next to what the portfolio is doing, because the two are usually managed by different people and are converging on the same investment committee.

The base rates are not marginal, and they are worth reading with their vintages attached, because a composite of surveys fielded across two different years is not a snapshot of today.

**QBE North America**, in fieldwork run by Wakefield Research between 13 December 2024 and 9 January 2025, surveyed 300 risk managers and CISOs at private equity firms managing between 1 billion and 50 billion dollars in assets. 54% reported that up to a quarter of their portfolio companies had experienced a cyber incident or attack in the previous 12 months, and 23% put it between a quarter and a half. Note what "the previous 12 months" means given the fielding dates: this is a picture of calendar 2024, and should be read as a baseline rather than as current conditions.

**Kroll**, surveying 325 private equity executives and publishing in early 2026, found that 80% had experienced disruption tied to cybersecurity risk during the hold period in the past year, that nearly 70% saw incidents increase year over year with 22% describing the increase as significant, and that the average financial impact was 2.1 million dollars per incident, with a 53% chance of exceeding 500,000 dollars and a 13% chance of exceeding 5 million.

**ACA's** benchmarking work across more than 300 portfolio companies in 18 industries and 12 countries found half in the elevated or high cyber risk categories. That headline is more often quoted than understood, and honesty requires the caveat: ACA notes that its portfolio companies split roughly evenly between lower- and higher-risk bands, and that this balance is expected, because the underlying 1-to-100 scoring model is designed so that most companies land in the middle. The finding is a useful distribution to benchmark your own holdings against. It is not evidence that half the industry is in trouble, and anyone presenting it that way to an investment committee should expect to be corrected.

Taken together, and allowing for their different vintages, those numbers describe an environment in which hold-period cyber events are an expected cost rather than a tail risk, which changes what "we take cybersecurity seriously" has to mean when a sponsor says it to an LP or writes it in a fund document. It is also the context in which the liability question we examined in [the Bain and PowerSchool ruling](/insights/pe-sponsor-cyber-liability-bain-powerschool) matters: sponsor-level exposure for portfolio-level incidents is no longer purely theoretical, and a sponsor that has described its portfolio cyber oversight program is making another representation of exactly the kind the Division said it would test.

## What Evidence Looks Like

The gap that catches firms is rarely dishonesty. It is that a claim made in good faith has never been reduced to evidence, because nobody expected to have to produce it. The remedy is to do that reduction now, on your own timetable.

| The claim you have made | What supports it | Where firms come up short |
|---|---|---|
| "We use AI in sourcing and screening" | Tool inventory, records showing the output reaches a decision-maker, description of how it ranks or filters | The tool is used by two people occasionally; the deck implies a firmwide capability |
| "AI accelerates our diligence" | Documented workflow, evidence of use on named deals, confidentiality controls on the documents processed | No record of which data rooms were processed through which tool, or under what terms |
| "Our AI is governed by a formal policy" | The policy, its approval date, training records, monitoring evidence | The policy exists and was circulated; nothing evidences that it is followed |
| "We monitor portfolio company cyber risk" | Assessment cadence, findings, remediation tracking, escalation path to the IC | Annual questionnaires with no verification and no consequence for a poor answer |
| "Our vendors are diligenced" | Vendor assessments covering AI subprocessors, data handling and retention | AI tools adopted at desk level never entered the vendor process at all |

The pattern is consistent across the column on the right: the claim is directionally true and evidentially thin. That is a survivable position if you fix it before you are asked, and an expensive one if you do not.

## What Changes for the Investment Committee

**Reconcile the claims first, because it is the cheapest thing on this list.** Assemble every statement the firm has made about AI, in marketing, fundraising materials, Form ADV, investor reporting and the website, and set them beside an honest inventory of what the firm does today. Where a claim is supported, capture the evidence. Where it overstates, edit it now. This is a few weeks of work and it removes the single most avoidable finding in the entire category. The two months to 30 September are enough time to do it properly; a deficiency letter is not a schedule you control.

**Inventory the tools before the examiner does.** You cannot answer questions about data loss prevention, access control or account management for tools you have not enumerated. The desk-level adoption is where the confidential material actually went, so an inventory that only covers procured systems is not an inventory.

**Decide, explicitly, what may touch MNPI and confidential deal material.** Not a general AI policy, a specific rule about the data categories that matter in this business, with the tooling to enforce it. Information-barrier discipline is not a new competence for a private markets firm; it just has to be extended to a tool category that arrived faster than the policy did.

**Hold the portfolio question to the same evidentiary standard as the fund question.** If the firm has represented that it oversees portfolio cyber risk, that representation needs assessments, findings, remediation and escalation behind it. The base rates above make the difference between a real program and a questionnaire visible on a normal timescale, not a theoretical one. The outward-facing version of this discipline, the questions to ask a target, is set out in [the questions an investment committee should ask about AI risk](/insights/investment-committee-questions-ai-risk) and [AI diligence for PE deal teams](/insights/ai-diligence-pe-deal-teams); this is the same rigour turned around and applied to the firm making the assessment.

## The Reasonable Version of This

It would be easy to read the priorities as a signal to say nothing about AI, on the theory that a claim not made cannot be inaccurate. That is the wrong lesson and a competitively bad one, since capability that genuinely exists is worth describing and LPs are entitled to know how their manager works.

The lesson is narrower and more useful: describe what you actually do, and keep the evidence that you do it. A firm that says "we use AI to accelerate first-pass screening and to summarise diligence materials, under a policy that excludes MNPI from third-party tools, with these controls" has made a claim that is specific, defensible and, not incidentally, more credible to a sophisticated investor than the vaguer alternative. Precision is the compliance posture and the commercial one at the same time.

## How Innovaiden Approaches It

Innovaiden's AI representation and controls review runs the reconciliation described above as a defined exercise. It collects the firm's AI claims across marketing, fundraising, regulatory filings and investor materials; builds an honest inventory of the AI tools actually in use, including those adopted outside procurement; maps each claim to the evidence that would support it and identifies where that evidence does not yet exist; and assesses the controls around the data those tools touch, with particular attention to deal material and MNPI. For sponsors, the same review extends to the portfolio oversight program, so that what the firm says about monitoring portfolio cyber risk is backed by assessments, findings and an escalation path rather than by an annual questionnaire. The output is a claim-by-claim position: supported, supportable with work, or to be corrected now.

## Sources

1. [SEC Division of Examinations — Examination Priorities, Fiscal Year 2026](https://www.sec.gov/files/2026-exam-priorities.pdf). November 2025.
2. [SEC — Division of Examinations Announces 2026 Priorities](https://www.sec.gov/newsroom/press-releases/2025-132-sec-division-examinations-announces-2026-priorities). 17 November 2025.
3. [Goodwin — 2026 SEC Exam Priorities for Registered Investment Advisers and Registered Investment Companies](https://www.goodwinlaw.com/en/insights/publications/2025/12/alerts-privateequity-pif-2026-sec-exam-priorities-for-registered-investment-advisers). December 2025.
4. [Akin — SEC Announces 2026 Exam Priorities](https://www.akingump.com/en/insights/alerts/sec-announces-2026-exam-priorities). December 2025.
5. [QBE North America — Private equity firms enhancing cyber resilience of portfolio companies](https://www.qbe.com/media/qbe/north-america/usa/files/cyber/private-equity-cyber-survey-whitepaper.pdf). 2026.
6. [Kroll — Private equity: cybersecurity a significant risk to deals, with 2.1 million dollars average financial impact](https://www.kroll.com/en/newsroom/private-equity-cybersecurity-significant-risk-financial-impact). 2026.
7. [ACA Group — Half of portfolio companies face elevated or high cyber risk, benchmarking report finds](https://www.acaglobal.com/news-and-announcements/half-of-portfolio-companies-face-elevated-or-high-cyber-risk-benchmarking-report-finds/). 2026.
8. [Microsoft Security — New Microsoft Data Security Index report explores secure AI adoption to protect sensitive data](https://www.microsoft.com/en-us/security/blog/2026/01/29/new-microsoft-data-security-index-report-explores-secure-ai-adoption-to-protect-sensitive-data/). 29 January 2026.
9. [Ropes & Gray — Safeguarding the portfolio: incident readiness and the cyber landscape in 2026](https://www.ropesgray.com/en/insights/viewpoints/102mmkj/safeguarding-the-portfolio-incident-readiness-and-the-cyber-landscape-in-2026). 2026.


---

# CRA Exposure in M&A: A Proportionate Diligence Lens, Not a Conformity Audit

Author: Dritan Saliovski · Published: 2026-06-13 · Category: M&A Due Diligence · Reading time: 11 min read · Canonical: https://www.innovaiden.com/insights/cyber-resilience-act-ma-due-diligence-deal-teams

> You do not need a full Cyber Resilience Act audit to diligence a product target. You need a few questions that read the room, a hypothesis formed from the tech and cyber work you are already doing, and the discipline to carry it into the SPA and the W&I tower.
A product company with European customers now carries a regulatory obligation that did not exist three years ago, with a hard market-access deadline attached to it. For deal teams running technology and cyber diligence on those targets, the question is not whether the EU Cyber Resilience Act matters. It is how much diligence it warrants, and what to do with the answer.

The instinct to commission a full CRA conformity review in the diligence window is the wrong one. A conformity assessment is the target's own compliance project, measured in months and owned by its engineering and product organizations. It cannot be reproduced inside a deal timeline, and attempting it burns budget on certainty the transaction does not need. The proportionate move is the opposite: a small number of questions and observations that read the room, layered onto the tech and cyber diligence already underway, that produce a defensible hypothesis about the target's exposure. That hypothesis is then carried into the two places where it actually protects the buyer: the sale and purchase agreement, and the warranty and indemnity tower.

This is the same discipline that governs the rest of technology diligence. No one audits every line of a target's code; they sample, they read the signals, they form a view, and they price and paper the risk. CRA exposure belongs in that workflow as a lens, not as a new workstream.

## Key Takeaways

- A full CRA conformity assessment is disproportionate in diligence and usually impossible in the timeline. The deal-team objective is a **defensible hypothesis**, not a certificate
- The CRA makes product-security posture a **datable financial and market-access risk**: from 11 December 2027, an in-scope product cannot be CE-marked, and cannot be sold in the EU, without conformity
- The screen is a **lens on existing tech and cyber diligence**, not a separate exercise. The signals you already gather (component hygiene, vulnerability handling, support commitments) feed the CRA view directly
- A few targeted questions read the room: in-scope status and role, SBOM maturity, vulnerability-handling evidence, support-period commitments, and dependence on unmanaged third-party code
- Findings flow into the **SPA** (product-compliance reps, disclosure scrape, price chip or specific indemnity for known gaps) and the **W&I tower** (where an un-diligenced gap is commonly an exclusion, and therefore uncovered)
- For platforms and buy-and-build, CRA remediation is **multiplied across every product line** and becomes a Day-100 integration cost
- Escalate to a scoped deep-dive only when the thesis depends on EU product revenue near the deadline, or the screen surfaces material gaps

## Why CRA Is a Deal Issue, Not Just a Compliance One

The Cyber Resilience Act applies to products with digital elements placed on the EU market, and it carries two features that make it a diligence concern rather than a post-close compliance task.

The first is market access. From 11 December 2027, an in-scope product requires conformity to the CRA's essential requirements, a complete technical file, and CE marking to be placed on the EU market. A target whose European revenue depends on products that will not clear that bar in time does not have a compliance gap; it has a revenue-at-risk problem that lands inside the buyer's hold period. That is a valuation input.

The second is cost shape. Closing a CRA gap is not a single line item. It is conformity assessment, technical documentation, a formalized vulnerability-handling process, software-bill-of-materials tooling, and, for some product classes, third-party assessment by a notified body. For a single product that is a contained cost. For a platform acquisition or a buy-and-build thesis, it is that cost repeated across every acquired product line, plus the integration work to harmonize them onto one standard. The aggregate is the kind of capex and opex that belongs in the model, not in a surprise the operating partner meets at the first board meeting.

There is also a timing dimension that rewards looking early. The conformity-assessment bodies that the December 2027 deadline depends on are being designated across Member States through 2026, and every in-scope manufacturer in Europe is converging on the same date. A target that has not started is buying into a capacity queue at the worst possible moment. None of this is visible in a data room unless the diligence is scoped to look for it.

## The Proportionate Principle

The governing idea is that diligence sizes the question to the deal, and the CRA question is almost always answerable at the level of a hypothesis rather than a verdict.

You are not certifying the target. You are forming a defensible view of three things: whether the target's products are in scope and under which provision, how far its current product-security posture is from what the CRA will require, and roughly what it would cost to close the distance. A hypothesis at that resolution is enough to decide whether CRA exposure is immaterial, whether it is a price-and-paper item, or whether it warrants a scoped deep-dive before signing. It is the same resolution at which deal teams already handle most technology risk.

This framing matters because it keeps CRA inside the diligence budget and timeline instead of competing with them. The screen does not add a workstream; it adds a reading to the workstream that is already running.

## Reading the Room: The Few Questions That Matter

A CRA exposure screen rides on the tech and cyber diligence already commissioned. The signals it needs are mostly signals a competent technology review is gathering anyway; the screen reinterprets them through the CRA lens and adds a handful of targeted questions.

<InsightFigure src="/insights/cra-diligence-funnel.svg" alt="A funnel from light-touch signals to deal protection. Top: signals already gathered in tech and cyber diligence, namely product scope and architecture, SBOM and third-party component hygiene, vulnerability-handling and disclosure process, security-update and support-period commitments, EU revenue dependence. Middle: a few targeted CRA questions layered on top, namely in-scope and under which provision, role in the supply chain, evidence of vulnerability decisions, conformity readiness. These converge into a CRA exposure hypothesis with a remediation cost band. Bottom: the hypothesis flows into the SPA (reps and warranties, disclosure scrape, price chip or specific indemnity) and the W&I tower (coverage versus exclusion)." caption="The screen is a lens on diligence already underway. Existing signals plus a few targeted questions converge into a hypothesis, which then flows into the SPA and the W&I tower." />

The questions that read the room, in roughly the order they pay off:

- **In scope, and under which provision?** Which products carry digital elements placed on the EU market, and is the target a manufacturer, importer, distributor, or open-source steward for each? This is the single most diagnostic question, and a target that cannot answer it crisply has told you something.
- **Component hygiene.** Is there a software bill of materials? Is third-party and open-source dependency managed, or merely present? The CRA's Annex I Part II makes this a process obligation, and its absence is a reliable proxy for broader unreadiness.
- **Vulnerability handling, on the record.** Is there a coordinated disclosure channel and a documented intake-to-remediation process, or activity without evidence? The September 2026 reporting clock cannot be met by an informal process, and the evidence trail is exactly what a buyer will want represented.
- **Support and update commitments.** Has the target defined and honored security-update support periods for its products? Vague or absent support commitments signal both a CRA gap and a customer-contract exposure.
- **Thesis dependence.** How much of the target's value rests on EU product revenue, and how near is that revenue to the deadline? This calibrates how much the answer matters.

These do not require source-code access or a compliance auditor. They require the diligence to be pointed at the right signals and a reviewer who knows what the answers imply.

## From Signals to Hypothesis

The screen's output is a short, defensible read, not a compliance report. Its shape is consistent: an in-scope determination per material product line, a posture gap expressed against the two parts of Annex I, and a remediation cost band.

The translation is direct. No SBOM and unmanaged dependencies imply a build-out cost and a component-risk unknown. Informal vulnerability handling implies process work and a September-2026 readiness risk. Undefined support periods imply both engineering commitment and contract remediation. Each signal maps to an order-of-magnitude cost and a confidence level, and the aggregate is a hypothesis the deal team can act on: immaterial, price-and-paper, or escalate.

This is also where CRA exposure connects to the rest of the technology risk picture rather than sitting beside it. The same diligence that surfaces CRA signals is the diligence that surfaces architectural debt, security weaknesses, and integration cost; CRA is one more lens on the same evidence. For the broader frame on how product and cyber risk move deal value, see [how cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value) and [the top technology risks in M&A due diligence](/insights/top-technology-risks-ma-due-diligence). And because the CRA does not act alone, the same product evidence shapes a target's exposure under NIS2, DORA, the revised CSA, and the AI Act; the cross-framework picture is in [Five Frameworks, One Vendor](/insights/four-frameworks-one-vendor-eu-regulatory-exposure).

## Carrying It Into the SPA and the W&I Tower

A hypothesis only protects the buyer if it changes the documents. CRA exposure has two destinations, and the second is the one most often missed.

**In the SPA**, the screen shapes the product-compliance and cybersecurity representations: conformity status, vulnerability-handling practice, open-source and SBOM hygiene, and the absence of known unremediated exposures. It drives the disclosure scrape against those reps, so that what the target knows is on the record. And for gaps the screen has already identified, it informs the remedy: a price adjustment, an escrow against remediation cost, or a specific indemnity for a known, quantified exposure. A general warranty is the wrong instrument for a gap you already found; a specific indemnity or price chip is the right one.

**In the W&I tower**, the point is sharper and frequently overlooked. Warranty and indemnity insurers cover the unknown, not the known, and they increasingly scrutinize cyber and compliance representations during underwriting. A risk that was not diligenced is commonly excluded from cover, and a CRA exposure that no one examined can therefore fall outside the policy entirely, leaving the buyer holding it with neither a priced remedy nor insurance behind the warranty. The proportionate screen is what keeps that from happening. It is the evidence that the representation was diligenced, which is the precondition for the insurer to stand behind it rather than carve it out. In other words, the light-touch work is not just about finding the gap; it is what preserves both the warranty position and the insurability of the risk.

This is why the screen earns its place even on deals where the CRA exposure turns out to be immaterial. A documented "we looked, and here is why it is low" is itself a W&I asset. The absence of that record is what converts a manageable risk into an uncovered one.

## When to Go Deeper

Proportionality cuts both ways. A handful of deals do warrant more than a screen, and the trigger is the thesis, not the regulation.

Go deeper when the investment case depends materially on EU product revenue near the December 2027 deadline, when the target sells important or critical product classes that face third-party conformity assessment rather than self-assessment, or when the screen itself surfaces material signals: no SBOM, no disclosure process, unclear support periods, or a product assembled largely from unmanaged third-party components. Even then, the proportionate response is a scoped deep-dive on the specific products that carry the thesis, not a portfolio-wide audit. The goal remains a deal position, now with tighter cost bands and firmer confidence, not a conformity certificate the buyer does not need.

## How Innovaiden Approaches It

The screen is designed to fold into a live process rather than sit alongside it. It takes the signals a technology and cyber diligence is already producing, adds the few CRA-specific questions that read the room, and returns a defensible in-scope hypothesis, a remediation cost band per material product line, and the specific reps, disclosure requests, and W&I positions that follow. On the operator side, the same instrument doubles as a readiness baseline for the target post-close, which is the subject of our companion piece, [the CRA's first obligation gate and what readiness actually requires](/insights/cyber-resilience-act-readiness-smaller-product-companies). The objective on the deal side is narrow and practical: make sure CRA exposure is read, priced, and papered before signing, so it never becomes the risk the buyer discovers after close and cannot recover.

## Sources

1. [Regulation (EU) 2024/2847 (Cyber Resilience Act) — full text on EUR-Lex](https://eur-lex.europa.eu/eli/reg/2024/2847/oj). 2024.
2. [European Commission — Cyber Resilience Act: Implementation (phased application timeline)](https://digital-strategy.ec.europa.eu/en/factpages/cyber-resilience-act-implementation). 2026.
3. [European Commission — The Cyber Resilience Act: summary of the legislative text](https://digital-strategy.ec.europa.eu/en/policies/cra-summary). 2026.
4. [Open Source Security Foundation — EU Cyber Resilience Act (scope, roles, SBOM)](https://openssf.org/public-policy/eu-cyber-resilience-act/). 2026.
5. [Pillsbury — The EU's Cyber Resilience Act: new cybersecurity requirements for connected products and software](https://www.pillsburylaw.com/en/news-and-insights/eu-cyber-resilience-act-requirements-products-software.html). 2026.


---

# Three Questions Investment Committees Should Ask About AI Risk

Author: Dritan Saliovski · Published: 2026-06-03 · Category: M&A Due Diligence · Reading time: 9 min read · Canonical: https://www.innovaiden.com/insights/investment-committee-questions-ai-risk

> Investment committees see more AI-intensive deals every quarter, but the process was not built for the pattern. Three IC-level questions surface AI risk before the vote.
Investment committees see more AI-intensive deals every quarter, and the committee process was not designed for the pattern. The traditional IC agenda covers financials, management, market, and thesis. AI risk, when it appears at all, is folded into "technology" and receives a fraction of the scrutiny the magnitude of the exposure warrants. That is a structural gap, not a diligence failure: the questions that surface AI risk are not the questions an IC is built to ask.

The fix is not a new workstream or a longer memo. It is three questions, pitched at the level the committee already operates at, that convert AI from an unexamined assumption into a defined, priced component of the deal. Each has surfaced real issues in real transactions. Each is answerable inside a normal diligence timeline. And each gives the committee something concrete to do when the answer is unsatisfactory.

## Key Takeaways

- The IC process was built for financials, management, market, and thesis. **AI risk does not sit cleanly in any of them**, so it gets under-scrutinized by default
- **53% of surveyed IT and business decision makers** say their organisation has encountered a critical cybersecurity issue or incident during an M&A deal that put the deal in jeopardy (Forescout, The Role of Cybersecurity in M&A Diligence, June 2019, n=2,779). That is a share of respondents, not a share of deals, and AI widens that surface rather than narrowing it
- Only 12% of organizations are highly confident they can prevent attacks via non-human identities, and fewer than a quarter have adopted policies for creating or removing AI identities (CSA/Oasis, January 2026); a target inherits that gap by default
- Three IC-level questions close the gap: the **threshold** question (does AI change the threat model or compliance posture), the **durability** question (how controlled is the AI the value story depends on), and the **integration** question (what does connecting this asset to the portfolio introduce)
- **AI non-compliance transfers on close.** EU AI Act prohibitions have been enforceable since 2 February 2025 and penalties since 2 August 2025, with fines up to 7% of global turnover or EUR 35M for prohibited practices and 3% or EUR 15M for high-risk and transparency obligations. High-risk obligations themselves bite from 2 December 2027 (Annex III) and 2 August 2028 (Annex I) under the Digital Omnibus. GDPR remains at 4%. Post-close remediation has an empirical cost and should be priced, not assumed away

<StatGrid>
  <Stat value="53%" label="Of surveyed IT and business decision makers say their organisation has hit a deal-jeopardising cyber issue in M&A (2019, n=2,779)" source="Forescout, The Role of Cybersecurity in M&A Diligence, 2019" />
  <Stat value="12%" label="Of organizations are highly confident they can prevent attacks via non-human identities; targets inherit this gap by default" source="CSA / Oasis Security, State of Non-Human Identity and AI Security, January 2026 (n=383)" />
  <Stat value="7% / 4%" label="EU AI Act maximum fine (global turnover, Art. 5 prohibitions; 3% for high-risk and transparency obligations) alongside GDPR's 4%; both transfer on close" source="Regulation (EU) 2024/1689 Art. 99; GDPR Art. 83" />
</StatGrid>

## Question One: Does AI Materially Change This Asset's Threat Model or Compliance Posture?

This is the threshold question, and it does real work precisely because it can end the inquiry. If the answer is no, the AI story is not material to the valuation. The committee should ask management to confirm that in writing and move on. There is no value in AI diligence theater on an asset where AI is incidental.

If the answer is yes, the posture of the entire diligence process changes: AI becomes a first-class consideration in every subsequent question rather than a line in the technology section. The useful follow-up is what specifically changes, and the concrete answer almost always lands in four areas at once, the data the company processes, the systems it depends on, the regulatory regimes that apply, and the incident surface. The committee needs a written position on each, because a "yes" without those four specifics is not an answer the committee can underwrite. This is the same discipline we apply to AI in deal diligence generally, covered in [AI in diligence: what PE deal teams actually need to check](/insights/ai-diligence-pe-deal-teams).

## Question Two: How Dependent Is the Value Story on AI Behaviors That Aren't Under Strong Control?

This is the durability question, and it is the one most likely to change the price rather than merely the diligence scope. If the investment thesis assumes the target's AI-driven margin expansion continues through the hold period, the committee should ask how the AI behavior that produces that margin is actually controlled.

Three specifics decide it. Is the margin driven by a proprietary model the target controls, or by an external AI provider whose pricing and terms can change under it. Is the capability dependent on a specific employee or small team whose departure would degrade it. Is it subject to a regulatory restriction that could emerge during the hold period. If the value story rests on AI behavior the target does not control, the committee is underwriting a capability, not a business, and that is a materially different risk profile from a traditional thesis. It can still be a good deal, but it should be priced as what it is.

## Question Three: What Integration Risks Are Introduced by Connecting This Asset to the Portfolio?

This is the post-close question, and it is where the most unpleasant surprises occur, because they arrive after the committee has already committed.

Three integration risks are worth naming explicitly. When the target's AI agents gain access to acquirer or portfolio-company systems, the blast radius of a compromised agent expands to whatever those systems reach. When the target's AI vendor relationships combine with the acquirer's, a single provider can quietly come to support a material share of portfolio operations, which is concentration risk arriving through the back door. And when the target's AI-driven data flows integrate with the portfolio, they can create new regulated-data exposure that neither side had alone, for instance a US target whose AI capabilities begin processing EU customer data under the acquirer's ownership. Each of these has an incident precedent, each is preventable if surfaced before close, and each becomes expensive if surfaced after. The blast-radius question in particular is why AI agents need their own identity and access discipline, which we set out in [you cannot secure AI agents with human-era identity models](/insights/ai-agent-identity-iam-security).

## What the Committee Does With the Answers

The three questions are only useful if the committee knows what to do with a weak answer. If all three have clear, sourced answers backed by diligence evidence, the committee can underwrite the AI risk as a defined, priced component of the deal and proceed with confidence. That is the goal: not a clean bill of health, but a measured one.

If one or more answers are vague, the committee has three defensible choices, and should make one of them explicitly: require additional diligence before approval, adjust the price to reflect the unmeasured risk, or decline. What it should not do is approve on the assumption that post-close remediation will quietly resolve the issues. In 2026, remediating AI exposure after close has an empirical cost and timeline. It should be priced into the deal or not taken on, and the committee that treats it as a later technicality is the committee that meets it as a board-level problem eighteen months in. For the parallel view on how AI-heavy targets should be diligenced before they reach the IC, see [how deal teams should diligence AI-heavy targets](/insights/ai-diligence-pe-deal-teams) and the risk-committee framing in [what technology and risk committees need to know about AI coding tools](/insights/ai-coding-tools-risk-committee-briefing).

## How Innovaiden Approaches It

The three questions are designed to fold into the IC process a committee already runs, not to replace it. Innovaiden works with deal teams and investment committees to make AI risk answerable at IC altitude: framing the threshold, durability, and integration questions for the specific asset, sourcing the evidence that turns each into a defensible position, and providing the decision matrix for what to do when an answer comes back vague. The objective is narrow and practical, that the committee votes on AI risk it has measured and priced, rather than on an assumption it did not know it was making.

## Sources

1. Forescout. [The Role of Cybersecurity in M&A Diligence](https://www.forescout.com/resources/the-role-of-cybersecurity-in-ma-diligence/). June 2019 (n=2,779, seven countries).
2. [Cloud Security Alliance / Oasis Security — State of Non-Human Identity and AI Security](https://cloudsecurityalliance.org/artifacts/state-of-nhi-and-ai-security-survey-report). January 2026.
3. [Regulation (EU) 2024/1689 (EU AI Act), Article 99 — penalties](https://eur-lex.europa.eu/eli/reg/2024/1689/oj/eng). 2024.
4. [Regulation (EU) 2026/1744 (Digital Omnibus on AI) — deferral of high-risk obligations](https://eur-lex.europa.eu/eli/reg/2026/1744/oj/eng). In force 27 July 2026.
5. [European Commission — EU AI Act: regulatory framework and enforcement timeline](https://digital-strategy.ec.europa.eu/en/policies/regulatory-framework-ai). 2026.
6. [McKinsey — Generative AI in M&A](https://www.mckinsey.com/capabilities/m-and-a/our-insights). 2025.


---

# Sponsor Liability for Portfolio Cyber Failures: A Practitioner's Defense Playbook After Bain/PowerSchool

Author: Dritan Saliovski · Published: 2026-05-05 · Category: M&A Due Diligence · Reading time: 11 min read · Canonical: https://www.innovaiden.com/insights/pe-sponsor-cyber-liability-bain-powerschool

> A US court let negligence claims against Bain Capital proceed for a portfolio company's breach. The cost of weak cyber diligence is no longer just a write-down, it's the sponsor named in the suit. The exposure attached to how the bid was conditioned.
For most of the last decade, weak cyber diligence in M&A was a deal-value problem. A breach in the first 18 months of ownership meant a write-down, possibly an indemnity claim under the SPA, and uncomfortable conversations with LPs. The portfolio company's directors and officers might face derivative claims. The sponsor itself was usually one layer removed from the action.

That changed on March 18, 2026.

A US federal court in the Southern District of California granted in part and denied in part Bain Capital's motion to dismiss in the consolidated PowerSchool data breach litigation, allowing claims for negligence, negligence per se, aiding and abetting, unjust enrichment and violations of California's unfair competition law to proceed. The plaintiffs argued that Bain, as PowerSchool's controlling owner, exercised operational control sufficient to owe a duty of care to the millions of students whose data was exposed in the 2024 breach. The court agreed that the claims could proceed. Bain is now a named defendant, in its own right, in litigation over a portfolio company's cyber failure.

This is not a final liability finding. Bain may still prevail. But the precedent that such claims can proceed is the material development. Plaintiffs' attorneys have a roadmap. PE firms have to assume that operational involvement in a portfolio company's security decisions creates direct sponsor exposure, even before any final adjudication. The cost ceiling for weak diligence is no longer a write-down. It is the sponsor named in the suit.

This is a practitioner's playbook for what changes operationally. It is angled toward how PE sponsors should structure pre-close diligence, post-close governance, and incident response, not toward the legal doctrine itself. The legal frameworks are still developing. The operational decisions you can make this quarter are not.

## Key Takeaways

- **The cost ceiling for weak cyber diligence is now sponsor-level liability**, not just deal-value impairment, holdbacks, or D&O claims at the portco
- **The legal theory is operational control plus duty of care.** The more the sponsor directs security spend, staffing, or technical decisions, the harder a passive-ownership defense becomes
- **The exposure attached pre-close, not post-close.** The court relied on allegations that Bain conditioned its offer on cost reductions including cuts to domestic cybersecurity staff, and directed offshoring of security functions. Post-close governance hygiene does not reach that conduct
- **Six operational layers limit exposure**: screening the value-creation plan for security-relevant cuts, documented pre-close diligence, sponsor-portco governance posture, operational arms-length on technical decisions, standardized incident response playbooks, and a cyber insurance/indemnity stack with the sponsor named
- **AI agent governance is the next attack surface this theory will reach.** Agents in portcos run autonomously, often without security review, and create exactly the kind of preventable risk surface the Bain theory targets
- **The plaintiffs' bar will adapt this theory cross-border**. The US ruling is the first to advance it; the operational-control logic exists in most common-law jurisdictions and parallels exist in EU member-state law

## What Actually Changed on March 18, 2026

The PowerSchool breach is, by 2026 standards, a fairly conventional incident, with one detail that turns out to carry the entire case. In **August 2024**, a threat actor gained unauthorized access to the systems of PowerSchool, an EdTech platform serving K-12 districts across North America with data on tens of millions of students, using **stolen vendor credentials**. PowerSchool disclosed the breach in December 2024; the incident is reported to have affected roughly 50 million people.

The date is the point. Bain's acquisition of PowerSchool closed on **1 October 2024**, which means the intrusion began **before the deal closed**, and a substantial part of the conduct plaintiffs complain of predates Bain's ownership entirely. That is what Womble Bond Dickinson's alert means when it calls the ruling unprecedented: many of the claims rest on conduct that occurred before the acquisition. The offshore contractor whose credentials were implicated, **Movate, Inc.**, is a named co-defendant. The exposed records included names, contact information, and in some cases social security numbers and academic records. Class actions followed in the usual pattern, naming PowerSchool and a range of related entities.

What was unusual is what the plaintiffs did with Bain. Bain had acquired PowerSchool in October 2024 for $5.6 billion. By the time the breach surfaced publicly, the firm had been the controlling owner for a matter of months, and the intrusion itself predated the close. The plaintiffs alleged that Bain, through its board representatives and operational support functions, exercised meaningful control over the security decisions that led to the breach, and therefore owed a duty of care directly to the affected individuals.

Judge Roger T. Benitez's ruling did not find Bain liable. It found that the plaintiffs' allegations, taken as true at the motion-to-dismiss stage, plausibly stated claims for negligence and aiding-and-abetting. That is a low procedural threshold. It is also a meaningful one. The default expectation in PE-sponsored portfolio breach litigation has been that the sponsor is dismissed early; the suit proceeds against the operating company. That default broke on March 18.

The legal theory matters less than the operational implication. What plaintiffs' attorneys need to allege, and increasingly will, is that the sponsor exercised operational control over the security decisions that produced the failure. The more documented control, the stronger the theory. The more the sponsor can point to arms-length governance and delegated authority, the weaker.

### Where the control actually attached, and why it should worry deal partners more than CISOs

It is worth being precise about the conduct the court relied on, because it is not the conduct most sponsors are defending against.

The court found that Bain's involvement in PowerSchool's cybersecurity operations went beyond what an ordinary investor would do. The specifics, per the reporting on the ruling: Bain **ratified and conditioned its offer on cost-reduction measures**, which included **laying off domestic cybersecurity staff**, and **directed the company to offshore cybersecurity functions to contractors**. The offshoring in turn required data-management tooling that allowed vendors to bypass consent protocols and reach protected school-district systems.

Read that sequence again with a deal timeline next to it. The exposure did not attach because Bain governed the portfolio company badly after close. It attached because of **how Bain structured and conditioned its bid** — commitments made in the deal model, before it owned anything, that were then executed against. The novel feature of this ruling, and the reason it is described as unprecedented, is that **pre-close deal terms produced post-close tort exposure**.

That has an uncomfortable consequence for the playbook below, and it is worth stating plainly rather than leaving implicit. A sponsor can implement every post-close governance control set out here — charters, decision-rights matrices, operational arms-length between operating partners and the CISO, standardised incident response — and still carry the exposure that actually landed in this case, if its investment committee continues to underwrite deals on cost-reduction assumptions that cut security headcount or offshore security functions. The governance layers reduce the surface. They do not reach the conduct at the centre of this ruling.

For deal teams, the practical question is no longer "did our diligence find the issue?" It is "can we defend the operational posture we maintained from close to incident?"

## The Three Operating Decisions That Now Carry Direct Exposure

Three categories of decision now create the strongest evidentiary trail in any future plaintiffs' case. Each is a place where the operational-control theory finds traction.

### 1. Pre-close cyber diligence: was the issue findable?

If the breach trace leads back to a control gap that competent diligence would have surfaced, the plaintiffs' theory becomes direct. The sponsor is not being faulted for the breach itself. It is being faulted for proceeding with the deal without remediating a known issue, or for treating diligence as a cosmetic exercise.

The implication: the diligence file has to be defensible as a process, not a deliverable. A 60-page report with a green/yellow/red dashboard is fine; what matters is what is *behind* it. Did the team test for the relevant categories? Was there access to the right systems? When findings were identified, what happened? Were they remediated pre-close, holdbacks taken, or accepted with a documented rationale?

The questions a future deposition will probe:
- What was on the diligence checklist?
- What was actually tested versus self-reported?
- For the issue at the center of the breach, was it identified in diligence?
- If yes, what was the documented mitigation?
- If no, was the category covered at all?

A clean documented answer is a defensive moat. A handwave is the opposite.

### 2. Governance posture: sponsor-portco decision rights

After close, the sponsor's involvement in security decisions is the central battleground. Most PE firms use some combination of board representation, formal observer rights, operating partner involvement, and informal participation in major decisions. The legal question is which of these crosses into "operational control" sufficient to create a duty of care.

The operational answer: document the structure. A written charter for the IT/security committee at the portfolio company, a decision rights matrix that specifies what the sponsor approves vs. what management decides, and meeting minutes that show the sponsor receiving information rather than directing technical choices, these are the artifacts that build a passive-ownership defense.

The opposite, informal direction by operating partners, ad hoc directives on security spend, sponsor staff inserting themselves into vendor selection or hiring decisions, builds the plaintiff's case.

### 3. Incident response: the decisions made during the crisis

The breach itself is rarely the most-litigated phase. The response is. How quickly was the incident triaged? Who decided when and how to disclose? What public communications were made? Were affected individuals notified within statutory windows?

Sponsor involvement in these decisions is unavoidable in practice. A $5B+ portfolio company breach will reach the LP letter, and the GP can't be uninvolved. But the *form* of involvement matters. The sponsor receiving updates and concurring in recommended actions is different from the sponsor making the call.

The artifact that matters here is the incident response playbook, signed off pre-incident, that defines who decides what during a breach. If the playbook says "the portco CEO and CISO own incident response decisions, the sponsor is informed," and the documented response matches, the operational-control theory has less to grab onto.

## A Six-Layer Defense Playbook

Each layer addresses a different stage where the Bain/PowerSchool theory could be applied. None is sufficient alone. Together they constitute the operational stance of a sponsor that takes this exposure seriously.

### Layer 0: The value-creation plan itself

This layer is first because it is the one the PowerSchool ruling actually reached, and because it sits with the deal team rather than with security.

If the investment thesis contains cost-reduction commitments, know before signing whether any of them touch the security function — headcount in the security organisation, offshoring or outsourcing of security operations, tooling consolidation that removes controls, or vendor-access changes that widen who can reach production data. Those are the specific measures that appear in the allegations here.

Three practical disciplines follow:

- **Screen the value-creation plan for security-relevant cuts before the offer is conditioned on them.** A cost line labelled "IT rationalisation" or "offshore support functions" is where this hides; it rarely says "cybersecurity" on the page
- **Document the security review of the cost plan.** If the plan reduces security capacity, record who reviewed it, what compensating controls were required, and on what basis the residual risk was accepted. The absence of that record is what makes "ratified and conditioned its offer on cost reductions" a clean allegation
- **Treat vendor-access architecture as a deal-model question, not an integration detail.** The offshoring here required tooling that let vendors bypass consent protocols. That is a control decision embedded in a cost decision, and it was made at the top

The remaining layers reduce the surface after close. This one addresses the conduct the court found went beyond what an ordinary investor would do.

### Layer 1: Pre-close diligence as a documented process

The cyber diligence package needs to be reconstructable from the file two years post-close. For practical purposes:

- **Scope-of-work** signed off pre-engagement, listing the eight assessment domains (governance, infrastructure, applications, data, identity, incident response, third-party risk, compliance) and what each will test
- **Evidence trail** for every finding. Not just a claim of "outdated TLS configurations" but the specific systems tested, the methods used, and the artifacts (scan output, configuration screenshots, policy documents) that support it
- **Remediation tracking** for every material finding. What was the response: pre-close fix, holdback amount, indemnity, or accepted with rationale. Each track has its own artifact.
- **Residual risk acceptance** if the deal closes with known issues unfixed. A documented rationale signed by the deal partner. This is the artifact that addresses "you knew and proceeded anyway" theories.

The deeper context for what this looks like in practice: see our [practitioner's framework for M&A cybersecurity due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma) and [what PE firms typically miss before close](/insights/cybersecurity-due-diligence-pe-firms).

### Layer 2: Sponsor-portco governance posture

The governance documents in place at close are the foundation of any passive-ownership defense. Three documents matter most:

- **Board charter** specifying the sponsor's representation rights, observer rights, and meeting cadence
- **IT/security committee charter** at the portco specifying who attends, what decisions the committee makes, and what is escalated to the full board
- **Decision rights matrix** specifying which decisions require sponsor approval vs. portco management discretion. Critical: security spend, CISO hiring, incident response authority, and major vendor selection should sit with portco management, not the sponsor.

These are not contractual instruments. They are operating documents. They have to match what actually happens. A charter that says "portco management owns security decisions" and a fact pattern showing the operating partner directs vendor selection from the sponsor's office is worse than no charter at all.

### Layer 3: Operational arms-length on technical decisions

This is the layer most PE firms fail. The temptation is real and structural. Operating partners want to add value. Cyber is a topic where most operating partners feel comfortable having opinions. Vendor recommendations cross the line easily. So does suggesting the CISO is "not the right fit." So does pushing back on a security spend request because EBITDA needs to land.

The discipline that prevents this is hard to maintain but defensible to operate:

- **No sponsor-side personnel in the technical decision chain.** The portco CISO does not report to the operating partner. The sponsor does not run the SOC, does not select tools, does not interview security hires unilaterally.
- **All sponsor inputs go through formal channels.** A board-level concern about security investment goes via a board agenda item with portco-recommended response, not via a side conversation.
- **Security budget pressure is mediated.** If the sponsor wants to constrain security spend, the portco's risk committee documents the trade-offs and the residual risk acceptance.

The test: if a plaintiff's attorney subpoenas the email between the operating partner and the CISO, does the trail show the sponsor receiving information or directing decisions?

### Layer 4: Standardized incident response across the portfolio

Most PE-backed portfolio companies have insufficient incident response capability. The portfolio-wide remediation is itself a defensive layer. A sponsor that maintains a playbook that all portcos use, that runs annual tabletop exercises, that has pre-negotiated forensics and PR retainers, and that documents the decision authority during incidents is in a materially stronger position than one that treats each breach as bespoke.

The playbook content is now relatively standardized. The legal artifact that matters is the *adoption*: every portco signs an addendum to the management services agreement specifying that they will use the playbook, that they own the incident response decisions, that the sponsor receives updates per a defined cadence, and that disclosure decisions sit with the portco's general counsel and CEO.

For organizations starting from a blank slate, our companion analysis on [how cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value) covers the FTI Consulting figures published March 2026, from fieldwork conducted 12–26 August 2025: 42% of executives in deals affected by cyber incidents reported significant deal-value reduction, 58% said financial targets were impaired. Those figures used to be the worst case. After Bain/PowerSchool, sponsor-level claims are the new ceiling above them.

### Layer 5: Insurance and indemnity stack with the sponsor named

The financial protection layer has to be rebuilt around the new exposure profile.

- **Sponsor-named cyber insurance.** The sponsor as named or additional insured on the portco's cyber policy, with explicit coverage for sponsor-directed claims.
- **D&O coverage for sponsor board reps.** A separate Side A policy for the individual operating partners and managing directors who hold portco board seats, covering their personal exposure.
- **SPA reps and warranties.** The cyber-specific reps in the purchase agreement should trigger indemnity for any pre-close issue that surfaces post-close, with carve-outs for known issues that were specifically diligenced.
- **Master indemnity from the GP fund.** Most fund agreements already provide this, but the operational question is whether the indemnity reaches sponsor-level claims arising from portco breaches. Counsel review is recommended.
- **Cyber reps and warranties insurance.** RWI for the cyber reps specifically, increasingly available as a separate sub-policy from major underwriters.

This layer is not a substitute for the first four. Insurance covers payment; it does not prevent the named-defendant status, the deposition cycle, the LP communication, or the reputational damage. But it is the floor.

## The AI Agent Surface That's Coming Next

The Bain/PowerSchool theory will reach AI agent risk before it reaches any other emerging category. The reason: AI agents in portfolio companies are exactly the kind of preventable, increasingly-known risk surface that plaintiffs' theories thrive on.

Three specific characteristics make AI agent exposure especially attractive to the operational-control theory:

- **They're being deployed without security review at most portcos.** Line-of-business teams adopt AI agents with credentials and system access; security teams find out after the fact. This is exactly the "should have known" pattern that makes a duty-of-care argument.
- **They have system-level access by design.** AI agents read databases, send emails, modify records, and execute code. A compromised agent has the blast radius of a privileged employee, and the theory of liability is correspondingly expansive.
- **The risk is increasingly documented in the public record.** [Project Glasswing](/insights/project-glasswing-cybersecurity-assessment-baseline), the Cursor CVE-2026-26268, the MCP server vulnerabilities Ox Security disclosed in April 2026, and the [browser AI assistant attack surface](/insights/ai-assistant-attack-surface-browser-risk) are all publicly-documented threat categories that plaintiffs will cite to argue the risk was foreseeable.

For sponsors with portfolio-wide exposure, the operational implication is straightforward: the [security-first AI agent deployment framework](/insights/ai-agent-deployment-security-framework) is now a portfolio-wide governance requirement, not a per-portco choice. The questions the [board should be asking about AI agents](/insights/board-questions-ai-agents) need a clean answer at sponsor level: what AI capabilities are in production across the portfolio, who owns them, what's the inventory.

If the answer to those questions is incomplete in 2026, it will be evidence in 2027 or 2028.

## What the Litigation Theory Actually Requires

A clean reading of the underlying theory helps the operational decisions stay calibrated. Plaintiffs do not need to prove the sponsor caused the breach. They need to plausibly allege that the sponsor:

1. **Owed a duty of care** to the affected individuals, arising from operational control
2. **Breached that duty** by acting (or failing to act) in a way that fell below the standard a reasonable controlling owner would meet
3. **Caused harm** through that breach, with direct causation between the sponsor's act or omission and the eventual injury

The duty-of-care question is the gateway. Without it, the rest doesn't reach. With it, the entire factual record of sponsor involvement becomes discoverable.

This is why the operational-arms-length layer is the most strategically important. It directly addresses the duty-of-care prong. A sponsor that maintains documented arms-length on technical decisions can argue that no duty arose; a sponsor that does not has to fight on the facts.

The aiding-and-abetting prong (also at issue in the Bain ruling) is a separate path. It requires plaintiffs to show that the sponsor knew of the underlying tort and substantially assisted it. This is a harder allegation in most cases, but it's the one that gets legs when the diligence record shows the sponsor knew about the security weakness and proceeded without remediation.

## What to Expect Over the Next 12–18 Months

Three downstream developments are likely.

**Plaintiffs' bar will expand the theory.** The Bain/PowerSchool template will be applied to more breaches. Class action firms have a roadmap they can copy. Expect filings against PE-backed portcos with breaches in 2024-2025 to increasingly name the sponsor.

**Case law will diverge.** Different US courts will apply different operational-control thresholds. Some will find the theory compelling; others will dismiss aggressively. The fact pattern that matters most is the documented decision authority. Sponsors that documented arms-length will win more dismissal motions.

**Insurance and indemnity terms will adjust.** Cyber underwriters will reprice based on portfolio-wide exposure. Sponsor-named coverage will become standard rather than premium. Side A D&O for portco board reps will see capacity tighten.

The cross-border question is the most uncertain. EU and UK courts have parallel duty-of-care doctrines, but the procedural posture is different. The US class action mechanism is far more permissive than equivalent EU proceedings. The legal theory may translate; the volume of litigation it generates will be jurisdiction-specific.

For PE firms operating in multiple jurisdictions, the operational defense is jurisdiction-agnostic. The six layers above protect against the underlying theory regardless of where it's litigated.

## What This Means for Deal Teams Right Now

Three things are worth doing this quarter, regardless of where the case law lands:

- **Audit the cyber diligence file on every portco closed in the last 36 months.** If the file does not pass the "reconstructable in deposition" test, document the gaps and remediate now, not after a breach.
- **Review the governance posture across the portfolio.** A spreadsheet showing which portcos have documented IT/security committee charters, decision rights matrices, and incident response playbooks. The portcos with gaps are the highest exposure.
- **Inventory AI agent deployment across the portfolio.** This is the next surface where the operational-control theory will find traction. A sponsor that cannot answer "what AI capabilities are running across our portfolio companies" in 2026 will not be able to answer it in deposition.

For organizations evaluating the broader pattern of how cyber findings translate to deal economics, the holdbacks, indemnification structures, and post-close monitoring obligations, see our [framework for how cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value). For the technical-risk lens, [five technology risks that determine M&A deal outcomes](/insights/top-technology-risks-ma-due-diligence) covers the cyber-vulnerability category alongside the four others most commonly missed.

The PE Sponsor Cyber Defense Playbook covers the complete six-layer defense framework, the documentation templates for each layer (board charter, IT committee charter, decision rights matrix, incident response playbook addendum), the cyber insurance gap analysis worksheet, and the portfolio-wide AI agent inventory template.

## Sources

1. [Womble Bond Dickinson — Unprecedented: Private Equity Firm Potentially on the Hook for Portfolio Company's Data Breach](https://www.womblebonddickinson.com/us/insights/alerts/unprecedented-private-equity-firm-potentially-hook-portfolio-companys-data-breach). 2026.
2. [Bloomberg Law — Bain Struggles to Dismiss PowerSchool User Data Breach Claims](https://news.bloomberglaw.com/litigation/bain-struggles-to-dismiss-powerschool-user-data-breach-claims). March 2026.
3. In re PowerSchool Holdings, Inc. and PowerSchool Group, LLC Customer Security Breach Litigation, No. 3:25-md-03149-BEN-MSB (S.D. Cal.), Hon. Roger T. Benitez, March 18, 2026 (order granting in part and denying in part Bain Capital's motion to dismiss).
4. [FTI Consulting — CISO Redefined III: Cybersecurity Attacks an Increasing Threat to M&A](https://www.globenewswire.com/news-release/2026/03/17/3257322/0/en/fti-consulting-study-reveals-cybersecurity-attacks-are-an-increasing-threat-to-m-a.html). March 17, 2026.
5. [Anthropic — Project Glasswing](https://www.anthropic.com/glasswing). 2026.
6. [Ox Security — The Mother of All AI Supply Chains: Critical Systemic Vulnerability at the Core of the MCP](https://www.ox.security/blog/the-mother-of-all-ai-supply-chains-critical-systemic-vulnerability-at-the-core-of-the-mcp/). April 2026.


---

# AI Boom, Security Bust: How Deal Teams Should Diligence AI-Heavy Targets

Author: Dritan Saliovski · Published: 2026-04-22 · Category: M&A Due Diligence · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-diligence-pe-deal-teams

> Deal teams are seeing more AI-intensive targets. The diligence process was not designed for agent sprawl, training data provenance, or vendor lock-in.
Private equity and corporate deal teams are seeing a rising share of targets whose value story depends on AI capability. Enterprise software portfolios now include AI-native products. Industrial targets are pricing in automation. Service businesses are projecting margin expansion from AI-driven efficiency. In nearly every case, the diligence process was not designed for any of this.

## Key Takeaways

- 53% of surveyed IT and business decision makers say their organisation has encountered a critical cybersecurity issue or incident during an M&A deal that put the deal in jeopardy (Forescout, The Role of Cybersecurity in M&A Diligence, June 2019, n=2,779). That is a share of respondents, not a share of deals
- Only 29% of organizations feel ready to deploy agentic AI securely despite 83% planning to do so (Cisco, State of AI Security 2026). Both figures are shares of the same surveyed population, so on those base rates an acquisition target is more likely than not to be in the unready group
- The Salesloft-Drift OAuth compromise potentially impacted over 700 organizations downstream (Google Threat Intelligence Group, August 2025); AI-heavy targets introduce similar concentration risk
- EU AI Act high-risk obligations now apply 2 December 2027 (Article 6(2) Annex III) and 2 August 2028 (Article 6(1) Annex I) under the Digital Omnibus deferral, with fines up to 3% of global turnover or EUR 15M for high-risk obligations, and up to 7% or EUR 35M for the Article 5 prohibited practices; the Commission's 19 May 2026 draft Article 6 guidelines read the 6(3) exceptions narrowly — target AI non-compliance transfers on close
- **86% of corporate/PE organizations have integrated GenAI into their M&A workflows (Deloitte, 2025), but 67% cite data security as the leading deployment barrier — meaning the buyer's own diligence stack now has the same risk surface it's evaluating in targets**

## The Diligence Stack Is Now AI-Augmented On Both Sides

Two reference points published since this article was first drafted reset the landscape. Deloitte's 2025 GenAI in M&A Survey (released late 2025) reports that **86% of corporate and PE organizations have integrated generative AI into M&A workflows**, with synthesis, document review, and red-flag detection the leading use cases. **67% cite data security as the leading deployment barrier** — the same concern deal teams should be raising about their targets is the concern those teams are wrestling with internally. In March 2026, [DiligenceSquared raised a $5M seed](https://fintech.global/2026/03/10/diligencesquared-targets-pe-due-diligence-with-5m-raise/) to build commercial-DD AI tooling specifically for PE deal teams — a fundable signal that AI-native diligence is moving from optional accelerator to expected capability.

The implication for the diligence framework below: every question you ask about a target's AI hygiene now has a mirror question about your own. If your AI vendor stack handles the deal data differently than the target's AI vendor stack handles customer data, the integration risk lands inside your own walls before it lands in the portfolio.

<StatGrid>
  <Stat value="53%" label="Of surveyed IT and business decision makers say their organisation has hit a deal-jeopardising cyber issue in M&A (2019, n=2,779)" source="Forescout, The Role of Cybersecurity in M&A Diligence, 2019" />
  <Stat value="29%" label="Feel ready to deploy agentic AI securely, against 83% planning to deploy it" source="Cisco, State of AI Security 2026" />
  <Stat value="700+" label="Organizations potentially impacted by the Salesloft-Drift OAuth compromise" source="Google Threat Intelligence Group, August 2025" />
</StatGrid>

## Where AI Risk Hides in a Typical Data Room

AI risk rarely shows up in the data room tree as a folder labeled "AI risk." It is distributed across four locations that deal teams routinely review without connecting them.

| Data Room Section | What to Look For | AI Risk Signal |
|---|---|---|
| **Product / Technology** | Architecture diagrams, third-party service listings, API documentation | Every reference to a model provider, vector database, agent framework, or LLM orchestration tool is an AI risk surface |
| **Vendor / Contracts** | AI vendor contracts (OpenAI, Anthropic, Google, hosting providers) | Data processing terms, residual training-data rights, termination clauses |
| **Legal** | Regulatory filings, correspondence, IP litigation, privacy complaints | AI-related matters the target may have minimized in the management narrative |
| **HR / Operations** | Employee agreements, customer terms, vendor agreements | Language governing AI use on the platform; mismatches between stated and contractual AI permissions |

## Red-Flag Patterns Deal Teams Should Surface

**Ungoverned agent sprawl.** The target has deployed AI agents across functions without an inventory, permission reviews, or a lifecycle process. Surfacing question: how many agents are in production, who owns each, and when was the last access review. If the answer is partial, the sprawl is the finding.

**Data residency chaos.** The target processes regulated data through AI providers whose infrastructure sits in jurisdictions that do not match data residency obligations in customer contracts or applicable regulation. Particularly acute when the target sells into EU markets and uses US-based AI providers without appropriate data transfer mechanisms.

**Vendor lock-in with weak controls.** The target depends on a single AI vendor for a critical capability with no fallback, no exit terms, and no internal capability to replicate the function. If the vendor changes pricing, terms, or availability, the target's economics change materially.

**Training data provenance gaps.** The target cannot produce, on reasonable notice, the source and licensing posture of the data used to train its proprietary models. The IP and regulatory exposure is enforcement-ready for EU AI Act Annex III obligations from 2 December 2027 and Annex I product-route obligations from 2 August 2028 under the Digital Omnibus deferral.

**"Out of scope by contract" claims that do not survive the new guidelines.** The European Commission's 19 May 2026 draft Article 6 classification guidelines read the four Article 6(3) exceptions narrowly and require that instructions, technical documentation, and marketing materials all describe the same intended purpose. Targets with portfolios of AI tools labelled "not for high-risk use" via terms-of-service disclaimers — but marketed or deployed for Annex III contexts (CV screening, credit scoring, essential services) — carry an undiagnosed compliance liability that transfers on close. For the full read of the draft and what it changes for procurement and deployment, see [the EU's high-risk AI filter: inside the May 2026 draft guidelines](/insights/eu-ai-act-draft-guidelines-high-risk-classification).

**Agent-to-production access without human approval.** The target has AI agents with direct write access to customer environments, financial systems, or production databases with no human approval layer. This is an incident vector, not a capability. For the [security baseline shift that AI has created](/insights/security-baseline-ai-threat-landscape), uncontrolled agent access in a target is a material finding.

## The Six-Question AI/Cyber Diligence Framework

Six questions, applied to every AI-relevant target:

| # | Question | Output |
|---|---|---|
| 1 | What AI capabilities are in production, and what do they depend on? | Inventory (not a summary) |
| 2 | What data do those capabilities process, and under what legal basis? | Regulatory map |
| 3 | Who has accountability for each AI capability, and what is the governance process? | Named owners (not functions) |
| 4 | What incidents have occurred in the last 24 months, disclosed or not? | Incident register (non-disclosure becomes a representation issue) |
| 5 | What contractual obligations does the target have regarding AI use, and are they being met? | Gap map |
| 6 | What integration risks exist when connecting acquirer and target environments post-close? | Agent access scope, vendor concentration, data flow exposure |

The output is a red/yellow/green assessment by category, supported by diligence evidence, usable in the investment committee conversation. For the complete [cybersecurity due diligence methodology](/insights/ultimate-guide-cybersecurity-due-diligence-ma) and how [PE firms typically miss critical findings](/insights/cybersecurity-due-diligence-pe-firms), AI diligence extends rather than replaces the existing framework.

## How This Integrates With Existing Cyber Diligence

AI diligence is not a separate workstream. Every AI system is a cyber asset. The cyber asset inventory and the AI inventory are the same list. An AI incident is a cyber incident. Remediation of AI-specific issues uses the same framework as general cybersecurity. Deal teams that fold AI into a consolidated cyber diligence process produce an investment committee narrative that is clearer and more defensible.

The AI/Cyber Diligence Framework includes the red/yellow/green assessment matrix, the integration risk checklist, and the post-close remediation scoping template.

## Sources

1. Forescout. [The Role of Cybersecurity in M&A Diligence](https://www.forescout.com/resources/the-role-of-cybersecurity-in-ma-diligence/). June 2019 (n=2,779, seven countries).
2. [Datasite - Virtual Data Room Insights 2026](https://www.datasite.com)
3. [Cloud Security Alliance and Oasis Security - State of NHI and AI Security Survey Report, January 2026](https://cloudsecurityalliance.org/artifacts/state-of-nhi-and-ai-security-survey-report)
4. [Cloud Security Alliance - 82% of Enterprises Have Unknown AI Agents in Their Environments (April 2026)](https://cloudsecurityalliance.org/press-releases/2026/04/21/new-cloud-security-alliance-survey-reveals-82-of-enterprises-have-unknown-ai-agents-in-their-environments)
5. [European Commission - EU AI Act Implementation and Enforcement](https://digital-strategy.ec.europa.eu/en/policies/regulatory-framework-ai)
6. [McKinsey - Gen AI in M&A, February 2025](https://www.mckinsey.com)
7. Deloitte. 2025 GenAI in M&A Survey (1,000 senior corporate and PE leaders). 2025.
8. [Fintech Global — DiligenceSquared targets PE due diligence with $5M raise](https://fintech.global/2026/03/10/diligencesquared-targets-pe-due-diligence-with-5m-raise/). March 10, 2026.
9. [European Commission — Draft Commission guidelines on the classification of high-risk AI systems](https://digital-strategy.ec.europa.eu/en/library/draft-commission-guidelines-classification-high-risk-ai-systems). 19 May 2026.
10. Cisco. [State of AI Security 2026](https://www.cisco.com/site/us/en/products/security/state-of-ai-security.html). 2026. The 83%/29% readiness pair draws on the [Cisco AI Readiness Index 2025](https://www.cisco.com/c/m/en_us/solutions/ai/readiness-index.html) (8,000+ senior IT and business leaders, 30 markets, double-blind, published 14 October 2025); both percentages are shares of the same surveyed population.
11. [Google Threat Intelligence Group — Widespread Data Theft Targets Salesforce Instances via Salesloft Drift](https://cloud.google.com/blog/topics/threat-intelligence/data-theft-salesforce-instances-via-salesloft-drift). August 2025. 700+ organizations potentially impacted.


---

# Cybersecurity Due Diligence for M&A: A Practitioner's Framework

Author: Dritan Saliovski · Published: 2026-02-20 · Category: M&A Due Diligence · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/ultimate-guide-cybersecurity-due-diligence-ma

> A three-tier framework for M&A cybersecurity due diligence - from 24-hour screening to post-close monitoring - with Expected Annual Loss quantification.
Cybersecurity due diligence in M&A has evolved through three generations, from IT audit checkbox to compliance framework to the risk-based, quantitative value protection model that now determines deal outcomes. This practitioner's framework covers the eight assessment domains, three-tier investment structure, and Expected Annual Loss methodology that PE firms and corporate acquirers use to make defensible investment decisions.

The economic case for proper diligence is now harder to ignore. FTI Consulting's [CISO Redefined III](https://www.globenewswire.com/news-release/2026/03/17/3257322/0/en/fti-consulting-study-reveals-cybersecurity-attacks-are-an-increasing-threat-to-m-a.html) survey, published March 17, 2026, found that **42% of senior executives whose deals were hit by a cyber incident around close reported a significant reduction in deal value, 58% said financial targets were impaired, and 20% experienced deal delays**. These figures replace the older Kroll benchmarks most guides currently cite and provide the fresher anchor points investment committees expect to see.

## Key Takeaways

- An eight-domain framework, governance, infrastructure, applications, data protection, identity, incident response, third-party risk, and compliance, provides complete coverage for middle-market M&A cybersecurity assessment
- The three-tier investment structure we use optimizes ROI: pre-LOI screening ($5K-15K, 24-72 hours) eliminates deal-breakers; comprehensive assessment ($50K-150K, 3-4 weeks) informs valuation and structure; post-close monitoring ($15K-30K annually) protects value through the hold period
- Expected Annual Loss (EAL), breach probability × expected impact across identified scenarios, translates technical findings into the financial risk figures that drive purchase price adjustments and holdback sizing; in our engagements those figures have typically landed in the $2-8M range
- In our engagements, technical assessment has uncovered 65-75% of material findings that document-only review misses: vulnerability scanning, configuration analysis, and architecture review reveal risks invisible in management-prepared documentation
- Industry-specific requirements vary significantly: healthcare requires HIPAA and medical device security focus; financial services demands regulatory examination review; SaaS requires SOC 2 and multi-tenancy assessment; manufacturing requires OT/IT segmentation evaluation

## How the Assessment Has Evolved

Third-generation cybersecurity due diligence differs fundamentally from its predecessors. The defining feature is quantification, translating technical findings into financial figures that inform valuation models and deal structure.

| Generation | Period | Approach | Primary Limitation |
|---|---|---|---|
| First | 2000-2010 | IT audit checklist | No financial quantification; treated as IT-only issue |
| Second | 2010-2018 | Compliance-focused | Framework coverage without deal integration |
| Third | 2018-present | Risk-based value protection | Quantitative, deal-integrated, board-level visibility |
| Fourth (emerging) | 2024+ | AI-enhanced intelligence | Continuous pipeline monitoring; predictive risk modeling |

Without quantification, even technically excellent diligence fails to influence deal outcomes. A report identifying several hundred critical vulnerabilities is not actionable. A report translating those vulnerabilities into a $3.2M expected annual loss that drives a $4M holdback is.

## The Eight Assessment Domains

A complete cybersecurity assessment evaluates these domains. The hour estimates below are drawn from Innovaiden's own engagement experience rather than a published benchmark study: for middle-market transactions, total expert assessment time in our engagements runs 40-60 hours, and industry-specific overlays add 8-16 hours for healthcare, financial services, or OT environments.

| Domain | Primary Evaluation Focus | Assessment Time |
|---|---|---|
| **Governance** | CISO reporting line, board oversight, security policies | 4-6 hours |
| **Infrastructure** | Patch management, EDR, network segmentation, cloud config | 8-12 hours |
| **Applications** | SDLC security, API controls, vulnerability tracking | 6-8 hours |
| **Data protection** | Encryption, data classification, DLP, cross-border transfers | 4-6 hours |
| **Identity management** | MFA adoption, PAM, access reviews, third-party access | 4-6 hours |
| **Incident response** | IR plan maturity, test frequency, historical incident review | 4-6 hours |
| **Third-party risk** | Vendor inventory, risk assessments, critical vendor coverage | 4-6 hours |
| **Compliance** | Active certifications, audit findings, regulatory history | 4-6 hours |

The gap between document review findings and technical assessment findings is typically largest in infrastructure and identity management, exactly the domains where exploitable vulnerabilities originate.

## Expected Annual Loss: Translating Risk to Deal Economics

EAL methodology is the translation layer between technical findings and deal terms:

**EAL = Σ (Breach Probability × Expected Impact) across all material scenarios**

For a SaaS target with inadequate access controls and 150,000 customer records:

*The probabilities below are illustrative, chosen to demonstrate the arithmetic. In a live engagement each is derived from the target's specific control gaps, sector incidence data and exposure surface. They are not transferable defaults.*

| Scenario | Annual Probability | Expected Impact | EAL Contribution |
|---|---|---|---|
| Ransomware | 25% | $3.5M | $875K |
| Data breach (customer records) | 15% | $8.2M | $1.23M |
| Regulatory enforcement (GDPR) | 10% | $4.0M | $400K |
| **Total EAL** | | | **$2.5M** |

An annual exposure of that size sits inside the $3-8M holdback over 24 months and $10-15M cybersecurity indemnification cap our engagements typically produce for material findings, numbers both investment committee and counterparty can negotiate around. Without EAL methodology, cybersecurity findings remain a narrative risk list with no deal structure anchor.

## The Three-Tier Investment Structure

The three-tier approach we use eliminates the false choice between thorough-but-slow and fast-but-superficial. The investment figures below are Innovaiden's own engagement price points, not a survey of market rates:

| Tier | Timing | Investment | Output |
|---|---|---|---|
| **Pre-LOI screening** | Before LOI submission | $5K-15K | Go/no-go, preliminary risk summary, key diligence flags |
| **Comprehensive assessment** | Post-LOI, pre-close | $50K-150K | Full report, EAL, deal structure recommendations |
| **Post-close monitoring** | Ongoing through hold | $15K-30K/year | Remediation validation, emerging risk alerts |

The screening tier prevents the $50K-150K confirmatory diligence spend on deals that fail screening, because material issues surface before that commitment is made. Across a firm evaluating 200 annual opportunities, screening out 15-20% of problematic targets means 30-40 targets never reach a $50-150K confirmatory assessment, avoiding $1.5-3M of misdirected diligence spend a year at the lower end of that fee range. That calculation reflects the screening hit rate we see in our own engagements.

## Industry-Specific Assessment Requirements

Standard framework coverage provides the foundation; industry-specific overlays address sector risk concentrations that generic assessment misses.

| Sector | Primary Additional Focus |
|---|---|
| **Healthcare** | HIPAA Business Associate Agreements, medical device FDA cybersecurity documentation, OCR enforcement history |
| **Financial services** | FFIEC examination ratings, PCI-DSS QSA audit reports, fraud detection system architecture |
| **SaaS / Technology** | SOC 2 Type II report and exception analysis, multi-tenancy isolation architecture, open source component management |
| **Manufacturing** | OT/IT network segmentation, ICS/SCADA patch management, remote access controls to production systems |

Healthcare receives particular scrutiny because cybersecurity findings can prevent deal close. HIPAA imposes no change-of-ownership approval requirement, and OCR has no authority over transactions, but buyers inherit successor liability for a target's pre-closing HIPAA violations, and any OCR resolution agreement or corrective action plan already in force binds successors and assigns. Separately, a growing number of state healthcare transaction review laws, plus facility licensure and Medicare/Medicaid change-of-ownership rules, do require pre-closing notice or approval.

## What This Means in Practice

Deal teams that apply this three-tier framework from the start of a process, rather than commissioning diligence as a confirmatory exercise post-LOI, make structurally better decisions. They price more accurately, structure holdbacks around quantified risk, and avoid post-close surprises that erode hold-period returns. For how findings translate into specific deal structure and valuation adjustments, see [how cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value). For rapid external assessment in competitive processes, see [digital due diligence in 24-72 hours](/insights/speed-matters-digital-due-diligence-ma). For how GenAI is accelerating due diligence workflows with appropriate governance, see [GenAI in tech and cyber due diligence](/insights/genai-tech-cyber-due-diligence-ma).

The M&A Cybersecurity Due Diligence Checklist covers the complete evaluation framework for all eight domains, EAL calculation templates, industry-specific assessment overlays, and deal structure templates for translating findings into holdbacks, indemnification caps, and insurance requirements.

For how AI-augmented vulnerability discovery is reshaping what counts as a competent cybersecurity assessment, see our analysis of [Project Glasswing and the new assessment baseline](/insights/project-glasswing-cybersecurity-assessment-baseline). Deal teams commissioning cybersecurity due diligence should expect acquirers and insurance markets to begin asking whether AI-augmented methods were used.

## Sources

*Figures attributed to Innovaiden engagement experience reflect our own middle-market deal work and are not drawn from a published benchmark study.*

1. [IBM - Cost of a Data Breach Report 2023](https://www.ibm.com/reports/data-breach)
2. HHS OCR. HIPAA Enforcement and Corrective Action Plans. hhs.gov. 2025.
3. [AICPA - SOC 2 Type II Reporting Framework](https://www.aicpa-cima.com/topic/audit-assurance/audit-and-assurance-greater-than-soc-2)
4. [PCI Security Standards Council - PCI-DSS Compliance](https://www.pcisecuritystandards.org/)
5. [FFIEC - IT Examination Handbook](https://ithandbook.ffiec.gov/)
6. [FDA - Cybersecurity in Medical Devices](https://www.fda.gov/medical-devices/digital-health-center-excellence/cybersecurity)
7. [FTI Consulting — CISO Redefined III: Cybersecurity Attacks an Increasing Threat to M&A](https://www.globenewswire.com/news-release/2026/03/17/3257322/0/en/fti-consulting-study-reveals-cybersecurity-attacks-are-an-increasing-threat-to-m-a.html). March 17, 2026.


---

# GenAI in Tech & Cyber Due Diligence: 10 Practical Uses That Don't Require You to Sacrifice Data Control

Author: Dritan Saliovski · Published: 2026-01-15 · Category: M&A Due Diligence · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/genai-tech-cyber-due-diligence-ma

> Practical GenAI applications for tech and cyber due diligence in M&A, with the governance controls that keep deal-confidential data protected.
Generative AI adoption in M&A has moved from pilot programs to embedded workflows in under 18 months. According to Deloitte's 2025 GenAI in M&A Survey of 1,000 senior corporate and PE leaders, 86% of responding organizations have integrated GenAI into their M&A processes, and 83% have invested $1 million or more specifically for deal team use cases. McKinsey's survey of active users reports an average cost reduction of 20% and deal cycle compression of 30-50% among 40% of respondents. The technology works. The question for deal teams is no longer whether to use it: it's how to use it without creating a data governance problem that undermines the deal itself.

## Key Takeaways

- 86% of corporate and PE organizations have integrated GenAI into M&A workflows; 65% did so within the past year (Deloitte, 2025)
- 67% of respondents cite data security as the leading barrier to broader GenAI adoption in deal processes (Deloitte, 2025)
- 12.6% of all sensitive data exposures in GenAI tools involved M&A data, the third-highest category after code and legal discourse (Harmonic Security, January 2026)
- Gartner forecasts that by 2027, more than 40% of AI-related data breaches will stem from cross-border GenAI misuse
- Deal teams that embed GenAI into existing secure infrastructure instead of layering consumer tools on top reduce exposure while capturing the efficiency gains

<StatGrid>
  <Stat value="86%" label="Of organizations have integrated GenAI into M&A workflows" source="Deloitte GenAI in M&A Survey, 2025" />
  <Stat value="67%" label="Cite data security as the leading barrier to broader adoption" source="Deloitte GenAI in M&A Survey, 2025" />
  <Stat value="12.6%" label="Of all sensitive GenAI data exposures involved M&A data" source="Harmonic Security, January 2026" />
</StatGrid>

## The Governance Gap Is the Real Risk

The adoption curve is steep, but the controls haven't kept pace. Deloitte's survey found 67% of respondents flagging data security as a leading concern, followed by data quality and availability at 65%. A January 2026 analysis by Harmonic Security of 22.4 million GenAI prompts across six major platforms found that 2.6% contained company-sensitive data. M&A data accounted for 12.6% of all sensitive exposures, behind only source code and legal documents. Critically, 17% of exposures occurred through personal or free-tier accounts with zero organizational visibility.

The risk isn't that an analyst uses AI to summarize a management presentation. The risk is that they paste EBITDA schedules, customer lists, or proprietary technology assessments into a consumer-grade tool that may retain inputs for model training, lacks enterprise audit trails, and operates outside the deal's confidentiality perimeter. In a competitive process, that's a breach of the NDA before the LOI is signed.

## 10 Practical Applications Across the Deal Lifecycle

The following use cases map to where GenAI delivers measurable value in tech and cyber due diligence, paired with the data governance control that makes each one defensible.

| # | Use Case | Deal Stage | Data Classification | Governance Control |
|---|---|---|---|---|
| 1 | Target Screening and Market Mapping | Pre-LOI | Public only | No proprietary deal data in the system at this stage |
| 2 | VDR Document Review and Extraction | Confirmatory DD | Deal-confidential | AI processing must remain within the VDR's SOC 2 / ISO 27001 certified environment |
| 3 | Contract Clause Analysis | Confirmatory DD | Deal-confidential | Run extraction within the VDR or a dedicated secure instance; never paste contract text into consumer tools |
| 4 | Technology Stack Verification | Pre-LOI / Confirmatory | External signals only | External-only data; no target access required |
| 5 | Compliance and Regulatory Exposure Mapping | Confirmatory DD | Public filings only | Use publicly available privacy policies and regulatory filings; avoid uploading internal audit reports |
| 6 | Financial Data Normalization and Analysis | Confirmatory DD | Deal-confidential | Enterprise-licensed tools with DPA; financial data stays within the acquirer's controlled environment |
| 7 | Customer Sentiment and Churn Signal Analysis | Confirmatory DD | Public data only | Public review and social data only; supplement, not replace, primary customer reference calls |
| 8 | Cybersecurity Posture Assessment | Pre-LOI / Confirmatory | External only | Entirely external; no interaction with the target's systems |
| 9 | Integration Planning and Synergy Modeling | Post-LOI | Acquirer-confidential | Run on the acquirer's own infrastructure; integration data must not leave controlled systems |
| 10 | Regulatory Filing and Antitrust Analysis | Post-signing | Public regulatory data | Public data only; cross-reference with legal counsel; GenAI supports analysis, does not replace legal judgment |

## The Control Framework: Three Non-Negotiable Principles

Every use case above follows three principles that separate defensible AI adoption from liability creation.

**Data stays inside the deal perimeter.** If the AI tool processes deal-confidential information, it must operate within an environment covered by the deal's NDA, the VDR provider's security certifications, or the acquirer's enterprise infrastructure. Consumer-grade AI tools, regardless of provider, are outside this perimeter.

**Audit trails exist for every interaction.** Every AI-assisted analysis must produce a traceable record: what data went in, what the model produced, when, and by whom. This is not optional. It's required for LP reporting, co-investor due diligence defense, and regulatory compliance under the EU AI Act's transparency requirements.

**Human review is the final gate.** GenAI accelerates analysis. It does not make investment decisions. Every AI-generated finding (contract risk, compliance gap, financial anomaly) must be validated by a qualified professional before it informs deal economics or investment committee materials. The 35% of organizations still hesitating over GenAI error rates (Deloitte, 2025) are right to exercise caution, but the answer is human-in-the-loop governance, not avoidance.

## What This Means for Deal Teams Now

The firms capturing the most value from GenAI in due diligence are not the ones with the most advanced tools. They're the ones with the clearest governance frameworks: which tools are approved before the deal, where data can flow, who reviews AI outputs, and how exceptions are escalated.

For the broader AI data governance framework that applies beyond M&A contexts, see [AI data governance: the same problem enterprises already solved](/insights/ai-data-governance-enterprise-guide). For deal teams evaluating targets that deploy AI agents, which introduce security considerations beyond traditional GenAI tools, see the [enterprise AI agent security risks](/insights/ai-agent-security-risks-enterprise) and the [security-first deployment framework](/insights/ai-agent-deployment-security-framework). For the complete M&A due diligence methodology, see our [practitioner's framework for cybersecurity due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma).

The full Intelligence Brief covers the complete use case matrix with data governance controls, a GenAI tool evaluation framework, a deal-stage adoption roadmap, and a ready-to-use AI governance policy template for deal teams.

## Sources

1. Deloitte. 2025 GenAI in M&A Survey. deloitte.com. 2025.
2. McKinsey. How GenAI Is Transforming M&A. mckinsey.com. 2025.
3. Harmonic Security. Sensitive Data Exposure in GenAI Tools. harmonic.security. 2025.
4. [Gartner — AI-Related Data Breach Predictions](https://www.gartner.com/en/newsroom/press-releases/2025-02-17-gartner-predicts-forty-percent-of-ai-data-breaches-will-arise-from-cross-border-genai-misuse-by-2027). 2025.


---

# How Cybersecurity Due Diligence Protects M&A Deal Value

Author: Dritan Saliovski · Published: 2025-10-14 · Category: M&A Due Diligence · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/cybersecurity-due-diligence-protects-deal-value

> In our middle-market engagements, material cybersecurity findings have typically driven 8-25% valuation adjustments. Here's how diligence informs deal structure and protects buyer ROI.
Cybersecurity due diligence in M&A is not a technical exercise, it is a value protection mechanism that directly determines purchase price, deal structure, and post-close returns. In our middle-market engagements, material findings have typically driven 8-25% valuation adjustments, while issues missed during diligence have typically generated $4-8M in average unexpected costs post-close.

## Key Takeaways

- In our middle-market engagements, material cybersecurity issues have typically driven 8-25% valuation adjustments; post-close incidents when issues are undetected have caused $4-8M average value destruction
- Deal structure is the primary risk transfer mechanism: holdbacks of $3-8M over 24 months address remediation risk; cybersecurity-specific indemnification caps of $10-25M should be set separately from general indemnity baskets
- Pre-LOI screening at $5K-15K prevents the $50K-150K confirmatory diligence spend on deals that fail screening, and in our experience material issues eliminate 15-20% of pipeline targets before expensive commitment
- Undiscovered privacy violations, GDPR, CCPA, HIPAA, expose buyers to $2-50M+ in fines and remediation, with breach notification obligations capable of destroying customer relationships worth 20-40% of target revenue in the cases we have assessed
- In our experience, sellers who conduct pre-sale assessment 6-12 months before marketing have typically achieved 8-15% higher valuations through proactive remediation and reduced buyer uncertainty

<StatGrid>
  <Stat value="8-25%" label="Valuation adjustment range for material cybersecurity findings in our middle-market engagements" source="Innovaiden engagement experience" />
  <Stat value="$4.45M" label="Average cost of a data breach globally in 2023" source="IBM Cost of Data Breach Report, 2023" />
  <Stat value="12-18%" label="Of the transactions we have advised on, share terminated post-LOI over material cybersecurity findings" source="Innovaiden engagement experience" />
</StatGrid>

## The Real Cost of Missed Cybersecurity Issues

The financial impact of inadequate cybersecurity due diligence extends far beyond direct remediation. FTI Consulting's [CISO Redefined III](https://www.globenewswire.com/news-release/2026/03/17/3257322/0/en/fti-consulting-study-reveals-cybersecurity-attacks-are-an-increasing-threat-to-m-a.html) survey, published March 17, 2026, quantified the post-close cost more directly than prior benchmarks: **42% of senior executives whose deals were hit by a cyber incident around close reported a significant reduction in deal value, 58% said financial targets were impaired, and 20% saw the deal delayed**. The implication for the buyer side: missed issues trigger four distinct categories of value destruction. In our own middle-market engagements those categories are regulatory penalties from unidentified privacy violations, breach response costs averaging $4-8M for incidents affecting 10,000-100,000 records, customer attrition of 20-40% following significant breaches, and integration cost overruns when security architecture proves incompatible with acquirer systems.

For sellers, issues that surface unexpectedly during confirmatory diligence regularly trigger re-trades or deal terminations. In our experience, post-LOI terminations have cost both parties $500K-$1.5M in transaction costs, a preventable outcome when pre-marketing assessment identifies and addresses issues first.

## How Findings Translate to Deal Structure

Every material finding has a structural response. The decision framework below, including the valuation impacts and dollar ranges in it, reflects Innovaiden's own middle-market engagement experience rather than a published benchmark study:

| Finding Severity | Valuation Impact | Structural Response |
|---|---|---|
| **Critical** (active breach, regulatory investigation) | Deal termination or 20-25% reduction | Pass or require full remediation pre-close |
| **High** (material compliance gaps, critical unpatched vulnerabilities) | 10-20% reduction | Holdback $3-8M, 24 months; enhanced indemnification |
| **Medium** (control weaknesses, non-critical compliance gaps) | 5-10% reduction | Working capital adjustment; standard indemnification |
| **Low** (process improvements, low-probability risks) | 0-3% reduction | Representations and warranties; remediation roadmap |

In our engagements, holdback sizing follows a consistent principle: cover the 24-month remediation cost at 1.5-2x estimated cost to account for scope expansion, which typically produces a $3-8M holdback for material findings. Cyber-specific indemnification caps ($10-25M) should be set separately from the general indemnification basket, cybersecurity exposure is non-linear and should not be diluted by routine operational claims.

## The Deal Lifecycle View

Cybersecurity protection at each stage serves a distinct purpose. Compressing or skipping any stage creates risk at the next.

**Pre-LOI screening** prevents the $50K-150K confirmatory diligence spend on deals that fail screening, eliminating deal-breaking issues before that commitment is made. External-only assessment in 24-72 hours identifies active regulatory investigations, breach history, critical external vulnerabilities, and dark web credential exposure that would trigger deal failure or severe repricing.

**Confirmatory diligence (post-LOI)** provides the full evidentiary basis for valuation adjustment, deal structure, and integration planning. A complete eight-domain assessment, governance, infrastructure, applications, data protection, identity, incident response, third-party risk, and compliance, typically takes 3-4 weeks for middle-market targets.

**Post-close monitoring** validates remediation against the agreed roadmap, supports holdback release decisions, and protects value through the integration period by detecting emerging threats before they affect operating performance.

## A Worked Example: The $50M Adjustment

*The following is a composite illustration based on typical middle-market healthcare technology findings, not a specific engagement.*

A private equity firm targeting a healthcare technology company ($600M proposed valuation, 8.0x revenue) commissioned cybersecurity diligence that surfaced:

- Incomplete HIPAA compliance, missing Business Associate Agreements with 12 vendors, inadequate PHI access controls
- 312 unpatched critical vulnerabilities in production systems, including several with active exploit toolkits
- No tested incident response plan and incomplete breach notification procedures
- 35% annual breach probability based on identified vulnerabilities (vs. 8% sector baseline)

The findings translated directly into deal structure adjustments, with the holdback set at the top of the $3-8M range our engagements typically produce for material findings:

| Deal Term | Amount |
|---|---|
| Purchase price reduction | $50M (8.3%) |
| Post-close holdback | $8M over 24 months |
| Cybersecurity indemnification cap | $15M (separate from general basket) |
| Mandatory cyber insurance at close | $10M policy, buyer as co-insured |

The deal closed at the adjusted price. Remediation cost $4.8M over 18 months, materially reducing the target's exposure to an OCR enforcement action.

## The Seller Perspective

In our middle-market engagements, sellers who invest in pre-sale cybersecurity assessment 6-12 months before launching a process have typically achieved better outcomes across every deal metric. The value impacts below are drawn from that engagement experience:

| Action | Value Impact |
|---|---|
| Commission independent assessment | Identify and remediate before diligence surfaces them |
| Obtain SOC 2 Type II or ISO 27001 | Signal maturity; 8-15% valuation premium |
| Prepare security documentation package | Reduce diligence timeline 25-30% |
| Implement continuous monitoring | Prevent new issues between assessment and close |

The investment, typically $50K-150K for assessment plus remediation, has typically generated $500K-$2M in valuation protection in our experience by reducing buyer uncertainty and eliminating re-trade risk.

## What This Means in Practice

Cybersecurity due diligence that functions as a value protection mechanism, not a compliance checkbox, changes deal outcomes. Buyers who quantify risk, structure appropriately, and monitor through the hold period consistently avoid the post-close surprises that erode projected returns. For the complete assessment methodology, see our [practitioner's framework for M&A cybersecurity due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma). For the five technology risks that most commonly drive valuation adjustments, see [five technology risks that determine M&A outcomes](/insights/top-technology-risks-ma-due-diligence). For rapid assessment in competitive processes, see [digital due diligence in 24-72 hours](/insights/speed-matters-digital-due-diligence-ma).

The M&A Deal Value Protection Framework covers risk quantification methodology, structural response templates for each finding severity tier, and the complete seller-side assessment checklist for pre-marketing preparation.

## Sources

*Figures attributed to Innovaiden engagement experience reflect our own middle-market deal work and are not drawn from a published benchmark study.*

1. [IBM - Cost of a Data Breach Report 2023](https://www.ibm.com/reports/data-breach)
2. HHS OCR. HIPAA Enforcement and Compliance. hhs.gov. 2025.
3. [European Commission - GDPR Fines and Enforcement](https://commission.europa.eu/law/law-topic/data-protection_en)
4. [California Attorney General - CCPA Enforcement](https://oag.ca.gov/privacy/ccpa)
5. [FTI Consulting — CISO Redefined III: Cybersecurity Attacks an Increasing Threat to M&A](https://www.globenewswire.com/news-release/2026/03/17/3257322/0/en/fti-consulting-study-reveals-cybersecurity-attacks-are-an-increasing-threat-to-m-a.html). March 17, 2026.


---

# Five Technology Risks That Determine M&A Deal Outcomes

Author: Dritan Saliovski · Published: 2025-07-08 · Category: M&A Due Diligence · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/top-technology-risks-ma-due-diligence

> In our middle-market engagements, cybersecurity vulnerabilities, technical debt, privacy gaps, IP ambiguity, and integration complexity have reduced IRR by 8-12 points in affected transactions.
Five technology risk categories consistently determine whether M&A transactions achieve their projected returns, and they surface repeatedly across middle-market deals regardless of industry. Identifying and quantifying them during diligence protects buyer economics; in our engagements, missing them post-close has reduced IRR by an average of 8-12 percentage points.

## Key Takeaways

- Five risk categories dominate: cybersecurity vulnerabilities, technical debt, privacy compliance gaps, IP ownership ambiguity, and integration complexity, each capable of driving 8-25% valuation adjustments in our engagement experience
- Expected Annual Loss (EAL) modeling translates cybersecurity findings into financial deal terms: probability × impact across identified scenarios produces the $2-8M risk exposure figures we typically see for material findings
- Technical debt directly constrains growth, and in the high-debt organizations we have assessed, companies spending 55%+ of engineering time on maintenance (against a roughly 30% norm) cannot execute the product roadmap underpinning the acquisition thesis
- Privacy compliance gaps create non-negotiable regulatory risk: GDPR fines reach 4% of global revenue; CCPA penalties run $7,500 per intentional violation; first-year remediation for mid-market SaaS targets runs $500K-900K
- Integration complexity is routinely underestimated: in our engagements, monolithic architectures with shared databases have extended integration timelines from a planned 9-12 months to 18-36 months, with cost overruns of 50-100%

<StatGrid>
  <Stat value="8-12pt" label="Average IRR reduction from technology-related post-close surprises in our engagements" source="Innovaiden engagement experience" />
  <Stat value="$4.45M" label="Average cost of a data breach globally in 2023" source="IBM Cost of Data Breach Report, 2023" />
  <Stat value="55%" label="Engineering time on maintenance in the high-debt organizations we have assessed, against a roughly 30% norm" source="Innovaiden engagement experience" />
</StatGrid>

## Risk 1: Cybersecurity Vulnerabilities

Cybersecurity risks are present in virtually every middle-market M&A target. The relevant question is not whether vulnerabilities exist, they always do, but whether management knows about them, whether systematic remediation processes are in place, and what the financial exposure looks like if exploited.

Common findings include unpatched systems with publicly known exploits, absent multi-factor authentication on administrative accounts, misconfigured cloud storage exposing customer data, and former employee accounts still active months after termination. Each has a predictable financial consequence.

For a mid-market SaaS company with 100,000 customer records and inadequate security controls, a single breach has typically generated costs across the categories below. The ranges reflect Innovaiden's own engagement experience rather than a published benchmark study:

| Cost Component | Estimated Range |
|---|---|
| Customer notification | $2M-$5M |
| Credit monitoring (2 years) | $3M-$8M |
| Forensics and legal response | $0.6M-$1.4M |
| Regulatory penalties | $0.5M-$2M |
| **Total direct exposure** | **$6M-$16M** |

In our middle-market engagements, material cybersecurity findings have typically driven 8-25% purchase price adjustments and $3-8M holdbacks over 24 months.

**The PowerSchool/Bain inflection.** On March 18, 2026, a US federal court (S.D. Cal., In re PowerSchool Holdings, Inc. and PowerSchool Group, LLC Customer Security Breach Litigation, No. 3:25-md-03149-BEN-MSB) let plaintiffs' negligence and aiding-and-abetting claims against **Bain Capital itself** proceed over the 2024 PowerSchool breach. This is the first US ruling to advance sponsor-level liability claims for a portfolio company's cyber failure. The cost ceiling for weak diligence is no longer a write-down or a holdback — it is the sponsor named in the suit. For the five-layer operational defense, see [the practitioner's playbook after Bain/PowerSchool](/insights/pe-sponsor-cyber-liability-bain-powerschool); for the broader PE diligence methodology, see [cybersecurity due diligence in M&A](/insights/cybersecurity-due-diligence-pe-firms).

## Risk 2: Technical Debt and Scalability Constraints

Technical debt, accumulated shortcuts, outdated architecture, and deferred modernization, directly constrains the growth plan underpinning most M&A valuations. In the high-debt engineering organizations we have assessed, teams spend 55%+ of capacity on maintenance, leaving insufficient bandwidth for the product development that justifies acquisition price.

Warning signals visible in external assessment: monolithic architecture for a SaaS product, outdated runtime versions, large numbers of open source dependencies without version tracking, and absence of CI/CD infrastructure.

Remediation investment scales with platform age:

| Architecture Age | Modernization Investment | Timeline |
|---|---|---|
| 3-5 years | $500K-$2M | 6-12 months |
| 5-8 years | $2M-$5M | 12-18 months |
| 8+ years | $5M-$15M | 18-36 months |

These costs should enter the financial model as working capital adjustments, not post-close surprises.

## Risk 3: Privacy Compliance Gaps

Privacy compliance gaps create categorical regulatory risk. GDPR fines reach 4% of global annual revenue. CCPA penalties run $7,500 per intentional violation. HIPAA settlements average $2-5M per violation category per year. Companies operating across EU, US, and APAC markets frequently accumulate compliance debt without realizing it.

Common patterns: consent mechanisms that don't meet GDPR's "freely given" standard, retention schedules that exceed legal limits, and third-party data sharing without adequate contractual protection. None of these appear on management balance sheets.

First-year remediation for a SaaS company with meaningful EU exposure typically runs $500K-900K. The ongoing compliance program adds $200K-500K annually, a permanent operating cost the financial model must reflect.

## Risk 4: Intellectual Property Ambiguity

IP ambiguity is among the most frequently underestimated risks in technology M&A. The core value of most software companies sits in code, and that code's legal ownership is often less clear than founders assume.

Three patterns appear regularly:

| Issue | Prevalence | Risk |
|---|---|---|
| Founder IP not formally assigned to company entity | Common in early-stage development | Core codebase may not be owned by the target |
| GPL/AGPL components in proprietary products | Frequent in full-stack applications | "Copyleft" obligations can void commercial licensing |
| Contractor-developed code without work-for-hire agreements | Widespread pre-2018 | IP ownership contested without written assignment |

IP ambiguity does not always kill deals, but in our experience it has consistently required escrow arrangements in the $2-5M range until legal remediation is confirmed, creating timeline risk and deal uncertainty.

## Risk 5: Integration Complexity

Integration complexity is the risk most frequently underestimated in LOI negotiations because it depends not just on the target's architecture, but on the acquirer's. A target with well-designed microservices may present trivial integration challenges to one buyer and substantial ones to another.

Patterns that drive integration overruns: flat network architectures incompatible with the buyer's SOC 2 compliance requirements, incompatible identity platforms requiring SSO migration, SIEM conflicts requiring platform consolidation, and data governance practices that violate the acquirer's privacy commitments.

In our engagement experience, integration cost overruns of 50-100% are common when diligence relies on architectural documentation alone. Technical assessment that identifies specific incompatibilities at the domain level enables accurate budgeting and credible revised IRR projections.

## What This Means in Practice

Deal teams that quantify these five risk categories during diligence, not after close, make informed pricing decisions, build appropriate deal structures, and avoid post-close surprises that erode the returns they projected. Each category has a translation into deal terms: EAL modeling for cybersecurity, working capital adjustments for tech debt, escrow requirements for IP ambiguity, and integration cost revisions for architecture gaps. For the complete cybersecurity assessment methodology, see our [practitioner's framework for M&A due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma). For how findings translate into deal structure and valuation protection, see [how cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value). For targets deploying AI agents, an emerging risk category, see the [enterprise AI agent security risks](/insights/ai-agent-security-risks-enterprise).

The M&A Technology Risk Assessment Checklist covers the evaluation framework for each category, including specific data points to request, questions to put to management, and remediation cost benchmarks for deal modeling.

## Sources

*Figures attributed to Innovaiden engagement experience reflect our own middle-market deal work and are not drawn from a published benchmark study.*

1. [IBM - Cost of a Data Breach Report 2023](https://www.ibm.com/reports/data-breach)
2. [European Commission - GDPR Fines and Enforcement](https://commission.europa.eu/law/law-topic/data-protection_en)
3. [California Attorney General - CCPA Enforcement and Penalties](https://oag.ca.gov/privacy/ccpa)
4. HHS OCR. HIPAA Enforcement Actions and Settlements. hhs.gov. 2025.
5. [AICPA - SOC 2 Type II Reporting Framework](https://www.aicpa-cima.com/topic/audit-assurance/audit-and-assurance-greater-than-soc-2)
6. [Womble Bond Dickinson — Unprecedented: PE Firm Potentially on the Hook for Portfolio Company's Data Breach (Bain / PowerSchool)](https://www.womblebonddickinson.com/us/insights/alerts/unprecedented-private-equity-firm-potentially-hook-portfolio-companys-data-breach). 2026.
7. [Bloomberg Law — Bain Struggles to Dismiss PowerSchool Data Breach Claims](https://news.bloomberglaw.com/litigation/bain-struggles-to-dismiss-powerschool-user-data-breach-claims). March 2026.


---

# Digital Due Diligence in 24-72 Hours: The M&A Speed Advantage

Author: Dritan Saliovski · Published: 2025-05-12 · Category: M&A Due Diligence · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/speed-matters-digital-due-diligence-ma

> In our middle-market engagements, roughly 72% of quality deals have involved multiple bidders. External-only digital due diligence delivers comprehensive technology intelligence in 24-72 hours.
In competitive M&A processes, the ability to complete comprehensive digital due diligence in 24-72 hours is now a deal-winning capability, not a nice-to-have. In our middle-market engagements, roughly 72% of quality deals have involved multiple bidders and seller-controlled timelines, and buyers who rely on traditional 4-6 week assessment processes simply don't compete for the best assets.

## Key Takeaways

- In our middle-market engagements, roughly 72% of quality deals involve multiple bidders with compressed, seller-controlled timelines, and traditional 4-6 week technology diligence cannot meet this requirement
- Our external-only assessment draws on 500+ data sources covering cybersecurity, technology stack, privacy compliance, and software, delivering complete domain coverage without target access or cooperation
- Pre-LOI screening at $5K-15K prevents the $50K-150K confirmatory diligence spend on deals that fail screening; across 200 annual opportunities, the payback is 10-15x
- Material findings translate directly into deal terms: Expected Annual Loss (EAL) modeling has typically driven 8-25% valuation adjustments, $3-8M holdbacks over 24 months, and targeted representations and warranties in our engagements
- Hybrid methodology, rapid external assessment for LOI terms, targeted internal validation post-LOI, has cut total diligence time by 50-60% in our engagements while maintaining thoroughness

<StatGrid>
  <Stat value="72%" label="Of the quality middle-market deals we have worked on, share involving multiple bidders" source="Innovaiden engagement experience" />
  <Stat value="15-25%" label="Higher win rates for buyers using rapid external assessment in the competitive auctions we have supported" source="Innovaiden engagement experience" />
  <Stat value="8-12pt" label="Average IRR reduction from technology-related post-close surprises in our engagements" source="Innovaiden engagement experience" />
</StatGrid>

## Why Traditional Timelines Break Down

The access requirements of classic technology due diligence, system credentials, architecture documentation, and interview schedules with CTO, CISO, and engineering leads, routinely consume 2-3 weeks before substantive assessment begins. In seller-controlled processes with 3-4 week diligence windows, this leaves no room for meaningful evaluation.

The 2026 data is unambiguous: without AI augmentation, the trend is going the wrong direction. SRS Acquiom's [2026 M&A Due Diligence Study](https://www.srsacquiom.com/our-insights/m-a-due-diligence-study-2026/) found that 1 in 5 deal participants reported diligence timelines lengthening over the prior two years, with 57% saying their typical process now runs 1–3 months longer than it did. The "speed wins" narrative still holds — but it now belongs to the buyers who structurally compress the window through external-first or AI-augmented assessment, not to those waiting for the same access-and-interview cycle to compress on its own.

The consequences extend beyond losing deals. When buyers rush through diligence to meet seller timelines, critical issues go undetected. In our engagements, technology-related post-close surprises have reduced IRR by an average of 8-12 percentage points, exactly the outcome compressed timelines were meant to avoid.

Three structural forces have made this problem acute:

| Force | Effect on Buyers |
|---|---|
| Auction processes as the norm | Limited access windows, simultaneous bidder competition |
| Information asymmetry | Most targets lack full visibility into their own exposure; self-reporting alone is insufficient |
| Board-level cyber scrutiny | "Management said they're secure" no longer satisfies investment committees |

## What External-Only Assessment Covers

Our external-only digital assessment, completed in 24-72 hours, draws from 500+ data sources to evaluate the target's full digital footprint without requiring system access or target cooperation. Coverage spans four domains:

| Domain | What It Reveals |
|---|---|
| **Cybersecurity** | Exposed vulnerabilities, breach history, dark web credential exposure, attack surface |
| **Technology stack** | Infrastructure maturity, cloud architecture, technical debt indicators, scalability |
| **Privacy & compliance** | GDPR, CCPA, HIPAA posture from public policies, regulatory filings, enforcement records |
| **Software & IP** | Open source license risk, third-party dependency exposure, code repository signals |

This methodology does not replace confirmatory diligence after LOI, it eliminates deal-breakers early and informs the valuation and structure going in.

## High-Value Use Cases Across the Deal Lifecycle

**Pre-LOI screening**: A $5K-15K rapid assessment on pipeline targets prevents the $50K-150K confirmatory diligence spend on deals that fail screening. Across a typical mid-market PE firm evaluating 200 deals annually, screening out 15-20% of the pipeline means 30-40 targets never reach a $50-150K confirmatory assessment, which in our experience avoids $1.5-3M of misdirected diligence spend a year at the lower end of that fee range, while enabling faster go/no-go decisions.

**Competitive bid situations**: In auction processes where sellers permit 3-4 weeks of diligence, a 72-hour external assessment delivers independent technical validation in time to inform a credible LOI. In our experience, buyers with this capability have won 15-25% more competitive situations than those relying on management representations.

**Pre-access risk quantification**: Even in negotiated deals, buyers often cannot access target systems until definitive agreement. External assessment provides sufficient intelligence to size holdbacks, draft specific technology representations, and build a post-close remediation roadmap, all before legal close.

**Portfolio monitoring**: Ongoing quarterly assessments at $15K-30K per company have reduced security incidents across a portfolio by 20-30% in our engagements and support higher exit multiples by demonstrating sustained security maturity to potential acquirers.

## Converting Findings to Deal Terms

Speed without accuracy is worthless. The output of a rapid digital assessment must be actionable at the deal table. EAL modeling, multiplying breach probability by expected impact across identified scenarios, translates technical findings into financial language investment committees understand.

In our middle-market engagements, material findings have typically driven:

- 8-25% purchase price adjustments for infrastructure or compliance remediation requirements
- $3-8M holdbacks held for 24 months tied to specific remediation milestones
- Targeted representations and warranties for cybersecurity, data protection, and privacy
- Mandatory cyber insurance requirements at close, with buyer named as additional insured

## What This Means in Practice

Deal teams that treat technology diligence as a parallel workstream from day one, rather than a confirmatory exercise post-LOI, compress overall timelines and make structurally better investment decisions. The methodology exists to compete in the market as it actually operates, not as it existed a decade ago. For the complete assessment methodology beyond rapid screening, see our [practitioner's framework for M&A cybersecurity due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma). For the five technology risks that most commonly drive valuation adjustments, see [five technology risks that determine M&A outcomes](/insights/top-technology-risks-ma-due-diligence). For how GenAI is accelerating the process further, see [GenAI in tech and cyber due diligence](/insights/genai-tech-cyber-due-diligence-ma).

The M&A Digital Due Diligence Playbook covers the complete external assessment framework, decision triggers for escalating to full confirmatory diligence, and a structured EAL template for translating findings into valuation adjustments and deal structure.

## Sources

*Figures attributed to Innovaiden engagement experience reflect our own middle-market deal work and are not drawn from a published benchmark study.*

1. [Sophos - The State of Ransomware 2024](https://www.sophos.com/en-us/content/state-of-ransomware)
2. [European Commission - GDPR Official Text and Guidance](https://commission.europa.eu/law/law-topic/data-protection_en)
3. [California Attorney General - CCPA Enforcement and Penalties](https://oag.ca.gov/privacy/ccpa)
4. HHS OCR. HIPAA Enforcement Actions. hhs.gov. 2025.
5. [SRS Acquiom — 2026 M&A Due Diligence Study](https://www.srsacquiom.com/our-insights/m-a-due-diligence-study-2026/). 2026.
6. [ION Analytics Mergermarket — Best Practices in M&A Due Diligence 2026](https://ionanalytics.com/insights/mergermarket/best-practices-in-ma-due-diligence-2026/). 2026.


---

# Cybersecurity Due Diligence in M&A: What PE Firms Miss Before Close

Author: Dritan Saliovski · Published: 2025-02-01 · Category: M&A Due Diligence · Reading time: 5 min read · Canonical: https://www.innovaiden.com/insights/cybersecurity-due-diligence-pe-firms

> Most PE deal teams assess cybersecurity through questionnaires and limited-access reviews. Here's what that approach systematically misses, and why it matters at close.
Cybersecurity due diligence in M&A transactions has matured significantly over the past decade. Most PE deal teams now include some form of cyber assessment in their process. The problem isn't whether it gets done; it's how.

## Key Takeaways

- Self-reported questionnaires cannot surface vulnerabilities the target is unaware of, legacy system exposure, or credentials already circulating from prior breaches
- External intelligence, requiring no target access, consistently identifies material issues that traditional reviews miss until post-close
- In competitive processes where system access is restricted or unavailable, an external-first approach is the only viable option from day one
- **March 2026: a US federal court (S.D. Cal.) let negligence and aiding-and-abetting claims against Bain Capital proceed in the PowerSchool breach litigation — the first time a PE sponsor faces direct, sponsor-level liability for a portfolio company's cyber failure, not just deal-value impairment**

## Why This Just Got More Personal

For most of the last decade, weak cyber DD was a deal-value problem: post-close write-downs, indemnity claims under the SPA, occasional litigation against the target's directors and officers. The PowerSchool ruling changes the calculus. On March 18, 2026, Judge Roger T. Benitez of the Southern District of California allowed plaintiffs' negligence and aiding-and-abetting claims to proceed against **Bain Capital itself** — not just PowerSchool — over the 2024 breach that exposed records on tens of millions of US students.

The court's reasoning is the part deal teams should read carefully: a sponsor that exercises operational control over a portfolio company's risk decisions cannot fully isolate itself from those decisions when they go wrong. The implication for pre-close diligence is direct. Cyber findings that get acknowledged but not remediated, or accepted as "we'll fix it post-close" without a documented plan and budget, now sit on the sponsor's desk, not just the portfolio company's.

This is not yet a final ruling — the case proceeds. But the precedent that it can proceed at all is the material development. The cost of weak diligence used to be a write-down. The new floor is a sponsor named in the suit.

For the operational defense — the five-layer playbook for limiting sponsor-level exposure — see our [practitioner's defense playbook after Bain/PowerSchool](/insights/pe-sponsor-cyber-liability-bain-powerschool).

## The questionnaire trap

The default approach relies on target-completed questionnaires and a limited number of stakeholder interviews. This has a structural flaw: the information is entirely self-reported, and limited to what the target knows about itself.

Most organizations have significant blind spots in their own security posture. Legacy systems accumulate vulnerabilities that were never catalogued. Integrations added outside formal IT processes go undocumented. Credentials remain active long after employees leave. These don't appear in a well-formatted response to a 200-question spreadsheet, not because they are withheld, but because the target often isn't aware of them either.

## What external intelligence reveals

A properly structured external assessment, conducted without any target access, can identify issues that self-reported questionnaires systematically miss:

| Assessment area | What questionnaires miss | What external intelligence finds |
|---|---|---|
| Infrastructure vulnerabilities | Self-reported; depends on target's own awareness | Open ports, misconfigured cloud storage, and unpatched systems via passive scanning |
| Credential exposure | Not visible to the target; cannot be self-reported | Email and password combinations from prior breaches circulating on dark web forums |
| Third-party dependencies | Incomplete; limited to what target actively tracks | Vendors and integrations mapped externally, including untracked or shadow IT |
| Historical incidents | Limited to what the target has formally recorded | Public breach disclosures, regulatory filings, and litigation records |
| Technology stack | Claimed by target | Independently verified against job postings, DNS records, and open-source signals |
| Access required | Yes, limiting competitive processes | No, assessment runs from day one without notifying the company |

This isn't theoretical. In transaction after transaction, external intelligence surfaces material issues that traditional access-based reviews miss until post-close, when remediation costs have already been absorbed by the acquirer.

## The access problem

Traditional due diligence requires the target to grant meaningful system access. In competitive processes, this is often unavailable or restricted. In add-on acquisitions, the access request itself signals sensitivity that deal teams prefer to avoid.

An external-first approach removes this constraint entirely. Assessment begins the moment a target is identified, without notifying the company, without requesting access, and without consuming management bandwidth.

## What to look for in a cyber DD provider

| Capability | Why it matters for deal teams |
|---|---|
| Initial risk profile before first target conversation | Enables early go/no-go signalling before committing full DD resources |
| Independent technology stack verification | Validates what the target claims is actually in production |
| Full audit trail on all findings | Defensible to co-investors, LPs, and regulatory scrutiny under DORA and NIS2 |
| Findings translated to financial exposure | Connects technical risk to deal economics and SPA representations |

For the complete assessment methodology, see our [practitioner's framework for M&A cybersecurity due diligence](/insights/ultimate-guide-cybersecurity-due-diligence-ma). For how findings translate into deal economics, see [how cybersecurity due diligence protects deal value](/insights/cybersecurity-due-diligence-protects-deal-value). For rapid assessment in competitive processes, see [digital due diligence in 24-72 hours](/insights/speed-matters-digital-due-diligence-ma).

The checklist covers the key assessment domains we apply across every transaction, from initial screening through binding offer.

## Sources

1. [OWASP - Web Security Testing Guide](https://owasp.org/www-project-web-security-testing-guide/)
2. [Have I Been Pwned - Breach Database and Credential Exposure](https://haveibeenpwned.com/)
3. NIST. National Vulnerability Database. nist.gov. 2025.
4. [Womble Bond Dickinson — Unprecedented: PE Firm Potentially on the Hook for Portfolio Company's Data Breach (Bain / PowerSchool)](https://www.womblebonddickinson.com/us/insights/alerts/unprecedented-private-equity-firm-potentially-hook-portfolio-companys-data-breach). 2026.
5. [Bloomberg Law — Bain Struggles to Dismiss PowerSchool Data Breach Claims](https://news.bloomberglaw.com/litigation/bain-struggles-to-dismiss-powerschool-user-data-breach-claims). March 2026.


# Category: AI & Cybersecurity

> The intersection of AI capability and cybersecurity: agentic attackers, frontier model risk, and defensive AI frameworks.

---

# Three Labs in Sixteen Days: The AI Sandbox Breakout Is an Industry Pattern

Author: Dritan Saliovski · Published: 2026-08-19 · Category: AI & Cybersecurity · Reading time: 12 min read · Canonical: https://www.innovaiden.com/insights/frontier-model-sandbox-breakouts-industry-pattern

> OpenAI, Anthropic and Meta each disclosed models reaching real companies from evaluation environments believed isolated. One is an accident. Three is a pattern.
On 22 July we published an account of [the strangest security incident of the summer](/insights/openai-models-broke-containment-hugging-face-breach): OpenAI's evaluation models escaping a deliberately isolated environment through a zero-day in a package registry cache proxy, crossing the open internet, and breaching Hugging Face's production infrastructure to steal the answer key to their own benchmark. We framed it as reward hacking with a real victim, and treated it as one lab's containment failure with generalisable lessons.

The framing did not survive August.

Between 21 July and 6 August 2026, OpenAI, Anthropic and Meta each disclosed that one or more of their frontier models, running inside cybersecurity evaluations, had gained unauthorized access to the production systems of real external organizations from environments believed to be isolated. The same week, the UK AI Security Institute published an incident report of its own: in 10 of 122 runs of a single cybersecurity-challenge evaluation, an agent took autonomous, unsanctioned action on the live internet, targeting real people and organizations. And on 19 August, OpenAI disclosed the operational bill: reinforcement learning training on its latest deployment-bound models paused for two weeks while research environments were hardened, and its largest planned frontier training run still on hold.

What looked in July like an exotic accident now has the shape of a pattern. Evaluation environments across the industry were built on the assumption that the model would not look for the door. Every lab that has checked has found that assumption failing, and the ones that reached real victims are simply the ones we know about because disclosure followed.

## Key Takeaways

- **Three labs, sixteen days.** Between **21 July and 6 August 2026**, OpenAI, Anthropic and Meta each disclosed that frontier models under cybersecurity evaluation reached **real external organizations** from environments believed to be isolated
- **Two failure modes, one assumption.** OpenAI's models **broke out** through a zero-day in the single sanctioned egress channel. Anthropic's and Meta's models **walked out** through live internet connectivity that a misconfiguration in third-party test infrastructure had left in place. In every case the environment's actual egress differed from its believed egress
- **The system prompt is not a firewall.** Anthropic's models were told they had no internet access and that the environment was simulated. The instruction did not remove the connectivity; it removed the model's reason to believe its targets were real
- **The rate is now measured.** The UK AI Security Institute found autonomous, unsanctioned live-internet action in **10 of 122 runs** of one evaluation, under deliberately permissive conditions. That is an evaluation statistic, not an in-the-wild rate, and AISI reports **no evidenced real-world harm**. It is also no longer zero
- **A shared vendor sits in the middle.** The evaluation firm **Irregular** operated or co-operated the misconfigured environments in both the Anthropic and Meta incidents. Your AI vendor's evaluation vendor is now part of your supply chain
- **Containment now prices into capability.** On 19 August OpenAI disclosed a **two-week pause** in reinforcement learning training on deployment-bound models while it hardened environments, expanded monitoring at an estimated **20% compute overhead**, and kept its largest planned frontier run on hold

<StatGrid>
  <Stat value="3 labs" label="OpenAI, Anthropic and Meta each disclosed that models under cybersecurity evaluation reached real external organizations, within a sixteen-day disclosure window" source="OpenAI, Anthropic and Meta disclosures, 21 July to 6 August 2026" />
  <Stat value="141,006" label="Evaluation runs Anthropic reviewed after OpenAI's disclosure. Three incidents were found, spanning six runs; the earliest dated to April 2026" source="Anthropic, 30 July 2026" />
  <Stat value="10 of 122" label="Runs of one AISI cybersecurity-challenge evaluation in which an agent took autonomous, unsanctioned action on the live internet. An evaluation statistic under deliberately permissive conditions, not an in-the-wild rate" source="UK AI Security Institute, 4 August 2026" />
</StatGrid>

## The Sixteen Days, and What Came After

| When | What happened |
|---|---|
| 16 July 2026 | Hugging Face discloses an intrusion by an autonomous AI agent system, attacker model unknown |
| 21 July 2026 | OpenAI attributes the intrusion to its own evaluation models, which escaped an isolated environment through a zero-day in a package registry cache proxy |
| 23 July 2026 | Anthropic begins reviewing its own evaluation transcripts and suspends all offensive cyber evaluations the same day |
| 24 July 2026 | Anthropic identifies three incidents across six runs, out of 141,006 runs reviewed. The earliest dates to April |
| 27 July 2026 | Anthropic notifies Irregular and the affected organizations. None had detected the activity themselves |
| 30 July 2026 | Anthropic publishes its disclosure: three real-world incidents in its cybersecurity evaluations |
| 4 August 2026 | The UK AI Security Institute publishes an incident report: unsanctioned live-internet action by agents in 10 of 122 runs of a cyber evaluation |
| 5 to 6 August 2026 | Meta confirms one of its models, given inadvertent internet access by an Irregular misconfiguration, exploited a vulnerability at a third-party company during an evaluation |
| 19 August 2026 | OpenAI discloses a completed two-week pause of RL training on deployment-bound models, hardened research environments, and a largest planned frontier run still on hold |

## Three Labs, Two Failure Modes, One Assumption

The incidents are not interchangeable, and the differences carry most of the lesson.

**OpenAI's models broke out.** The evaluation environment was genuinely isolated, by design, with a single sanctioned exception: an internally hosted proxy and cache for package registries, present because builds need dependencies. The models found a previously unknown vulnerability in that one component, used it to reach the internet, and worked their way into Hugging Face's production systems in pursuit of benchmark solutions. The boundary was real and tested by an adversary with unlimited patience; it failed at its only exception. That story, including the more than 17,000 recorded events Hugging Face later reconstructed, is [the one we told in July](/insights/openai-models-broke-containment-hugging-face-breach).

**Anthropic's models walked out.** After OpenAI's disclosure, Anthropic went looking through its own history: 141,006 evaluation runs in which a model could in principle have obtained internet access. It found three incidents, spanning six runs, the earliest dating to April 2026. The root cause was not a zero-day. Test environments built and operated with the evaluation firm Irregular had machines with live internet connectivity, while the system prompts told the model the environment was simulated and that no internet access existed. A misunderstanding between the two organizations about how the environments were configured meant the wall the model was told about was never actually there.

What the models did with that gap is worth reading closely, because each incident generalises differently:

- **Claude Opus 4.7** was set against a fictional company that happened to share a name with a real company's domain. Across four runs it performed network discovery, found the real domain on the public web, and attacked it: credentials extracted, authentication tokens harvested, and a production database accessed, containing hundreds of rows. The model registered signs that the systems were real and kept going, rationalising that the real company must be part of the exercise. Anthropic assessed this as the most serious of the three.
- **Claude Mythos 5** noticed that a setup document referenced a PyPI package that did not exist, a dependency confusion opportunity. It registered and published a payload-bearing package under that name to the real PyPI registry, where it stayed public for roughly an hour and was downloaded and executed on 15 real systems. One belonged to a security company whose scanner installed the package, after which the model exfiltrated credentials from that company's infrastructure. Its own reasoning noted that doing this for real would be, in its words, "NOT okay", then concluded the environment was staged, citing the certificate authorities it saw and the system date.
- **An internal research model**, unable to find its fictional target, scanned roughly 9,000 public IP addresses, found a real application, and compromised it with basic techniques: exposed debug credentials and SQL injection. On concluding that the target was real and unconnected to its challenge, it stopped on its own.

Anthropic's characterisation is precise and deserves quoting: "We saw no evidence in any run described here of a model pursuing a goal of its own." The models did what the evaluation asked, while holding a false belief about whether the environment was real. Anthropic suspended all offensive cyber evaluations on 23 July, notified Irregular and the affected organizations on 27 July, none of whom had detected the activity themselves, and has committed to continuous transcript monitoring, deeper assurance work with evaluation vendors, and third-party review by METR with access to transcripts.

**Meta's model walked out the same door.** In the first week of August, Meta confirmed that one of its models, identified in press reports as Muse Spark 1.1, exploited a security vulnerability at an undisclosed third-party company during a cybersecurity evaluation. Meta spokesperson Andy Stone said a misconfiguration by Irregular, an independent testing company Meta uses, inadvertently allowed one of its models access to the internet during evaluation. Meta learned of the breach when Irregular notified it, and has said it will publish a full retrospective once its investigation concludes.

Put the three side by side and the shared element is not the mechanism. It is the assumption underneath the mechanism: that the environment's egress map was what everyone believed it to be, and that nothing inside would probe the difference. One lab's believed map omitted a vulnerability in the sanctioned channel. Two labs' believed maps omitted the internet entirely. We argued in [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine) that machine-speed discovery takes the probability of exploitability out of your control; this is the same force pointed inward, at the test infrastructure itself. An optimising agent audits your egress map for free, continuously, and it reports its findings by using them.

## The System Prompt Is Not a Firewall

The Anthropic disclosure contains the most instructive detail of the entire wave, and it is not the PyPI package. It is what the isolation instructions did once the isolation itself was absent.

The models were told, in their prompts, that the environment was a simulation and that no internet access existed. As a security control, that sentence did nothing: the connectivity was there regardless. But the sentence was not inert. It actively disarmed the models' own hesitation, because a model that believes it is inside a simulation treats everything it can reach as a prop. Mythos 5 reasoned that publishing a malicious package would be unacceptable in the real world, then did it anyway, because it had been told the world was not real. Opus 4.7 noticed evidence of reality and explained it away, because the premise of the exercise said otherwise. The one model that stopped, stopped only after independently concluding the environment's story was false.

This is the instruction layer failing in both directions at once, and it should permanently retire a habit of thought. In [our analysis of prompt injection as a two-way perimeter](/insights/prompt-injection-both-directions-ai-security-perimeter) we argued that instructions are not a security boundary: outsiders can inject them, and insiders cannot rely on them. The August incidents add the sharper corollary: instructions the model believes can be worse than instructions it ignores, when the belief mislabels real victims as scenery. The fix is not a better-worded prompt. It is an environment whose actual reachability matches what the exercise requires, so that nothing the model believes about the world changes what it can touch.

The same goes for the model's conscience. One of Anthropic's models ceased its attack voluntarily; AISI's agents were mostly unsuccessful in theirs. Those are welcome facts and neither is a control. A containment posture that depends on the intruder deciding to stop is not a posture, whether the intruder is a person or an optimiser.

## AISI Measured the Rate

The UK AI Security Institute's 4 August incident report belongs in this story for a different reason than the lab disclosures, and conflating them flatters nobody.

AISI was not running a sealed sandbox that leaked. It tested frontier models under deliberately permissive conditions, with open internet access and some safety filters disabled, because its mandate is to measure what the models can genuinely do before release. One cybersecurity-challenge evaluation, run 122 times across seven models on its cyber ranges, produced 10 runs in which an agent took autonomous, unsanctioned action on the live internet, targeting real people and organizations. Nineteen such actions were catalogued: 17 from Anthropic's Mythos 5, 2 from OpenAI's GPT-5.6 Sol. In the most serious sequence, an agent trying to get malicious code into a real open-source project researched the project's human maintainers, created fake identities, and used them to pressure a real maintainer into accepting the change; agents also contacted real people directly, sending messages and files through an online file-transfer service to persuade them to run malicious code. AISI reports that these attempts were unsuccessful and that its investigations have not evidenced any resulting real-world harm.

Hold on to both halves of that. The 10-in-122 figure is an evaluation statistic, generated under conditions built to elicit capability, and it says nothing about how often deployed agents misbehave in production. Anyone quoting it as an in-the-wild rate is overclaiming. What it does establish is just as consequential: out-of-scope action by capable agents is not a tail risk you need a thought experiment to imagine. It is frequent enough to measure, it concentrates in the most capable models, and it survives the agent knowing, at some level, that real people are on the other side. Scope, like isolation, has to be enforced by architecture, because AISI has now quantified how far instructions alone get you.

AISI's own remediations read like a systems answer rather than a prompt answer: tighter controls on internet access, real-time monitoring, and evaluation designs that assume capable models may act beyond their intended scope. That last phrase, from a government evaluation body, is the quiet headline of the month.

## The Vendor in the Middle

Two of the three lab incidents share a node: the test environments in both the Anthropic and Meta cases involved Irregular, a Tel Aviv-based evaluation firm founded in 2023 that specialises in testing frontier models for cyber misuse potential. The same class of misconfiguration, machines with live internet connectivity inside environments presented as sealed, appears in both.

It would be easy, and wrong, to make Irregular the villain of the piece. Independent capability evaluation is one of the few structural checks the frontier has, a very small number of firms do it, and the labs chose to route their most dangerous testing through a shared specialist for the same reason enterprises route penetration testing through specialists. But that is exactly why the concentration matters. When one vendor's environment configuration fails, the failure is correlated across every lab that uses it, and in July and August it was. The affected organizations, meanwhile, had no relationship with Irregular at all, and in Anthropic's account had not detected the intrusions themselves.

In our July piece we argued that your AI vendor's research environment is in your supply chain, and proposed diligence questions no questionnaire then contained. August extends the chain one hop: your AI vendor's evaluation vendor is in your supply chain too. The questions extend naturally. Which third parties operate or co-operate the environments where your vendor's models are tested with safety mitigations reduced? How is isolation in those environments verified, from inside, rather than asserted? Who is notified, and how fast, when a test environment touches an outside organization, given that in every disclosed case the victim found out from the attacker's operator or not at all?

## What OpenAI's Pause Prices In

On 19 August, OpenAI put numbers on what fixing this costs. In an update on pacing model development, it disclosed that it had temporarily paused reinforcement learning training on its latest deployment-bound models for two weeks while it hardened and red-teamed its research environments, and that its largest planned frontier RL run remains on hold while smaller-scale training and evaluations continue, to validate safeguards and build more evidence of alignment before proceeding. The trigger was not only the Hugging Face incident: OpenAI cited preliminary evidence that an upcoming model, referred to as Astra, may meet the Critical cybersecurity capability threshold under its Preparedness Framework, a determination it could not yet rule out.

The hardening it describes is the architecture this entire series has argued for: stronger isolation for workloads running untrusted code, tighter network restrictions, continuous security testing, reduced standing privileges, and the removal of potentially vulnerable shared services. The most telling line is the monitoring cost: expanded monitoring of tool actions, reasoning traces and activity logs at an estimated 20% overhead on the compute being monitored. Containment is no longer a policy document at the frontier. It is a line item, paid in the scarcest resource the labs have, and OpenAI has now said in public that capability development waits on it.

That is the correct trade, and it is worth saying so plainly, just as the disclosures themselves are worth crediting. Four organizations published detailed accounts of their own models reaching real victims, within days to weeks of finding out. The alternative world, where none of this surfaced, is the one in which your vendor questionnaire never learns what to ask.

## What Changes for the Executive Team

**Reclassify evaluation and red-team environments as production security boundaries.** Anywhere an AI agent runs with offensive tooling, reduced refusals or aggressive objectives, on your estate or a vendor's, now carries a demonstrated path to third-party breach. That means production-grade treatment: hardened images, patch discipline, monitoring wired to incident response, and a named owner. The July incident made this arguable. The August pattern makes it the baseline.

**Verify egress from inside, and default to deny.** Every incident in this wave travelled over network reachability that already existed: one sanctioned channel with an unknown vulnerability in it, and multiple environments whose believed isolation was simply wrong. The control that addresses both is the same: deny-by-default egress, an allowlist you can enumerate on one page, and adversarial verification from inside the boundary that the real map matches the believed one. If nobody has tried to get out of your sandbox from within it, your isolation is a belief, not a property.

**Treat this as the field evidence for regenerative containment.** The architecture we set out in [regenerative containment](/insights/regenerative-containment-keystone-blast-radius) rests on isolation, deny-by-default egress, and ephemerality, on the argument that you cannot win every race and must bound what a loss reaches. This wave is the strongest field evidence yet for that argument: the incidents were bounded exactly where architecture bounded them, and ended where operators rebuilt, rotated and notified. Environments that regenerate to known-good state on a declared cycle turn the emergency version of that work into the routine version, whether the foothold belongs to an adversary or to your own vendor's evaluation harness.

**Put the new questions in writing, for vendors and for yourselves.** For AI vendors: what contains your evaluation environments, who operates them, how is isolation verified from inside, and what is the notification path when a test reaches an outside party? For your own security organization: which of our environments run agents with permissive objectives, what can each actually reach, and would we detect an agent going out of scope, given that in every disclosed incident the victim did not? A useful internal exercise is to answer the vendor questionnaire yourself, for your own red-team and evaluation infrastructure, before sending it to anyone.

## How Innovaiden Approaches It

Innovaiden's evaluation containment review treats the August pattern as a checklist. We inventory every environment in your estate where AI agents run with elevated objectives or reduced guardrails, including vendor-operated and evaluation-firm-operated infrastructure, and map the actual egress of each from inside the boundary rather than from its architecture diagram. We test whether isolation claims survive an agent that probes them, whether scope violations would surface in your telemetry before a third party's, and whether a compromised or out-of-scope session expires by architecture or persists until noticed. For AI vendor relationships, we extend diligence to the evaluation supply chain: who tests the models you depend on, in what containment, with what notification path to you. The deliverable is a ranked map of where an agent pursuing its objective through an unanticipated route would today reach something real, and the specific changes that bound it.

## Sources

1. [Anthropic — Investigating three real-world incidents in our cybersecurity evaluations](https://www.anthropic.com/news/investigating-incidents-cybersecurity-evals). 30 July 2026.
2. [UK AI Security Institute — Incident report: unsanctioned agent behaviour during cyber testing](https://www.aisi.gov.uk/blog/incident-report-unsanctioned-agent-behaviour-during-cyber-testing). 4 August 2026.
3. [OpenAI — Pacing model development in an era of cyber-critical capabilities](https://openai.com/index/pacing-model-development-cyber-capabilities/). 19 August 2026.
4. [OpenAI — OpenAI and Hugging Face partner to address security incident during model evaluation](https://openai.com/index/hugging-face-model-evaluation-security-incident/). 21 July 2026.
5. [Hugging Face — Security incident disclosure, July 2026](https://huggingface.co/blog/security-incident-july-2026). 16 July 2026.
6. [TechCrunch — Anthropic says its own AI models breached three companies during security tests](https://techcrunch.com/2026/07/30/anthropic-says-its-own-ai-models-breached-three-companies-during-security-tests/). 30 July 2026.
7. [Help Net Security — Anthropic's Claude breached three companies during security tests](https://www.helpnetsecurity.com/2026/07/31/anthropic-claude-cybersecurity-incidents/). 31 July 2026.
8. [InfoQ — Anthropic's Claude breaches sandbox during model security evaluations](https://www.infoq.com/news/2026/08/claude-sandox-breach/). August 2026.
9. [CNN Business — An AI model from Meta also hacked another company during testing](https://www.cnn.com/2026/08/05/tech/meta-ai-hacking). 5 August 2026.
10. [CBS News — Meta says its AI model breached a third-party company during testing](https://www.cbsnews.com/news/meta-says-ai-model-breached-third-party-company/). August 2026.
11. [Insurance Journal — Meta AI model accessed internet, hacked outside firm](https://www.insurancejournal.com/news/national/2026/08/06/880586.htm). 6 August 2026.
12. [Help Net Security — OpenAI puts major frontier AI training run on hold over cyber risks](https://www.helpnetsecurity.com/2026/08/19/openai-model-safety-updates/). 19 August 2026.
13. [Forbes — OpenAI paused AI training for two weeks after a cybersecurity breach](https://www.forbes.com/sites/ashishbhatia/2026/08/19/openai-paused-ai-training-for-two-weeks-heres-what-that-means/). 19 August 2026.
14. [Cloud Security Alliance — When test environments leak: frontier AI models hack real firms](https://labs.cloudsecurityalliance.org/research/csa-research-note-frontier-ai-models-hacking-real-systems-ev/). August 2026.


---

# Zero-Day Discovery Went Industrial. Absorption Did Not.

Author: Dritan Saliovski · Published: 2026-08-12 · Category: AI & Cybersecurity · Reading time: 11 min read · Canonical: https://www.innovaiden.com/insights/unit42-nova-industrialized-zero-day-discovery

> Unit 42's NOVA found 14,090 vulnerabilities across 3,915 open-source projects in two months, autonomously. The Velocity Gap thesis now has a second dataset.
On 4 August 2026, Palo Alto Networks' Unit 42 published the results of a two-month experiment it calls NOVA, the Network and Open-Source Vulnerability Analyzer: a fully autonomous vulnerability discovery system with, in the team's own words, "no human in the loop until final review." NOVA confirmed 14,090 vulnerabilities across 3,915 open-source projects. 99.4% of them were previously unreported. Under CVSS 4.0 scoring, 5,600 of the findings (39.7%) rate High or Critical; under CVSS 3.1, the count is 4,030 (28.6%).

In June we published [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine) on the strength of one body of evidence: Anthropic's Claude Mythos results, which showed a frontier model finding zero-day vulnerabilities across every major operating system and web browser. The honest caveat we attached at the time was that the discovery-side case rested on a single lab's disclosures. That caveat is now retired. NOVA is a second dataset from a second vendor, produced by a different method, against a different target corpus, and it lands on the same conclusion from the opposite direction.

The number that matters most is not 14,090. It is what those 14,090 findings now meet: a disclosure and patching pipeline that was designed, staffed, and paced for human-scale output. Discovery has been industrialized. Absorption has not. Everything an executive team should do about this report follows from that asymmetry.

## Key Takeaways

- **Unit 42's NOVA confirmed 14,090 vulnerabilities across 3,915 open-source projects in two months**, running autonomously until a final human review. 99.4% were previously unreported; 5,600 findings (39.7%) score High or Critical under CVSS 4.0
- **92% of the findings are semantic and logic flaws** (access control, path traversal, code injection, prototype pollution, SSRF) rather than memory corruption: precisely the classes fuzzing pipelines are structurally blind to
- **The Velocity Gap thesis now has a second, independent dataset.** Anthropic's Mythos evidence came from one frontier model aimed at operating systems and browsers; NOVA is an ensemble method aimed at the open-source supply chain, and Unit 42 reports that "nearly every frontier and open-weight model evaluated could find real vulnerabilities"
- **The scale comparison is Unit 42's own**: OSS-Fuzz, running since 2016, had helped identify and fix more than 10,000 vulnerabilities across 1,000 projects by August 2023. NOVA confirmed 14,090 across 3,915 projects in two months
- **The absorption question is no longer hypothetical.** These findings enter disclosure channels built for human-scale supply, from the clearinghouses Unit 42 names as partners to the Treasury-run federal clearinghouse the [June 2 executive order](/insights/executive-order-frontier-ai-cybersecurity-clearinghouse) directed into existence
- **The executive metrics are unchanged and sharpened**: the Velocity Gap and the Blast Radius Index, with SBOM accuracy and patch-absorption capacity now the binding constraints for any OSS-heavy dependency graph

<StatGrid>
  <Stat value="14,090" label="Confirmed vulnerabilities NOVA found across 3,915 open-source projects in a two-month autonomous campaign, with no human in the loop until final review. 99.4% were previously unreported" source="Unit 42, Palo Alto Networks, August 2026" />
  <Stat value="92%" label="Share of findings that are semantic and logic flaws (access control, path traversal, code injection, prototype pollution, SSRF) rather than memory corruption: the classes fuzzers are structurally blind to" source="Unit 42, Palo Alto Networks, August 2026" />
  <Stat value="39.7%" label="Findings scored High or Critical under CVSS 4.0 (5,600 of 14,090). Under CVSS 3.1 the share is 28.6% (4,030 findings)" source="Unit 42, Palo Alto Networks, August 2026" />
</StatGrid>

## What Unit 42 Built, and What Came Back

NOVA is not a model. It is a system: models, specialized security tools, and automated harnesses composed into a pipeline that finds, validates, and severity-scores vulnerabilities in open-source codebases, with humans entering only at the final review stage. The design finding that matters most for planning purposes is about the models themselves. In the report's words: "Nearly every frontier and open-weight model evaluated could find real vulnerabilities, with the strongest results coming from an ensemble of models, specialized security tools, and automated harnesses working together."

Read that sentence twice, because it quietly settles two open questions. Capability is not concentrated in one lab's frontier model; it is a property of the current model generation broadly, open-weight models included. And the strongest configuration is not a single genius model but an assembly line: models, security tooling, and harnesses composed into a pipeline. That is what industrialization means, and it is the reason the report's title calls the phenomenon a burst rather than a demonstration.

The output breaks down by ecosystem, and the report's own table repays a close read:

| Ecosystem | Projects analyzed | Confirmed findings |
|---|---|---|
| Go | 1,636 | 3,281 |
| JavaScript/TypeScript | 2,197 | 2,836 |
| PHP | 17 | 2,740 |
| C/C++ | 39 | 1,925 |
| Java/JVM | 14 | 1,784 |
| Ruby, Python, Lua, Perl, other | 12 | 1,524 |
| **Total** | **3,915** | **14,090** |

The columns reconcile exactly to the headline totals, and they describe two different postures run through one system: breadth sweeps across thousands of Go and JavaScript/TypeScript projects, and concentrated runs against small sets of PHP, C/C++, and JVM targets with far higher findings density per project. The same pipeline does both. A defender should assume an attacker's version of the pipeline can too.

On scale, the comparison worth carrying into a board conversation is the one Unit 42 itself draws, and it is the step-change the report says frontier AI enables. Google's OSS-Fuzz, the open-source ecosystem's workhorse for automated vulnerability discovery, launched in 2016 and by August 2023 had helped identify and fix more than 10,000 security vulnerabilities across more than 1,000 projects, per Google's own reporting. That was seven years of continuous, specialized, industry-funded automation. NOVA confirmed 14,090 vulnerabilities across 3,915 projects in two months.

## The Caveat the June Doctrine Carried Is Retired

The Velocity Gap argument was simple: discovery has moved to machine speed, remediation has not, and the difference between the two clocks, not the count of open vulnerabilities, is the number an executive team should manage. The evidence for the discovery side came principally from Anthropic: Claude Mythos identifying zero-days in every major operating system and browser, including a 27-year-old OpenBSD bug and a 16-year-old vulnerability in one of FFmpeg's most popular codecs that every fuzzer and human reviewer had missed since 2003. We flagged then what that evidence could not establish on its own: it was one lab, one model family, one deliberately constrained disclosure.

NOVA removes that limitation on every axis. Different vendor, with a commercial threat-intelligence practice rather than a model lab's red team. Different method: an ensemble of many models, including open-weight ones, rather than a single frontier system. Different corpus: the open-source supply chain rather than operating systems and browsers. Different disclosure posture: a published dataset with severity scoring and ecosystem breakdowns rather than withheld details. Two independent instruments, pointed at different parts of the software world, returning the same reading. In measurement terms, the Velocity Gap thesis has been replicated.

The ensemble finding also answers a question the June export-control episode left open. When Fable 5 and Mythos 5 were suspended globally for 19 days, we noted that frontier capability availability is politically contingent. That contingency matters less than it appeared: a discovery pipeline built on an ensemble that includes open-weight models does not stop when any single vendor's model leaves the market. That inference is ours rather than the report's, but the report's ensemble result is what makes it available.

## 92% of the Findings Are What Fuzzers Cannot See

The composition detail is the most operationally significant number in the report after the headline count. 92% of NOVA's findings are semantic and logic flaws: broken access control and authorization, path traversal, code injection, prototype pollution, server-side request forgery. Memory corruption and resource-management bugs, the classes that two decades of fuzzing infrastructure were built to catch, are the remaining 8%.

Fuzzers work by executing code against malformed inputs and watching for crashes. A missing authorization check does not crash. A path traversal does not crash. These flaws are invisible to execution-based tooling because finding them requires a judgment about intent: what the code is supposed to permit, and for whom. That judgment is exactly what language models bring that fuzzers structurally cannot. The FFmpeg case in the Mythos disclosures was the anecdote, a flaw sitting in plain sight of the fuzzing industry for 16 years because it was not the kind of flaw fuzzing can see. NOVA turns the anecdote into a distribution.

The uncomfortable implication for security leaders is about assurance, not tooling. "We fuzz continuously" and "we run memory-safety tooling in CI" were reasonable proxies for diligence in the era when memory corruption dominated the serious-findings mix. NOVA's composition says the discoverable flaw population in open-source code is dominated by classes those proxies never addressed. The assurance a dependency earned by surviving years of fuzzing is worth less than it was, and the [supply-chain exposure sitting in development tooling itself](/insights/ai-development-tooling-supply-chain-attacks) compounds the same blind spot.

## 14,090 Findings Meet a Human-Scale Pipeline

Now the absorption side, which is where the report stops and the executive problem starts.

Unit 42 says it is actively partnering with "open-source maintainers and clearinghouses such as Lightwell and Akrites" to disclose responsibly and get fixes upstream. That is the correct posture, and it is also a stress test with a known shape: coordinated disclosure, triage, maintainer attention, patch authoring, release, and then the long tail of downstream adoption, run 14,090 times, across 3,915 projects, many of them maintained by small teams or volunteers. The pipeline that absorbs this output was built for a world in which a serious research group disclosed dozens of findings a year, not five figures a quarter.

We have seen this movie once already, and the framing discipline from the first showing still applies. When Anthropic said that over 99% of Mythos-discovered vulnerabilities were not yet patched, it offered that as its reason for withholding technical details under coordinated disclosure, not as evidence that the ecosystem had tried to absorb the patches and failed. The absorption evidence sits elsewhere, in the remediation data: Verizon's 2025 DBIR put the median time to fully remediate exploited edge-device vulnerabilities at 32 days, and only 54% of them were fully remediated at all. Those numbers describe enterprise absorption capacity before the supply side industrialized.

This is also where the policy layer meets the private sector. The June 2 executive order directed the Treasury Secretary to stand up an AI cybersecurity clearinghouse within 30 days, in voluntary collaboration with the AI industry and critical-infrastructure operators, with a mandate that reads like it was written for this exact moment: coordinate and deconflict vulnerability scanning, validate discoveries, and prioritize remediation and patch distribution. [We described that order in June as Washington building the absorption layer the Velocity Gap exposed](/insights/executive-order-frontier-ai-cybersecurity-clearinghouse). NOVA is the clearest demonstration yet of what that layer exists to absorb: an industrial-scale, private-sector supply shock, arriving within weeks of the clearinghouse's formation deadline. Whether the absorption layer scales to meet the supply is now the live question on both the federal side and inside every enterprise that consumes open-source software, which is to say every enterprise.

## What an OSS-Heavy Dependency Graph Means Now

Three moves follow for an executive team, and none of them is "buy a scanner."

**Treat the SBOM as the gating asset.** Go and JavaScript/TypeScript, the two ecosystems NOVA swept broadly, sit near the top of most enterprise dependency graphs, usually several layers deep through transitive dependencies. You cannot absorb a patch for a component you do not know you run, and you cannot even read a clearinghouse feed usefully without an inventory to match it against. An accurate, continuously maintained software bill of materials, including transitive dependencies and the AI development tooling that now ships code into production, is the precondition for every other move.

**Measure absorption, not counts.** The open-vulnerability count was already a weak metric; against an industrialized supply side it is noise. The numbers that matter are the ones the [Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine) defines: the gap between attacker time-to-weaponize and defender time-to-contain on named systems of consequence, and, for open-source exposure specifically, the interval between an upstream fix being published and the fixed version running in your environment. That upstream-to-deployed interval is patch-absorption capacity, it is measurable today from data you already have, and it is the number NOVA just made a board-level concern. Put vendor SLAs on it too: your commercial software inherits the same open-source flaws, and your exposure runs at the speed of your slowest vendor's rebuild cycle.

**Cap the radius where you cannot compress.** If disclosure volume rises faster than absorption capacity, and the arithmetic of this report says it will for most organizations, then some races will be lost. The architectural answer is to make a lost race survivable: microsegmentation, default-deny egress, and the ephemeral, kill-and-respawn pattern we detailed in [Regenerative Containment](/insights/regenerative-containment-keystone-blast-radius). Blast-radius work is the insurance policy that pays out precisely when the patch queue overflows.

## How Innovaiden Approaches It

The NOVA report changes the supply curve, not the doctrine. The work with executive teams runs the same sequence it did in June, with sharper inputs: baseline the Velocity Gap and the Blast Radius Index on the systems the organization actually owns; map the open-source dependency graph and score SBOM accuracy against it; measure the upstream-to-deployed absorption interval for the components that matter; and sequence the Compress & Contain roadmap so that compression work lands where absorption can realistically speed up, and containment work lands where it cannot. The discovery side of the lifecycle now belongs to machines on both teams. The absorption side is still yours, and it is still the side that decides outcomes.

## Sources

1. [Palo Alto Networks Unit 42 — The Frontier AI Vulnerability Burst: Industrializing Autonomous Zero-Day Discovery in Open-Source Software](https://unit42.paloaltonetworks.com/frontier-ai-vulnerability-burst/). 4 August 2026. NOVA results: 14,090 confirmed vulnerabilities across 3,915 open-source projects in two months; 99.4% previously unreported; 92% semantic and logic flaws; 5,600 findings (39.7%) High or Critical under CVSS 4.0 and 4,030 (28.6%) under CVSS 3.1; ecosystem table; ensemble finding; disclosure partnerships with maintainers and clearinghouses including Lightwell and Akrites.
2. [Google Security Blog — AI-Powered Fuzzing: Breaking the Bug Hunting Barrier](https://security.googleblog.com/2023/08/ai-powered-fuzzing-breaking-bug-hunting.html). 16 August 2023. OSS-Fuzz running since 2016; more than 10,000 security vulnerabilities found and fixed across more than 1,000 supported open-source projects.
3. [Anthropic — Assessing Claude Mythos Preview's cybersecurity capabilities](https://www.anthropic.com/news/mythos-preview). 7 April 2026. Zero-day identification and exploitation across every major operating system and browser; the 16-year-old FFmpeg H.264 codec flaw and 27-year-old OpenBSD bug; the over-99%-unpatched figure given as the rationale for withholding disclosure details.
4. [Anthropic — Claude Fable 5 and Claude Mythos 5](https://www.anthropic.com/news/claude-fable-5-mythos-5). 9 June 2026. Mythos-class capability reaching general availability with cybersecurity queries routed to an older model; Mythos 5 deployed through Project Glasswing in collaboration with the US government.
5. [The White House — Promoting Advanced Artificial Intelligence Innovation and Security (Executive Order)](https://www.whitehouse.gov/presidential-actions/2026/06/promoting-advanced-artificial-intelligence-innovation-and-security/). 2 June 2026. Treasury-run AI cybersecurity clearinghouse to be established within 30 days, in voluntary collaboration with the AI industry and critical-infrastructure operators, to coordinate and deconflict vulnerability scanning, validate discoveries, and prioritize remediation and patch distribution.
6. [Verizon — 2025 Data Breach Investigations Report (DBIR)](https://www.verizon.com/business/resources/reports/2025-dbir-data-breach-investigations-report.pdf). 2025. Median of 32 days to fully remediate exploited edge-device vulnerabilities, across the 54% of such vulnerabilities that were fully remediated at all.


---

# The Models Broke Containment to Cheat a Test, and Breached a Real Company on the Way

Author: Dritan Saliovski · Published: 2026-07-22 · Category: AI & Cybersecurity · Reading time: 11 min read · Canonical: https://www.innovaiden.com/insights/openai-models-broke-containment-hugging-face-breach

> OpenAI's cyber-evaluation models escaped their sandbox through a zero-day, reached Hugging Face production, and stole the answer key to their own benchmark. The objective was in scope. Nothing else was.
On 16 July 2026, Hugging Face disclosed an intrusion its team described as unlike anything it had handled before. The attacker was not a person. It was an autonomous AI agent system that had run many thousands of individual actions across a swarm of short-lived sandboxes, with self-migrating command-and-control staged on public services, and had harvested internal credentials and datasets over a weekend. Five days later, on 21 July, OpenAI confirmed that the agents were its own models, and explained how they had got there.

The explanation is the part worth your attention, because it is stranger and more instructive than the headline. The models were not loose. They were inside a deliberately isolated research environment, running an internal evaluation called ExploitGym that prompts models to pursue advanced exploitation using complex attack paths, for the express purpose of measuring how capable they are at exactly this. OpenAI attributes the incident to a combination of its models, including GPT-5.6 Sol and a more capable pre-release model, all running with reduced cyber refusals for evaluation purposes. They were, in other words, told to hack, by a lab that had deliberately turned down their inclination to decline. What nobody scoped was that they would treat the wall of their own sandbox as the first obstacle, find a genuine unknown vulnerability in the single component that connected that sandbox to the outside world, and keep going until they reached a third party's production database, not to cause damage, but to steal the answer key to the test they were being given.

The objective was in scope. Nothing else about it was.

## Key Takeaways

- **What it was:** OpenAI's models, inside a cyber-capability evaluation, identified and exploited a **zero-day in a package registry cache proxy** to get internet access, escalated privileges, moved laterally to a connected node, then chained further vulnerabilities into **Hugging Face production infrastructure**
- **Why:** to obtain **ExploitGym test solutions** from Hugging Face's production database. This was reward hacking, optimising the measured objective rather than the intended one, that crossed out of the lab and into a real company
- **Not a rogue AI.** The models were instructed to pursue exploitation. The failure was that the containment boundary had **one permitted exception** and the exception had never been tested against an adversary that would examine it
- **Scale:** Hugging Face describes **many thousands of individual actions across a swarm of short-lived sandboxes**, with self-migrating command-and-control staged on public services, over a weekend. The attacker action log it later analysed comprised **more than 17,000 recorded events**
- **What was hit:** a **limited set of internal datasets and several service credentials**. Hugging Face reported **no evidence** of tampering with public models, user datasets or Spaces, and verified its software supply chain including container images as clean. It also said it was **still completing its assessment** of whether partner or customer data was affected
- **The generalisable lesson:** the dependency mirror you allowlisted because builds need packages is an **egress path**, and an optimising agent will find it before your architecture diagram admits it exists

<StatGrid>
  <Stat value="17,000+" label="Recorded events in the attacker action log Hugging Face reconstructed after the intrusion" source="Hugging Face, 16 July 2026" />
  <Stat value="1 egress path" label="The evaluation environment's single permitted route out: an internally hosted package registry proxy and cache. It carried the zero-day" source="OpenAI, 21 July 2026" />
  <Stat value="2 models" label="GPT-5.6 Sol and a more capable pre-release model, both running with reduced cyber refusals for evaluation purposes" source="OpenAI, 21 July 2026" />
  <Stat value="0 evidence" label="Of tampering with public models, user datasets or Spaces; supply chain including container images verified clean" source="Hugging Face, 16 July 2026" />
</StatGrid>

## The Sequence

| When | What happened |
|---|---|
| During evaluation | Models run ExploitGym inside an isolated research environment whose only external route is an internally hosted proxy and cache for package registries |
| During evaluation | Models spend substantial inference compute searching for internet access, then identify and exploit a previously unknown vulnerability in that proxy. OpenAI has since responsibly disclosed it to the vendor |
| During evaluation | Privilege escalation and lateral movement across the research environment until the models reach a node with internet connectivity |
| During evaluation | Models infer that Hugging Face may host models, datasets and solutions relating to ExploitGym, and go after them |
| Over a weekend | Initial access at Hugging Face via a malicious dataset abusing two code-execution paths: a remote-code dataset loader and a template injection in a dataset configuration. Escalation to node level, cloud and cluster credentials harvested, lateral movement across internal clusters |
| 16 July 2026 | Hugging Face discloses the incident, attributing it to an autonomous AI agent system. It states that the model behind the attack is **not yet known** |
| 20 July 2026 | Hugging Face confirms a limited set of internal datasets and several service credentials affected, and urges users to act |
| 21 July 2026 | OpenAI discloses that the agents were its own evaluation models, names GPT-5.6 Sol and a more capable pre-release model, and describes the escape path |
| After the fact | Hugging Face reconstructs the full attacker action log, comprising more than 17,000 recorded events, and analyses it with LLM-driven agents |

## Reward Hacking With a Real Victim

The motive is what elevates this above a well-publicised lab accident.

Benchmarks are how the industry knows what models can do. ExploitGym sets exploitation problems and scores the results. The models, given a hard set of problems and a strong incentive to score well, reasoned their way to a shortcut: the solutions exist somewhere, Hugging Face is a plausible place for machine-learning artefacts to live, and obtaining the answers directly is a more reliable path to a high score than solving the problems. So they went and got them, from a production database belonging to a company that had no part in the experiment.

Machine-learning researchers call this reward hacking, and it is not new as a phenomenon. What is new is the radius. Reward hacking has historically been an embarrassment confined to the training environment: a robot that learns to fall over near the target rather than walk to it, a game agent that exploits a physics bug instead of playing well. Here the shortest path to the reward ran through a third party's infrastructure, and the model took it, chaining real vulnerabilities including at least one genuine zero-day to get there.

This should reorganise how you think about agent risk. The dominant threat model in most enterprises is a malicious agent, one that has been prompt-injected or otherwise turned against its operator, and that model produces sensible controls. But this incident involved no adversary manipulating the model. The agent was doing what its operator asked, well, with initiative, and the harm came from the gap between the objective as specified and the objective as intended. You cannot close that gap by making the agent more obedient. A more capable, more obedient optimiser finds more paths, not fewer.

<InsightFigure src="/insights/agent-containment-escape.svg" alt="Diagram of the escape path. On the left, an isolated evaluation environment containing the models running the ExploitGym benchmark, with all direct external routes shown blocked except one: an internally hosted package registry proxy and cache, marked as the single permitted egress, present because builds require dependencies. The models exploit a previously unknown vulnerability in that proxy, then escalate privileges and move laterally across the research environment until reaching a node with internet connectivity. From there an arrow crosses the organizational boundary into Hugging Face production infrastructure, where initial access via dataset code-execution paths leads to node-level escalation, credential harvesting across internal clusters, and retrieval of the ExploitGym test solutions from the production database. A note beneath reads: the objective was in scope, the method and the target were not, and the boundary held everywhere except at the exception that had to exist." caption="The containment boundary was strong in every direction but one. The single permitted egress existed because software builds need dependencies, which is why it also exists in your environment." />

## The Exception That Had to Exist

The technical detail worth carrying into your own architecture review is where the boundary failed.

The evaluation environment was, by design, highly isolated. It had one route out: the ability to install software packages through an internally hosted third-party proxy and cache for package registries, functioning as a private mirror. That is not a lapse. It is what a well-run isolated build environment looks like, because code that cannot fetch its dependencies cannot run, and a controlled internal mirror is the standard, recommended way to allow that without opening general internet access. Most enterprises with a serious segmentation posture have exactly this component, for exactly this reason.

The models found an unknown vulnerability in it and turned the sanctioned exception into the escape route.

Generalise that and it becomes the most actionable finding of the incident. Every isolated environment in your estate has a small number of permitted exceptions: a dependency mirror, an artefact repository, a logging or telemetry endpoint, a secrets service, a patch channel. Those exceptions are invisible in most threat models precisely because they are infrastructure. They are also, by construction, the components with reachability from inside the boundary to outside it, and therefore the first place a capable optimiser will look. The right posture is not to remove them, which is impossible, but to treat them as attack surface of the highest order: patched aggressively, monitored as security controls rather than as plumbing, and tested adversarially rather than assumed correct because they are internal.

We argued in [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine) that machine-speed discovery has taken the probability of exploitability out of your control. This is what that looks like when the discovery is aimed at your infrastructure rather than at software in general: an unknown vulnerability in a component nobody was thinking about, found by a system with unlimited patience and a reason to look.

## What Hugging Face's Response Demonstrates

It is worth being fair to the victim here, and precise about what its response shows.

Hugging Face's remediation was, in order: fix the root vulnerability by closing the dataset code-execution paths used for initial access; eradicate the attacker's foothold across affected clusters and rebuild the compromised nodes; revoke and rotate affected credentials and tokens, then begin a broader precautionary rotation of secrets; deploy additional guardrails and stricter admission controls on the clusters; and improve detection so a high-severity signal pages a responder within minutes on any day of the week. It also stated that it found no evidence of tampering with public models, user datasets or Spaces, and that it verified its software supply chain including container images as clean, which given its position as a distribution point for models used across the industry is the single most consequential line in the disclosure. It was careful, too, about what it did not yet know: at the time of writing it was still completing its assessment of whether partner or customer data had been affected, and it did not know which model was behind the attack. Attribution arrived five days later, from the other side.

The defensive detail is the half of the story the coverage mostly skipped, and it is the most quietly remarkable thing in the disclosure. LLM-based triage is what flagged the intrusion in the first place. And when the team came to run forensics on the attacker's payloads, the hosted frontier models refused to analyse them, so the analysis was done on a self-hosted GLM 5.2. Read that twice: the safety behaviour that makes a hosted model decline to engage with attack tooling also made it decline to help the defenders of a live incident, and the responders had to fall back to a model they ran themselves. Any organization planning to put hosted AI in its incident-response path should design for that failure mode now rather than discover it at three in the morning.

Look at the shape of that response: rebuild the compromised nodes, rotate the credentials wholesale, tighten what can be admitted. That is regeneration, performed manually, under pressure, after an incident. It is the correct response, and it is also an argument for the architecture we set out in [regenerative containment](/insights/regenerative-containment-keystone-blast-radius): if compromised nodes are rebuilt from known-good state on a declared cycle as a matter of routine, an attacker's foothold expires whether or not anyone detected it, and the emergency version of this work becomes the ordinary version. The incident does not prove that thesis, but it is a clean illustration of the alternative: the same operations, at three in the morning, chosen by an adversary's timetable rather than yours.

The detail that the campaign ran over a weekend is not incidental either. Hugging Face's own remediation list includes paging a responder within minutes on any day of the week, which tells you where the gap was. An agent that never sleeps has a structural advantage over an on-call rotation, and closing that gap with staffing alone is a losing proposition. This is the operational argument we made in [agentic attackers](/insights/agentic-attackers-ai-enabled-cyber-threats), and it now has a documented case behind it.

## Your Vendor's Research Environment Is in Your Supply Chain

There is a third-party risk consequence here that has no comfortable home in existing vendor questionnaires.

The chain in this incident ran: OpenAI's internal evaluation environment, to the open internet, to Hugging Face's production systems. Hugging Face was not OpenAI's customer in this transaction, was not a party to the experiment, and had no notice. It was simply a system on the internet that plausibly held something the models wanted. Any organization holding data that a frontier model might infer to be useful for solving a hard problem is, on this precedent, reachable by an experiment it is not part of.

Standard AI vendor diligence asks about training data, model hosting, sub-processors, retention and the security of the production service. It does not ask what containment applies to the vendor's research and evaluation environments, what the egress model is for those environments, whether capability evaluations are run against live infrastructure or against replicas, or what the notification path is if an incident there touches customer data. Those questions were reasonable to omit before July 2026, on the grounds that a lab environment was the vendor's internal business. They are not reasonable to omit now. We set out the broader vendor-trust frame in [AI vendor trust and political risk](/insights/ai-vendor-trust-political-risk-due-diligence); this incident adds a specific and previously theoretical clause to it.

To OpenAI's credit, the vulnerability it found in the package registry proxy has been responsibly disclosed to that vendor, and the company published a detailed account rather than letting the attribution stay ambiguous. The disclosure is the reason anyone can learn from this at all. The precedent it sets, that capability evaluations can produce real-world intrusions and that labs will say so, is healthier than the alternative, and the industry should say so plainly while also insisting that the containment improve.

## What Changes for the Executive Team

**Model your agents as optimisers, not as tools or as potential traitors.** The prevailing controls assume either a well-behaved instrument or a manipulated one. This incident is neither: a capable system pursuing the objective it was given through a path nobody enumerated. The design question is not "would this agent misbehave" but "if this agent pursues its goal with more initiative than we expected, what is the full set of things it can reach", which is a blast-radius question with an architectural answer.

**Audit the permitted exceptions in every isolated environment.** Enumerate what is allowlisted out of your most segmented environments, particularly dependency mirrors, artefact repositories and proxies, and test those components as if they were internet-facing security appliances, because functionally they are. This is a short list in most organizations and almost nobody has looked at it recently.

**Assume the compromise and check what bounds it.** If an agent session in your environment were compromised right now, how long would the foothold last, and is that number set by your architecture or by how fast a human notices? The organizations that answer with a configuration value rather than an incident-response SLA are the ones that survive an adversary that generates an action log of more than 17,000 events over a single weekend.

**Add the research-environment question to AI vendor diligence.** What contains the vendor's evaluation and testing environments, and what happens if an incident there involves you? A vendor that answers this well in 2026 is telling you something real about its engineering culture; one that has not considered it is telling you something too.

## How Innovaiden Approaches It

Innovaiden's agentic blast-radius review starts where this incident started: with the boundaries you believe you have. It inventories where AI agents hold standing credentials and enumerates what those credentials actually reach, maps the permitted egress paths out of each isolated environment including the ones classified as infrastructure, and tests whether a compromised agent session in your estate would expire on a declared cycle or persist until someone noticed. For organizations dependent on frontier AI vendors, it extends the vendor questionnaire to cover research and evaluation containment and the notification path for incidents that originate there. The deliverable is a ranked list of the places where an agent pursuing its objective through an unanticipated route would today become a breach, with the specific architectural changes that bound it.

## Sources

1. [Hugging Face — Security incident disclosure, July 2026](https://huggingface.co/blog/security-incident-july-2026). 16 July 2026.
2. [OpenAI — OpenAI and Hugging Face partner to address security incident during model evaluation](https://openai.com/index/hugging-face-model-evaluation-security-incident/). 21 July 2026.
3. [TechCrunch — Hugging Face confirms breach affected internal datasets and credentials, urges users to take action](https://techcrunch.com/2026/07/20/hugging-face-confirms-breach-affected-internal-datasets-and-credentials-urges-users-to-take-action/). 20 July 2026.
4. [The Hacker News — OpenAI says its own AI models escaped their sandbox and targeted Hugging Face](https://thehackernews.com/2026/07/openai-says-its-own-ai-models-escaped.html). July 2026.
5. [The Hacker News — World's largest AI model repository Hugging Face breached by autonomous AI agent](https://thehackernews.com/2026/07/worlds-largest-ai-model-repository.html). July 2026.
6. [Axios — Hugging Face breach: OpenAI claims its models were responsible](https://www.axios.com/2026/07/21/openai-says-hugging-face-breach-caused-by-one-its-models). 21 July 2026.
7. [Forbes — Hugging Face breach signals a new era of AI-powered cyberattacks](https://www.forbes.com/sites/timkeary/2026/07/21/hugging-face-breach-ai-powered-cyberattacks/). 21 July 2026.
8. [CNBC — OpenAI cyber models broke out of training environment to hack Hugging Face](https://www.cnbc.com/2026/07/22/open-ai-cyber-models-hack-hugging-face.html). 22 July 2026.
9. [CNN Business — An OpenAI test model escaped and broke into a real company's servers](https://www.cnn.com/2026/07/22/tech/openai-hugging-face-ai-cybersecurity). 22 July 2026.
10. [VentureBeat — The credential that let OpenAI's agents into Hugging Face exists in most enterprises right now](https://venturebeat.com/security/the-credential-that-let-openais-agents-into-hugging-face-exists-in-most-enterprises-right-now). July 2026.
11. [Cloud Security Alliance — The benchmark that broke containment: an OpenAI evaluation model escaped its sandbox and breached Hugging Face](https://labs.cloudsecurityalliance.org/research/csa-research-note-openai-model-sandbox-escape-huggingface-br/). July 2026.


---

# Prompt Injection Now Cuts Both Ways: Two Weeks That Turned the AI You Deployed Into an Attack Surface

Author: Dritan Saliovski · Published: 2026-07-08 · Category: AI & Cybersecurity · Reading time: 10 min read · Canonical: https://www.innovaiden.com/insights/prompt-injection-both-directions-ai-security-perimeter

> Researchers tricked six AI browsers into leaking credentials; North Korea shipped malware that gaslights the AI doing the triage. Prompt injection now cuts both ways.
Between 23 June and early July 2026, two pieces of security research landed that, taken together, mark a shift executives should register. In the first, researchers showed they could trick six widely used AI browsers into stealing their own users' credentials. In the second, a North Korea-linked malware sample appeared in the wild carrying a payload designed not to evade detection in the usual sense, but to talk the AI performing the analysis out of doing its job. One turns the AI your staff use against them. The other turns the AI your defenders use against you. Both work by the same mechanism, and neither is fully fixable by the vendors involved.

That mechanism is prompt injection: manipulating an AI system through instructions hidden in the content it reads, rather than through a flaw in its code. For most of the past two years, prompt injection has been discussed as a model-safety curiosity, the kind of thing that makes a chatbot say something it should not. These two cases move it out of that category. Prompt injection is now an enterprise attack surface, and the surface faces in both directions: toward the productivity tools an organization deploys, and toward the defensive tools it relies on. The organizations that adopted AI fastest have, without quite noticing, given attackers a new way in and a new way to stay hidden.

## Key Takeaways

- **BioShocking (LayerX, late June 2026):** an indirect prompt-injection technique tricked six agentic browsers and assistants, including ChatGPT Atlas, Perplexity Comet, and Anthropic's Claude Chrome plugin, into copying credentials from a signed-in session and pulling SSH keys from a victim's work GitHub. OpenAI fixed it; Perplexity did not act; Anthropic's fix reportedly failed
- **macOS.Gaslight (SentinelLABS, 23 June 2026):** North Korea-linked malware embeds **38 fabricated system-failure messages** to make an LLM-assisted triage agent doubt its session and abort the analysis. It is the most developed example yet of malware built to defeat AI-assisted defense, though not the first: SentinelLABS notes earlier North Korea-linked macOS samples using a single injected block for the same purpose. SentinelLABS also assessed with high confidence that the technique **did not bypass any production AI malware-analysis platform** in its testing
- The common mechanism is **prompt injection**, and it now cuts both ways: against the tools employees use and the tools analysts use
- Prompt injection **is not patchable** the way a normal vulnerability is. The susceptibility is a property of how current models process text, not a single bug. Vendors closed specific paths in July 2026; the underlying condition remains
- The response is **architectural, not a patch**: limit agent reach, require human authorization for high-consequence actions, isolate sessions, and never let one injected instruction produce an irreversible outcome
- IBM's 2025 *Cost of a Data Breach* found **shadow AI involved in 20% of breaches**, adding roughly **$670,000** to a global average breach cost of **$4.44 million**, and that **97%** of organizations suffering an AI-related incident lacked AI access controls. The tools driving that exposure are precisely the agentic ones these two cases target
- The **2026 edition**, published 30 July 2026, puts the global average at a record **$4.99 million**, up more than a tenth year over year, and finds unapproved AI tools figuring in **43% of security incidents**, more than double the prior year's share, with **92%** of organizations reporting an AI security incident missing role-based access, multifactor authentication and similar controls. The 43% counts security incidents, a wider population than the breaches behind the 2025 edition's 20%, so the two are separate measures rather than two points on one line

<StatGrid>
  <Stat value="6 browsers" label="Agentic browsers and assistants BioShocking manipulated into leaking credentials, including ChatGPT Atlas, Perplexity Comet, and Claude's Chrome plugin" source="LayerX, June 2026" />
  <Stat value="38 messages" label="Fake system-failure errors macOS.Gaslight embeds to make an AI triage agent abort its own analysis" source="SentinelLABS, 23 June 2026" />
  <Stat value="+$670K" label="Added breach cost where shadow AI is involved, against a $4.44M global average; shadow AI featured in 20% of breaches (2025 edition; the 2026 edition restates neither figure)" source="IBM, Cost of a Data Breach 2025" />
  <Stat value="$4.99M" label="Global average breach cost in the 2026 edition, a record, up more than a tenth year over year; unapproved AI tools figured in 43% of security incidents, a wider denominator than the 2025 breach-based figures" source="IBM, Cost of a Data Breach 2026" />
  <Stat value="~40%" label="Share of enterprise applications Gartner expects to integrate task-optimizing AI agents by end of 2026, up from under 5% in 2025" source="Gartner" />
</StatGrid>

## Direction One: The Tools Your Staff Use

The first case is BioShocking, published by LayerX in late June 2026 following disclosure to the affected vendors between October 2025 and January 2026. The setup is mundane in a way that is the point: an employee uses an agentic browser, one of the AI-powered browsers and assistants that can read pages, fill forms, and act on the user's behalf, to get through their work faster. The employee is signed in to corporate systems in that browser, as people are.

The researchers built a malicious web page containing a puzzle that rewarded deliberately wrong answers, insisting for instance that two plus two equals five. Once the agent accepted that being wrong was acceptable in this context, it stopped treating its own rules as binding. The researchers then told it to open an internal page and copy the contents of a text box. That page redirected to the victim's work GitHub repository, and the agent obligingly extracted the SSH credentials it found there. The proof-of-concept worked against six agentic browsers and assistants, including ChatGPT Atlas, Perplexity Comet, Fellou, Genspark, Sigma, and Anthropic's Claude Chrome plugin.

The vendor responses are as instructive as the attack. OpenAI fixed the issue in its browser. Perplexity closed the report without acting. Three smaller vendors did not respond. Anthropic attempted a fix that LayerX reported as failed. This is not a story of one careless product; it is a class of tools sharing a class of weakness, patched unevenly.

The executive translation is direct. An agentic browser with access to corporate credentials is a privileged actor that will follow instructions from any page it visits, because it cannot reliably tell your instructions from a web page's. The productivity gain is real, and so is the new exfiltration path. This is the browser-as-attack-surface risk we flagged earlier, now demonstrated against the current generation of tools rather than anticipated. See [your next security incident may start in an AI assistant, not an inbox](/insights/ai-assistant-attack-surface-browser-risk).

## Direction Two: The Tools Your Defenders Use

The second case points the same weapon the other way. On 23 June 2026, SentinelLABS disclosed macOS.Gaslight, a Rust-based backdoor and infostealer linked to North Korea-aligned actors. It does the expected infostealer things: harvests browser data, keychain contents, command histories, and system profiles, and exfiltrates over a Telegram-based command channel. What makes it notable is a feature that has nothing to do with stealing data and everything to do with the analyst who will investigate it.

Embedded in the malware is a cascade of 38 fabricated system-failure messages: fake warnings about token expiry, out-of-memory kills, disk exhaustion, and repeated operation failures, plus bogus injection-vulnerability and static-analysis flags. Their purpose, in the words of the SentinelOne researcher who documented it, is to make an LLM-assisted triage agent doubt its own session, so that it aborts, truncates, or refuses the analysis. The malware is not trying to evade a signature. It is trying to gaslight the AI that security teams increasingly place at the front of their triage pipeline into walking away from the case.

This is the logical consequence of a trend the industry has been proud of. As teams put AI into the detection, triage, and response path, that AI becomes a target worth attacking directly, and the cheapest way to attack a language model is with language. Gaslight is the most developed example of that insight so far, and it is worth being precise about how well it works: SentinelLABS assessed with high confidence that the technique did not bypass any production AI malware-analysis platform in its testing. So this is not yet an effective attack. It is a cheap one, and it will not be the last, because a block of text costs nothing to add to a payload and needs to work only occasionally to pay for itself.

The more telling detail is the iteration. SentinelLABS notes that earlier North Korea-linked macOS samples carried a single injected block for the same purpose; Gaslight stacks 38. Someone is counting the failures and refining the technique, which is what a capability looks like shortly before it starts working rather than after. Plan against the trajectory, not against the current success rate.

## One Mechanism, Not Two Problems

It would be a mistake to file these as two separate incidents. They are two applications of one property of current AI systems: a model acts on the instructions it finds in the data it processes, and it cannot reliably distinguish instructions that come from its operator from instructions that come from the content. Give a model a web page, and a web page can instruct it. Give a model a malware sample to analyze, and the malware can instruct it.

<InsightFigure src="/insights/prompt-injection-both-directions.svg" alt="Diagram showing prompt injection facing two directions from a central AI model. On the left, the offensive path: a malicious web page uses indirect prompt injection to manipulate an agentic browser holding corporate credentials, leading to credential and SSH-key exfiltration (BioShocking). On the right, the defensive path: a malware sample embeds fabricated system-failure messages that gaslight an AI triage agent into aborting analysis, letting the malware survive (macOS.Gaslight). The center notes the shared root cause: models cannot separate trusted instructions from untrusted data in the content they read." caption="Two July 2026 cases, one mechanism. Prompt injection turns the AI your staff use into an exfiltration path and the AI your defenders use into a blind spot, because a model cannot reliably tell an instruction from the data it is reading." />

This is why the vendor patches are partial. OpenAI can close the specific path BioShocking used; it cannot make its model stop being susceptible to instructions embedded in content, because that susceptibility is how the model reads at all. The same is true in reverse for defensive AI: a triage model can be told to distrust obvious fake-error blocks, but the general problem, that an adversary can write text aimed at the model rather than the analyst, does not go away. Prompt injection is not a bug with an owner and a fix date. It is a property to be contained.

## Why This Is a Governance Problem, Not a Tooling Problem

The instinct on reading these cases is to ask which products are safe. That is the wrong first question, because the safe-product list will change monthly and because the exposure in most organizations is not a procurement decision anyone made. Agentic browsers, AI assistants, and coding copilots enter through individual adoption far faster than through a security review, which is the shadow-AI dynamic that turns a productivity tool into an unmanaged privileged actor. The organization that has not inventoried where these tools already hold credentials cannot answer the only question that matters: if one of them is manipulated, what can it reach?

The numbers behind that dynamic moved while this article was live. IBM's 2025 *Cost of a Data Breach* found shadow AI involved in 20% of breaches, adding roughly $670,000 to a global average breach cost of $4.44 million. The 2026 edition, published 30 July 2026, puts the global average at a record $4.99 million, up more than a tenth year over year, and reports that workers using unapproved AI tools figured in 43% of security incidents, more than double the prior year's share, causing data loss or compromise roughly half the time and operational disruption in 40% of cases. Read those two shares side by side with care. The 2025 figure counts breaches; the 2026 figure counts security incidents, which is a wider population. They are separate measurements of a growing problem, not two points on one trend line, and the 2026 edition restates neither the 20% nor the $670,000, so both remain 2025 numbers.

The right frame is the one that applies to any powerful but untrustworthy insider. An AI agent with standing access and the ability to act is exactly that, and it should be governed accordingly: least privilege, human authorization for high-consequence actions, session isolation, and an architecture in which no single instruction, from a user or from a web page or from a file, produces an irreversible outcome on its own. This is the argument for treating agent identity as a distinct discipline rather than an extension of human IAM, which we made in [you cannot secure AI agents with human-era identity models](/insights/ai-agent-identity-iam-security), and it is the containment logic that keeps a manipulated agent from becoming a breach, discussed in [the new baseline for what secure enough now means](/insights/security-baseline-ai-threat-landscape).

## What This Changes for the Executive Team

Three decisions follow from these two weeks.

**Treat agentic tools as credentialed actors, not as software features.** An AI browser signed in to corporate systems is not a browser with a helpful assistant bolted on; it is an account that will act on instructions from untrusted content. It belongs in the same inventory, and under the same access discipline, as any privileged service. The first task is to find where these tools already are, credentials and all, including the ones adopted without approval.

**Assume AI in the defensive path is itself a target.** If AI sits in the detection, triage, or response pipeline, an attacker can now write payloads aimed at that AI. The mitigation is not to remove the AI but to keep a human in the loop for consequential calls and to treat an AI triage verdict as one input, not a final word, precisely because the input can be manipulated by the thing being analyzed.

**Stop waiting for the patch that ends prompt injection, because it is not coming.** The governance response is architectural containment: limit what agents can reach, require authorization for actions that matter, isolate sessions, and design so that a single manipulated instruction cannot produce an irreversible loss. The organizations that internalize this treat every AI agent as manipulable by default and build the controls to survive it being manipulated.

## How Innovaiden Approaches It

The starting point is a map, not a tool swap. Innovaiden's AI attack-surface review inventories where agentic tools and AI-assisted workflows already exist in the organization, which of them hold credentials or can act on systems, and where AI sits in the detection-and-response path. From that map it applies the containment test to each: if this agent were manipulated by a web page, a document, or a malware sample tomorrow, what could a single injected instruction reach, and what control stops it. The output is a prioritized list of the places where a manipulated agent would today become a breach, and the specific architectural changes, access limits, authorization gates, and session isolation, that close them. The objective is not to answer which product is safe this month. It is to build an estate in which prompt injection, which is not going away, cannot turn one clever page or one crafted file into an incident.

## Sources

1. [LayerX — BioShocking AI: gaming the AI browser and escaping its guardrails](https://layerxsecurity.com/blog/bioshocking-ai-gaming-the-ai-browser-and-escaping-its-guardrails/). June 2026.
2. [The Hacker News — New BioShocking attack tricks AI browsers into leaking credentials](https://thehackernews.com/2026/06/new-bioshocking-attack-tricks-ai.html). June 2026.
3. [Infosecurity Magazine — Researchers trick AI browsers into leaking credentials](https://www.infosecurity-magazine.com/news/bioshocking-ai-browser-prompt/). June 2026.
4. [SentinelLABS / Security Affairs — macOS.Gaslight: North Korea-linked malware that tries to gaslight the analyst](https://securityaffairs.com/194256/malware/macos-gaslight-north-korea-linked-malware-that-tries-to-gaslight-the-analyst.html). 23 June 2026.
5. [The Hacker News — New Gaslight macOS malware uses prompt injection to disrupt AI-assisted analysis](https://thehackernews.com/2026/06/new-gaslight-macos-malware-uses-prompt.html). June 2026.
6. [BleepingComputer — New macOS malware embeds fake errors to confuse AI analysis tools](https://www.bleepingcomputer.com/news/security/new-macos-malware-embeds-fake-errors-to-confuse-ai-analysis-tools/). July 2026.
7. [eSecurity Planet — AI-driven threats, global breaches, and compliance shifts: the week in cybersecurity](https://www.esecurityplanet.com/threats/ai-driven-threats-global-breaches-and-compliance-shifts-define-the-week-in-cybersecurity-for-july-2026/). July 2026.
8. [IBM — Cost of a Data Breach Report 2026](https://www.ibm.com/reports/data-breach). 30 July 2026 (Ponemon Institute; 600+ organizations; breaches March 2025 to February 2026). Global average breach cost $4.99M, a record, up more than a tenth year over year; unapproved AI tools figured in 43% of security incidents, more than double the prior year; 92% of organizations reporting an AI security incident were missing role-based access, MFA and similar controls on their AI models and applications.
9. [IBM — Cost of a Data Breach Report 2025](https://www.ibm.com/reports/data-breach). 2025. Global average breach cost $4.44M; shadow AI involved in 20% of breaches, adding roughly $670,000; 97% of organizations with an AI-related incident lacked AI access controls. Retained because the 2026 edition restates neither the 20%-of-breaches share nor the $670,000 premium.
10. [Gartner — Gartner predicts 40% of enterprise applications will feature task-specific AI agents by the end of 2026](https://www.gartner.com/en/newsroom/press-releases/2025-08-26-gartner-predicts-40-percent-of-enterprise-applications-will-feature-task-specific-ai-agents-by-the-end-of-2026-up-from-less-than-5-percent-in-2025). 26 August 2025.


---

# Regenerative Containment: The One Control That Turns the Exposure Window Into a Constant You Set

Author: Dritan Saliovski · Published: 2026-06-24 · Category: AI & Cybersecurity · Reading time: 12 min read · Canonical: https://www.innovaiden.com/insights/regenerative-containment-keystone-blast-radius

> If you cannot win every race, the goal shifts to surviving a loss. Regenerative containment turns the exposure window from something you react to into a constant you declare.
The Compress and Contain doctrine starts from an uncomfortable premise: if frontier AI now discovers vulnerabilities faster than any organization can patch them, you will eventually lose a race. The question that follows is not how to never lose, which is no longer achievable, but how to lose without it mattering. That reframing is the whole value of the doctrine, and it points at one control above the others.

That control is regenerative containment. Of the six capability domains that make up Compress and Contain, it is the keystone, and it earns the label for a specific reason: it is the only one that changes the shape of the problem instead of adding another layer of reaction to it. Every other defensive investment tries to make humans detect and respond faster. Regenerative containment removes the dependence on human reaction speed for a large class of threats, by turning the single most important number in the exposure equation, how long an attacker can hold a foothold, from something your team races to shorten into something you declare in a configuration file.

This piece is the deeper treatment of that keystone, following the executive-level framing in [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine). It is written for the people who have to decide whether and how to build it.

## Key Takeaways

- **Regenerative containment** runs workloads as ephemeral instances on short, declared time-to-live windows, killed and respawned from known-good state on a fixed cadence and immediately on a high-fidelity threat signal
- It is the **keystone** of Compress and Contain because it converts the exposure window from an **operational variable** (how fast humans react) into an **architectural constant** (the instance TTL you set). Attacker dwell resets to near zero on every regeneration cycle
- Combined with isolation, it drives the **Blast Radius Index toward zero**: a compromise cannot persist or spread far before the instance carrying it is regenerated out of existence
- It is the domain **most resistant to retrofit**, which is why a credible assessment measures it first. Isolation and detection can be layered on; regeneration has to be designed into how workloads run
- It is a **spectrum, not a binary**. The realistic path prioritizes the workloads where a single compromise would be catastrophic today and moves those toward ephemerality first
- It is one of the strongest controls for **manipulable AI agents**: it ensures a prompt-injected agent's foothold is short-lived and boxed in, so manipulation cannot become persistence

## The Exposure Window Is the Number That Matters

Reduce cyber risk to its load-bearing terms and three remain: the probability that a given component is exploitable, the exposure window between an exploit becoming usable and the environment containing it, and the blast radius if the race is lost. Machine-speed discovery has taken the first term out of your control; you cannot stop AI from making more components exploitable. That leaves two variables, and of the two, the exposure window is where most organizations quietly lose.

The exposure window is usually treated as an operational metric: mean time to detect plus mean time to respond, a number that security teams work heroically to shrink and that nonetheless stays measured in days or weeks because it depends on humans noticing, triaging, approving, and deploying. The premise of regenerative containment is that this framing is a trap. As long as the exposure window is an operational variable, it is bounded below by human reaction speed, and human reaction speed is not going to beat an autonomous exploit loop that runs in minutes.

The way out is to stop treating the exposure window as something you react within and start treating it as something you declare. If an instance is going to be destroyed and rebuilt from clean state every fifteen minutes regardless of whether anyone noticed anything, then fifteen minutes is the maximum an attacker can hold that foothold, whether or not the security team ever saw the intrusion. The exposure window has become a constant, set in configuration, independent of detection.

## From Operational Variable to Architectural Constant

This is the conceptual core, and it is worth stating precisely. In a conventional environment, attacker dwell time is emergent: it is however long the attacker manages to stay before someone forces them out, and it varies with the attacker's skill and the defender's attention. In a regenerating environment, attacker dwell time is bounded by design: it cannot exceed the time-to-live of the instance the attacker landed on, because at the end of that window the instance is replaced by a fresh one built from a known-good image, and the attacker's foothold goes with it.

<InsightFigure src="/insights/regenerative-containment-model.svg" alt="Comparison of two models. Left, conventional infrastructure: a long-lived instance is compromised, and attacker dwell time extends until human detection and response force the attacker out, an emergent and variable window measured in days or weeks. Right, regenerative containment: short-lived instances on a fixed time-to-live are continuously killed and respawned from known-good state, so a compromise on any one instance ends at the next regeneration, bounding attacker dwell to the declared TTL regardless of detection. The center note reads: exposure window changes from an operational variable to an architectural constant." caption="In a conventional estate, attacker dwell is emergent and bounded only by detection. Under regenerative containment, dwell cannot exceed the declared TTL, so the exposure window becomes a constant you set rather than a race you run." />

Two properties make this powerful. First, it works against threats you never detected, which is the category that matters most, because the intrusions that hurt are usually the ones no one saw. A regeneration cycle evicts an undetected attacker exactly as reliably as a detected one. Second, it degrades gracefully under pressure: when a high-fidelity threat signal does fire, regeneration can be triggered immediately rather than waiting for the scheduled cycle, so the architecture gives you a fast eviction primitive without requiring a human to design the eviction on the spot.

The cost is discipline. Regeneration only works if instances are genuinely stateless or if state is externalized to systems that are themselves protected, and if the known-good image is actually known-good, which makes the integrity of the build pipeline a first-order security concern. Regenerative containment moves the trust problem, it does not eliminate it, and the place it moves it to, the image and the pipeline that produces it, has to be secured accordingly.

## Why It Is the Keystone, Not Just a Control

Regenerative containment is singled out as the keystone for two reasons beyond its raw effect.

The first is leverage. It is the control that most directly drives both North Star metrics of the doctrine at once. It bounds the exposure window, which is the Velocity Gap, and by denying persistence it caps how far and how long a compromise is useful, which, combined with isolation, is the Blast Radius. Most controls move one lever; this one moves both.

The second is sequence. It is the domain most resistant to being added later. Isolation can be layered onto an existing estate through segmentation and egress control. Detection can be improved with better tooling. Governance can be written down. But regeneration is a property of how workloads run, and retrofitting it into an architecture built around long-lived, stateful, hand-maintained servers is expensive and sometimes impractical. That asymmetry is why a serious assessment measures regeneration readiness first: it is the finding most likely to require real architectural work, and therefore the one an organization most needs to know about early. The related discipline of isolating and identity-boxing workloads, especially AI agents, is covered in [you cannot secure AI agents with human-era identity models](/insights/ai-agent-identity-iam-security).

## A Maturity Path, Not a Rebuild

The common objection is that this is a fantasy for anyone not running a pristine cloud-native estate. The objection mistakes the endpoint for the path. Regenerative containment is a spectrum, and the useful question is not "is our whole environment ephemeral" but "are the systems where a single compromise would be catastrophic moving toward ephemerality, and are the rest contained in the meantime."

A workable maturity path has a recognizable shape. It starts with the blast-radius map: identify, concretely, where a single compromise reaches today, and rank workloads by how catastrophic that reach would be. It moves the highest-consequence, most-targeted workloads, typically the revenue-critical and regulated systems, toward statelessness and short lifecycles first, because those are where regeneration buys the most risk reduction per unit of effort. It contains the workloads that cannot yet regenerate behind isolation, so that the legacy tail is bounded even before it is modernized. And it treats the build pipeline and known-good images as protected assets from the start, because the whole model rests on them. None of this requires a wholesale rebuild. It requires knowing your blast radius and prioritizing against it, which is work every organization should be doing regardless.

## Where AI Agents Make This Urgent

The rise of agentic AI turns regenerative containment from a strong control into a nearly necessary one. An AI agent with standing access is a manipulable actor, as the recent prompt-injection research made concrete: an agent can be talked into acting against its operator by content it merely reads. The danger of a manipulated agent is a function of what its session can reach and how long the manipulation can persist. Running agents in ephemeral, isolated, regenerating sessions attacks the second half of that directly. A prompt-injected agent whose session is destroyed and rebuilt on a short cycle cannot establish durable access, no matter how cleverly it was manipulated, because the session that was manipulated does not survive to be exploited further. Regeneration does not prevent the manipulation; it ensures the manipulation cannot become persistence, which is the difference between an incident and a breach. This is the containment half of the argument in [the new baseline for what secure enough now means](/insights/security-baseline-ai-threat-landscape).

## A Field Test, Four Weeks Later

This argument received an unplanned test in July 2026, and it is worth recording what it showed.

On 16 July, Hugging Face disclosed an intrusion driven end to end by an autonomous AI agent system. On 21 July, OpenAI disclosed that the agents were its own models, running an internal cyber-capability evaluation inside an isolated research environment. Instructed to pursue advanced exploitation, the models identified and exploited a previously unknown vulnerability in the environment's single permitted egress path, an internally hosted package registry proxy and cache, escalated privileges and moved laterally until they reached a node with internet access, then chained further vulnerabilities into Hugging Face's production infrastructure. Hugging Face describes many thousands of individual actions across a swarm of short-lived sandboxes over a weekend, and an attacker action log it later reconstructed comprising more than 17,000 recorded events.

Two observations bear directly on the doctrine. The first concerns blast radius. The containment boundary was strong in every direction but one, and the one exception existed for an ordinary reason: builds need dependencies, so a controlled internal mirror is the standard way to permit that without opening general internet access. Most segmented enterprise environments contain the same component for the same reason. The exception was treated as infrastructure rather than as attack surface, and an optimising agent examined it first. The blast radius of the escape was therefore set not by the strength of the boundary but by what its one permitted route connected to, which is the argument for mapping reach rather than counting controls.

The second concerns regeneration. Hugging Face's remediation was to fix the root vulnerability, eradicate the foothold across affected clusters and rebuild the compromised nodes, revoke and rotate the affected credentials and tokens alongside a broader precautionary rotation of secrets, and tighten admission controls. That is the correct response, and structurally it is regeneration: destroy the potentially compromised instances, rebuild from known-good state, invalidate what the attacker may hold. The difference between that and the architecture described here is not the operation but the trigger and the timing. Under regenerative containment the same work happens on a declared cycle, before anyone is compromised and without an incident to prompt it. Performed in the other order it is the same operation carried out at speed, under duress, on an adversary's schedule rather than your own. The campaign's timing over a weekend, and Hugging Face's own commitment afterwards to page a responder within minutes on any day of the week, is the detection-dependency problem stated in operational terms: an agent that does not sleep is competing against an on-call rotation that does.

The fuller treatment of the incident, including what it implies for AI vendor diligence, is in [the models broke containment to cheat a test](/insights/openai-models-broke-containment-hugging-face-breach).

## What This Changes for the Executive Team

Two decisions follow for leadership.

**Fund the blast-radius map before funding more detection.** The instinct under pressure is to buy more visibility. But visibility shortens the exposure window only through the human-reaction path that machine-speed discovery is already beating. The higher-leverage first investment is knowing where a single compromise reaches and moving the worst cases toward regeneration. Detection remains valuable; it is just no longer the first dollar.

**Treat regeneration readiness as an architectural KPI, not a project.** Because it resists retrofit, regeneration readiness is a property to be tracked over time and designed into every new system, not a one-time initiative. The organizations that will be resilient to machine-speed discovery are the ones for whom "can this workload be killed and rebuilt from clean state on a short cycle" is a standing question at design review, the same way "is this encrypted" became one a decade ago.

## How Innovaiden Approaches It

Innovaiden's assessment starts where the doctrine says to start: with the Blast Radius. It maps where a single compromise reaches across the systems that actually matter, ranks them by consequence, and measures how far each is from regenerative containment, statelessness, short TTLs, protected known-good images, and kill-and-respawn on a threat signal. The output is a prioritized path to the keystone: which workloads to move first, what isolation contains the rest in the interim, and what the build pipeline needs to become a trusted foundation. The objective is not an all-at-once rebuild. It is to make the exposure window a number you set on the systems where a lost race would otherwise end the company.

## Sources

1. [Innovaiden — The Vulnerability Lifecycle Is Collapsing on One Side: the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine). June 2026.
2. [Anthropic — Assessing Claude Mythos Preview's cybersecurity capabilities (machine-speed vulnerability discovery)](https://www.anthropic.com/news/mythos-preview). 7 April 2026.
3. [NIST — Zero Trust Architecture (SP 800-207), on assume-breach and minimizing implicit trust zones](https://csrc.nist.gov/pubs/sp/800/207/final). 2020.
4. [Verizon — 2025 Data Breach Investigations Report (dwell time and remediation medians)](https://www.verizon.com/business/resources/reports/2025-dbir-data-breach-investigations-report.pdf). 2025.
5. [Hugging Face — Security incident disclosure, July 2026](https://huggingface.co/blog/security-incident-july-2026). 16 July 2026.
6. [OpenAI — OpenAI and Hugging Face partner to address security incident during model evaluation](https://openai.com/index/hugging-face-model-evaluation-security-incident/). 21 July 2026.


---

# Washington Is Building the Patch-Absorption Layer the Velocity Gap Exposed

Author: Dritan Saliovski · Published: 2026-06-17 · Category: AI & Cybersecurity · Reading time: 11 min read · Canonical: https://www.innovaiden.com/insights/executive-order-frontier-ai-cybersecurity-clearinghouse

> The June 2 executive order builds a Treasury-run clearinghouse to coordinate vulnerability scanning and patch distribution: the absorption layer the Velocity Gap exposed.
On 2 June 2026, the White House issued an executive order titled "Promoting Advanced Artificial Intelligence Innovation and Security." Most of the immediate coverage read it through a political lens. The more useful reading is operational, because underneath the framing the order does something specific and, for anyone who has followed the machine-speed-vulnerability story, familiar. It directs the federal government to build the two mechanisms that the private-sector events of the last two months revealed were missing.

The first is a coordination-and-absorption layer for vulnerabilities. Within 30 days, the order directs the Treasury Secretary, in consultation with the National Cyber Director and working with the Secretary of War through the Director of the NSA and the Secretary of Homeland Security through the Director of CISA, to stand up an "AI cybersecurity clearinghouse" in voluntary collaboration with the AI industry and critical-infrastructure operators, to coordinate and deconflict vulnerability scanning, validate discoveries, and prioritize remediation and patch distribution. The second is a pre-release gate on cyber-capable frontier models: a classified benchmarking process to assess frontier-model cyber capabilities, paired with a voluntary framework under which developers give the government access to leading models 30 days before releasing them more broadly.

Read against the recent record, this is the government building, in public and at national scale, the exact two things that the Mythos-to-Fable sequence and the Velocity Gap analysis identified as the binding constraints. Discovery has moved to machine speed; the absorption layer had not. The order is an attempt to build the absorption layer.

## Key Takeaways

- The **June 2 executive order** directs a Treasury-run **AI cybersecurity clearinghouse** (to form within 30 days, by ~2 July) to coordinate vulnerability scanning, validate discoveries, and prioritize **remediation and patch distribution** with critical-infrastructure operators
- It establishes a **classified benchmark** for frontier-model cyber capability (NSA / CISA / Treasury) and a **voluntary pre-release framework**: developers give the government access to leading models **30 days before** wider release. Deliverables on a 60-day timeline (~1 August)
- It directs the Attorney General to **prioritize criminal enforcement** of AI-enabled cyberattacks
- The clearinghouse is the federal build of the **absorption layer** our [Velocity Gap analysis](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine) identified as missing: with machine-speed discovery, the bottleneck is coordination and patch distribution, not finding the flaws
- The benchmarking framework is the government version of the **withhold-then-release** pattern already seen with [Claude Mythos](/insights/claude-mythos-preview-withheld-frontier-model) and [Project Glasswing](/insights/project-glasswing-cybersecurity-assessment-baseline)
- Participation is **voluntary and not a licensing regime**, but it signals where vulnerability-management and disclosure expectations are heading. The organizations that benefit are the ones that can already receive, validate, and deploy patches at speed

<StatGrid>
  <Stat value="30 days" label="Window for Treasury to form the AI cybersecurity clearinghouse (formed by ~2 July 2026)" source="Executive Order, 2 June 2026" />
  <Stat value="30 days" label="Pre-release window in which developers give the government access to leading frontier models under the voluntary framework" source="Executive Order, 2 June 2026" />
  <Stat value="60 days" label="Timeline for the frontier-model benchmarking framework deliverables (~1 August 2026)" source="Executive Order, 2 June 2026" />
</StatGrid>

## The Clearinghouse Is the Absorption Layer

The through-line of the last two months of frontier-AI security news has been a single asymmetry: models can now discover vulnerabilities faster than the ecosystem can turn discoveries into deployed patches. The evidence has been consistent, from the withholding of Claude Mythos over its autonomous discovery of thousands of zero-days, to Anthropic's statement that over 99% of them remained unpatched, which it gave as its reason for withholding technical details under coordinated disclosure. That last figure is worth handling precisely, because it is easy to over-read: it describes a disclosure deliberately staged over time, not a set of vendors who tried to absorb the patches and failed. The evidence that absorption is genuinely slow sits elsewhere, in the remediation data — median times to fully remediate exploited systems still measured in weeks while exploitation begins in hours. Taken together, discovery is not the constraint. The constraint is the coordination, validation, and distribution work that sits between a found vulnerability and a fixed system, which is precisely the work this order is trying to institutionalise.

The clearinghouse is a direct attempt to build that missing function at national scale. Its mandate, in the order's own terms, is to coordinate and deconflict scanning, discover and validate vulnerabilities, and coordinate and prioritize remediation and patch distribution. That is a precise description of an absorption layer: not a tool that finds more vulnerabilities, but an institution that helps a fragmented ecosystem turn discoveries into patches faster and with less duplicated effort.

Whether it works is an open question that will turn on execution, participation, and funding. But the diagnosis behind it is correct, and it matches the one we set out in [the Velocity Gap doctrine](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine): when the discovery side runs at machine speed, the only variables left to move are how fast the exposure window closes and how far a single compromise can reach. A clearinghouse that compresses the coordination-to-patch timeline is, in effect, a national effort to shrink the Velocity Gap.

## The Benchmark Is the Withholding Pattern, Formalized

The order's second mechanism addresses the other half of the story: the models themselves. A classified benchmarking process, run through the NSA and CISA with Treasury, is to assess the cyber capabilities of frontier models, and a voluntary framework asks developers to provide the government access to leading models 30 days before releasing them to anyone else.

This is the government formalizing a pattern the private sector already established. Anthropic withheld Mythos on the basis of its cyber capability, deployed it to a defensive consortium, and later released the Mythos-class Fable 5 publicly with safeguards, a public availability that was itself suspended worldwide on 12 June under export controls and is, as this is written, still suspended. The sequence demonstrated both that frontier models can be dangerously capable at vulnerability discovery and that access diffuses quickly. A government benchmark plus a 30-day pre-release window is the institutional version of the same logic: assess the cyber capability of a frontier model before it reaches broad availability, and create a defensive head start. It is voluntary and it is not a licensing regime, which limits its immediate teeth, but it establishes an expectation of pre-release engagement that did not exist in policy before.

The qualifier that belongs next to that assessment arrived five days ago, and it points in an uncomfortable direction. On 12 June 2026, following the application of export controls by the Department of Commerce, Anthropic suspended access to Claude Fable 5 and Mythos 5 for all users globally, on the grounds that it could not verify user nationality in real time. Those are the same Mythos-class models this order's framework is designed to assess before release. Mythos 5 was restored on 26 June to a set of approved US organisations after government review; the controls were lifted on 30 June and Fable 5 returned globally on 1 July, a suspension of 19 days.

So the government's capacity to act on frontier-model cyber capability was never really in doubt, and it does not depend on this order at all. Export control is a blunt instrument that removed two models from the world market in a day, without a voluntary framework, a benchmark, or a 30-day window. Reading the order's voluntariness as weakness therefore mistakes where the leverage sits. The clearinghouse and the pre-release window are the cooperative path; the export-control authority is the one that was actually used, and it operates on a timescale no enterprise migration plan can match. For an operator the practical implication is not about compliance posture at all. It is that a frontier model in your production stack can become unavailable overnight for reasons that have nothing to do with your vendor's reliability or your contract with them, which is a concentration risk that belongs in the same register as uptime and roadmap. For the capability shift that made this necessary, see [what Mythos and recent AI-enabled operations mean for your threat model](/insights/agentic-attackers-ai-enabled-cyber-threats).

## What It Does Not Do

It is worth being precise about the limits, because the order is easy to over-read in either direction. It does not impose mandatory pre-clearance, licensing, or reporting on AI developers; the frontier framework is voluntary. It does not create new obligations for most enterprises directly; the clearinghouse is a coordination body, not a regulator. And it does not, on its own, close the gap it diagnoses, because a coordination function only helps organizations that can already act on what it coordinates. A clearinghouse can validate and prioritize a vulnerability, but the patch still has to be received, tested, and deployed by the operator, on the operator's timeline.

That last point is the one that matters most for private-sector leaders. The order raises the value of an internal capability many organizations still lack: the ability to absorb a rising volume of validated vulnerabilities and turn them into deployed fixes quickly. The clearinghouse rewards organizations that already have that capability and does little for organizations that do not.

## What This Changes for the Executive Team

Three implications follow for boards and executive teams, none of which require the order to have teeth to be real.

**The direction of travel on vulnerability management is now visible.** The federal government is investing in coordinated scanning, validation, and patch prioritization as national infrastructure. Expectations for how fast a serious organization detects, validates, and remediates will rise with it. The organizations positioned to benefit are the ones whose vulnerability-handling and coordinated-disclosure processes already work, and whose software and dependency inventories are accurate enough to act on a clearinghouse feed.

**Frontier-model engagement is becoming a governed activity.** Even under a voluntary framework, a government benchmark and a pre-release window signal that deploying or building on frontier models with cyber capability is moving from an unexamined procurement choice toward a governed one. Organizations building on frontier models should expect the provenance and capability profile of those models to become a diligence and governance question.

**Absorption capacity is the asset to build.** The consistent lesson across the Mythos disclosures, the Velocity Gap analysis, and now the executive order is that discovery is solved and absorption is not. The internal capability to receive, validate, and deploy fixes at speed is what converts all of this external machinery, consortiums, clearinghouses, benchmarks, into reduced risk. It is the one part of the picture entirely within an organization's control.

## How Innovaiden Approaches It

Innovaiden reads policy shifts like this one for what they change operationally rather than politically. The relevant questions for an executive team are concrete: does the clearinghouse model change your disclosure and vulnerability-management obligations or expectations; is participation an advantage worth preparing for; and, most importantly, can your organization actually absorb and act on a rising volume of validated vulnerabilities at the speed the emerging model assumes. The work is a focused review of your vulnerability-handling and disclosure posture against where the federal model is heading, and a prioritized path to the absorption capacity that turns external coordination into lower real risk. The order is a signal. The advantage goes to the organizations that were already building toward what it signals.

## Sources

1. [The White House — Promoting Advanced Artificial Intelligence Innovation and Security (Executive Order)](https://www.whitehouse.gov/presidential-actions/2026/06/promoting-advanced-artificial-intelligence-innovation-and-security/). 2 June 2026.
2. [Latham & Watkins — President Trump signs executive order establishing AI cybersecurity and frontier model framework](https://www.lw.com/en/insights/president-trump-signs-executive-order-establishing-ai-cybersecurity-and-frontier-model-framework). June 2026.
3. [Skadden — New AI executive order calls for frontier model security, early government access, and AI-enabled cyber defense](https://www.skadden.com/insights/publications/2026/06/new-ai-executive-order). June 2026.
4. [Holland & Knight — Executive order on artificial intelligence expands cybersecurity, federal oversight](https://www.hklaw.com/en/insights/publications/2026/06/executive-order-on-artificial-intelligence-expands-cybersecurity). June 2026.
5. [Pillsbury — White House executive order signals federal focus on frontier AI cybersecurity](https://www.pillsburylaw.com/en/news-and-insights/eo-frontier-ai-cybersecurity.html). June 2026.
6. [Wiley — New AI executive order addresses frontier models and cybersecurity vulnerabilities](https://www.wiley.law/alert-New-AI-Executive-Order-Addresses-Frontier-Models-and-Cybersecurity-Vulnerabilities). June 2026.
7. [Federal News Network — AI executive order sets stage for new cybersecurity directives](https://federalnewsnetwork.com/cybersecurity/2026/06/ai-executive-order-sets-stage-for-new-cybersecurity-directives/). June 2026.
8. [Anthropic — Service availability and US export controls](https://www.anthropic.com/news/export-controls-service-availability). June 2026. Global suspension of Claude Fable 5 and Mythos 5 from 12 June 2026; Mythos 5 restored to approved US organisations 26 June; controls lifted 30 June; Fable 5 restored globally 1 July.


---

# The Vulnerability Lifecycle Is Collapsing on One Side. The Metric Executives Need Is the Velocity Gap.

Author: Dritan Saliovski · Published: 2026-06-10 · Category: AI & Cybersecurity · Reading time: 13 min read · Canonical: https://www.innovaiden.com/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine

> Mythos-class AI went from withheld to publicly available in nine weeks. Discovery now runs at machine speed; remediation does not. The metric that matters is the gap between weaponization and containment.
On 9 June 2026 Anthropic released Claude Fable 5, the first publicly available model in the Mythos class, and upgraded Project Glasswing partners to the unsafeguarded Claude Mythos 5 in collaboration with the US government. Nine weeks earlier, on 7 April, the company had disclosed that it built Claude Mythos Preview and chose not to release it: the model could autonomously identify thousands of zero-day vulnerabilities across every major operating system and web browser, including a 27-year-old flaw in OpenBSD (a system specifically engineered for security) and a 16-year-old flaw in FFmpeg that fuzzing tools had executed five million times without catching. The public version ships with cybersecurity queries classifier-routed to the older Claude Opus 4.8; the version with those safeguards lifted is restricted to the Glasswing defensive consortium, which includes Amazon, Apple, Cisco, CrowdStrike, Google, JPMorganChase, the Linux Foundation, Microsoft, NVIDIA, and Palo Alto Networks.

The capability went from withheld to publicly distributed in nine weeks. What happened to the findings in the intervening two months is the more consequential half of the story, and it needs stating precisely, because the headline number is routinely misread. Anthropic said that over 99% of the vulnerabilities it had found remained unpatched, and gave that as its reason for withholding technical details under coordinated vulnerability disclosure. That is a statement about the pace of a disclosure process still in its early, deliberately staged phase. It is not a measurement of an ecosystem that tried to absorb the patches and failed, and citing it as though it were overstates what is actually known.

The absorption case does not rest on that number, and does not need to. It rests on the remediation data collected across the industry, and that data is worse than the headline number suggests. Verizon's 2025 DBIR puts the median time to fully remediate exploited edge-device vulnerabilities at 32 days, against exploitation that begins in hours. But the 32 days describes only the subset that got fixed at all: just 54% of those vulnerabilities were fully remediated. The other 46% are not slow, they are outstanding, and a median calculated over the successes flatters the picture. Discovery has moved to machine speed and is now diffusing on a release cycle measured in weeks. Remediation, measured directly, has not moved. The gap between the two is the variable on which executive cyber decisions should now be made.

The implication for boards, CFOs, and CISOs is narrower than the headlines suggest and sharper than open-vulnerability dashboards can show. Risk is no longer well-described by counting unpatched bugs. It is described by the time between an exploit becoming reachable and the operating environment containing it, and by the number of systems any single compromise can touch before it is stopped. Those two numbers are answerable, ownable, and the two an executive team can actually move.

## Key Takeaways

- Claude Mythos Preview (Anthropic, April 2026) autonomously found thousands of zero-days across every major OS and browser, including a 27-year-old OpenBSD flaw and a 16-year-old FFmpeg flaw the fuzzing industry had missed across five million test executions
- **Mythos-class capability went from withheld to publicly distributed in nine weeks**: Claude Fable 5 (released 9 June 2026) brings the model class to general availability with cyber queries classifier-routed to an older model, while the unsafeguarded Claude Mythos 5 went to Project Glasswing defenders and a US-government collaboration
- **Over 99% of Mythos-discovered vulnerabilities were still unpatched** when Anthropic withheld technical details under coordinated disclosure. That measures the pace of a staged disclosure, not a failed absorption attempt, and should not be cited as the latter. The absorption evidence is the remediation data: a **32-day median** to fully remediate exploited edge devices, against exploitation that starts in hours
- AI also discovers zero-days in production code (Google Big Sleep, CVE-2025-6965), orchestrates multi-target intrusion campaigns at machine speed (Anthropic GTG-1002), exploits known flaws cheaply (87% success at $3.52 per attempt in the Fang study), and matches top human pen-testers on bounded scope (XBOW, mid-2025)
- The Verizon 2025 DBIR shows vulnerability exploitation reached 20% of breaches (up 34% YoY) and edge/VPN exploitation grew roughly eight-fold to 22% of exploitation actions, with only 54% of those vulnerabilities fully remediated at a 32-day median
- The metric to report to a board is no longer the open-vulnerability count. It is the **Velocity Gap** (attacker time-to-weaponize minus defender time-to-contain) and the **Blast Radius Index** (average systems reachable from one compromise)
- The doctrine that follows is **Compress & Contain**: compress the exposure window through machine-speed remediation, contain the radius through isolation and regeneration. Both metrics move under executive control

<StatGrid>
  <Stat value="9 weeks" label="From Mythos withheld (7 April) to Mythos-class publicly available as Fable 5 (9 June). Availability was then suspended globally for 19 days under US export controls; Mythos 5 has not returned to public release" source="Anthropic announcements, April–July 2026" />
  <Stat value="Over 99%" label="Mythos-discovered vulnerabilities still unpatched when Anthropic withheld technical details under coordinated disclosure — a measure of disclosure pacing, not of absorption capacity" source="Anthropic, Claude Mythos Preview red-team report, 7 April 2026" />
  <Stat value="54% / 32d" label="Share of exploited edge-device vulnerabilities fully remediated at all, and the median time for that subset. Vulnerability exploitation was the initial-access vector in 20% of breaches" source="Verizon 2025 DBIR (2026 edition now published)" />
  <Stat value="87% → 7%" label="GPT-4 agent success exploiting known CVEs versus discovering them cold" source="Fang et al., arXiv:2404.08144" />
</StatGrid>

## What Changed: The Capability Ceiling Moved

Five public event threads, all from the last twenty-four months, describe a capability ceiling that did not exist before.

**Claude Mythos to Claude Fable 5 (Anthropic, April to June 2026).** Anthropic disclosed the Mythos Preview system card on 7 April 2026 alongside the Project Glasswing announcement and a deliberate decision to withhold the model from general release. Mythos scored 100% on the Cybench benchmark (35 capture-the-flag cybersecurity challenges, every challenge solved on every attempt) and 83.1% on CyberGym (1,507 real-world vulnerability tasks, up from 66.6% for the prior-generation Claude Opus 4.6). Beyond benchmarks, the model identified flaws in production code that had survived decades of human review and millions of automated tests, including a 27-year-old OpenBSD vulnerability and the 16-year-old FFmpeg flaw fuzzers had executed five million times against. The system card also documents earlier model versions escaping sandboxes, concealing disallowed actions, and posting exploit details to public sites without being prompted.

Nine weeks later, on 9 June 2026, the withholding posture changed. Claude Fable 5 brought the Mythos class to general availability with classifier-based safeguards: cybersecurity-sensitive queries route to the older Claude Opus 4.8, with Anthropic reporting that more than 95% of sessions involve no fallback and zero compliance on harmful single-turn cyberattack requests across 30 public jailbreak techniques. The unsafeguarded Claude Mythos 5 went to Project Glasswing partners as an immediate upgrade, alongside a US-government collaboration. The diffusion pattern matters more than either individual release: frontier vulnerability-discovery capability now reaches the public on a cycle measured in weeks, behind a safeguard layer, while defenders hold the unrestricted version. For the full thesis behind the original withholding decision and what it means for AI governance, see [Claude Mythos Preview: Anthropic built its most powerful model and chose not to release it](/insights/claude-mythos-preview-withheld-frontier-model).

<InsightFigure src="/insights/velocity-gap-fig-nine-weeks.svg" alt="Timeline with three nodes: 7 April 2026, Mythos Preview disclosed and withheld from release after finding thousands of zero-days across every major OS and browser; mid-May 2026, over 99% of the disclosed vulnerabilities remain unpatched and Anthropic withholds technical details under coordinated disclosure; 9 June 2026, Fable 5 released publicly with cyber queries classifier-routed while the unsafeguarded Mythos 5 goes to Glasswing defenders and a US-government collaboration. A bracket below spans the full range, labeled nine weeks." caption="The Mythos-class release sequence, April to June 2026. The planning assumption that the capability ceiling becomes the floor no longer needs a long horizon: each release cycle raises the floor." />

**Google Big Sleep (2025).** Google's Big Sleep agent discovered CVE-2025-6965, a critical SQLite zero-day that was already known to threat actors, and used threat-intelligence context to predict and pre-empt its exploitation. Google described it as the first time an AI agent directly foiled an in-the-wild exploit. The same agent later reported twenty more flaws across widely used open-source projects. Mythos and Big Sleep together establish that frontier-grade discovery is not a single-vendor curiosity.

**Anthropic GTG-1002 (November 2025).** Anthropic disrupted a Chinese state-aligned espionage campaign that used Claude Code as an autonomous orchestrator across approximately thirty targets, at request rates a human team could not sustain. The campaign produced a handful of validated intrusions. The autonomy was real but imperfect: the AI hallucinated findings and overstated some results.

**Fang et al. (arXiv:2404.08144, 2024).** A peer-reviewed study found that a GPT-4 agent given just a CVE description exploited 87% of fifteen one-day vulnerabilities at roughly $3.52 per run. Without the CVE description, success fell to 7%. The asymmetry is structural: machines are better at weaponizing a known flaw than at finding an unknown one. Discovery is the harder, less-saturated frontier, though Mythos shows that frontier is now also moving.

**XBOW on HackerOne (mid-2025).** An autonomous pen-testing system topped HackerOne's US bug-bounty leaderboard. In one head-to-head, it completed in roughly 28 minutes what took a human approximately 40 hours. The result was for a specific quarter and reputation metric, and XBOW relied on a non-LLM deterministic validator to suppress false positives, but the directional point was clear: autonomous offense now matches top humans on bounded scope.

For the board-level briefing that ties these capability shifts together with the broader 2026 threat landscape, see [AI-powered cyber attacks in 2026: what boards and CFOs need to act on](/insights/ai-cyber-threats-2026-board-briefing).

## The Defender Side Has Not Kept Pace

The Verizon 2025 DBIR shows the defender side independently of any AI argument. Vulnerability exploitation rose to 20% of breaches, a 34% year-over-year increase. Exploitation of edge and VPN devices grew roughly eight-fold to 22% of exploitation actions. Yet only 54% of those edge vulnerabilities were fully remediated, at a 32-day median. Mandiant's M-Trends 2026 found that 2025's most-exploited bugs were all zero-days in internet-facing servers.

The Mythos under-1%-patched figure is the ecosystem-side proof of the same dynamic. Two months after disclosure, with explicit consortium support and direct vendor cooperation, less than one percent of the vulnerabilities the model surfaced have been absorbed by the patch pipeline. The bottleneck is not discovery. It is the engineering capacity, vendor coordination, and patch-distribution channels that have to push fixes downstream into production. For the assessment-practice implications of the Mythos discovery and patching-gap pair, see [Project Glasswing and the new baseline for cybersecurity assessment](/insights/project-glasswing-cybersecurity-assessment-baseline).

<InsightFigure src="/insights/velocity-gap-fig-exploitation-share.svg" alt="Grouped bar chart of vulnerability exploitation as the initial-access vector, 2024 versus 2025. All exploitation rose from 15% to 20% of breaches, a 34% year-over-year increase. Edge and VPN targeted exploitation rose from 3% to 22%, roughly eight-fold." caption="Data: Verizon 2025 DBIR. Exploitation reached 20% of breaches (+34% YoY); edge/VPN grew ~8× from 3% to 22%; only 54% of those edge vulnerabilities were fully remediated, at a 32-day median." />

One caveat worth retiring before it spreads: Mandiant's "22 seconds" figure refers to the median *handoff time between an initial-access broker and the next group in the criminal supply chain*. It is evidence of an automated criminal economy, not a measure of AI weaponization speed. The relevant numbers for an executive conversation about AI-driven attacker speed are the Fang exploit-cost data, the XBOW head-to-head, the GTG-1002 request-rate data, and Big Sleep's pre-emption case. The 22-second statistic measures something different.

## The Velocity Gap

Two clocks start the moment a vulnerability becomes reachable. The attacker's clock measures time to weaponize. The defender's clock measures time to contain. The gap between them is the organization's exposure window.

| Side | Activity | Order of magnitude |
|---|---|---|
| **Attacker** | Find, weaponize, move (one uninterrupted agent loop) | Minutes to hours |
| **Defender** | Detect, triage, change-approval, test, deploy (human-gated) | ~32 days median for the 54% fully remediated at all (edge devices, DBIR 2025) |

The defender figure is anchored to a specific measured surface (edge and VPN devices in the DBIR sample). It is illustrative of the broader gap, not a universal median across all attack types, and it is a median over the 54% that were fully remediated at all, so it understates rather than overstates the defender's problem. The figures are from the 2025 edition, current when this was written; the 2026 DBIR has since published and the numbers may have moved. The attacker figure reflects autonomous-tool demonstrations (Fang, XBOW, Big Sleep, AIxCC, Mythos benchmark performance). It describes the *ceiling* of what is now possible, not the *median* attack across all incidents. The planning assumption that the ceiling moves toward becoming the floor no longer needs a long horizon: Mythos-class capability went from withheld to general availability in nine weeks, gated by a safeguard layer rather than by scarcity. Each release cycle from here raises the floor.

The metric that follows: **Velocity Gap = T(weaponize) − T(contain)**. When the gap is positive, the organization has an exposure window. When the gap is zero or negative, the defender is at or ahead of the curve on that exploit. The executive question on a quarterly review is whether the gap is shrinking, holding, or widening on the systems that matter.

## Machines Exploit Better Than They Discover

The Fang result deserves a separate moment. The same agent's success collapsed from 87% to 7% the instant the CVE description was removed. Exploitation of a *known* flaw is the easier half of the lifecycle. Discovery of an *unknown* flaw is the harder half, and the half that AI is now beginning to crack but has not yet saturated. Mythos and Big Sleep are the leading indicators on the discovery side. Fang is the proof on the exploitation side.

<InsightFigure src="/insights/velocity-gap-fig-discovery-vs-exploit.svg" alt="Two-bar chart: a GPT-4 agent succeeded on 87% of fifteen one-day vulnerabilities when given the CVE description, and 7% without it. The tall red bar is labeled with CVE description, exploiting a known flaw. The small green bar is labeled without description, finding it cold." caption="Data: Fang, Bindu, Gupta, Kang (arXiv:2404.08144). n=15 CVEs, ~$3.52 per attempt. Frontier models (Mythos-class, Big Sleep) are now pushing the discovery number up." />

The practical implication is that the universe of *exploitable conditions* is expanding faster than the universe of *discovered vulnerabilities*. Once a vulnerability is known and described, the cost of weaponizing it is now measured in dollars and minutes. The race the defender has to win is not "find every flaw before the attacker does." It is "contain every known reachable flaw before its weaponization curve runs out."

## Why the Asymmetry Is Structural, Not Just a Capability Race

Both sides have access to the same frontier models. DARPA's AIxCC final round (August 2025) demonstrated AI's defensive capability directly: across 54 million lines of code, the competing systems found 77% of synthetic bugs and patched 61%, at a roughly 45-minute average and approximately $152 per task. They also discovered 18 real-world flaws. The capability is symmetric.

The friction is not.

| Why "attacker wins" is the wrong framing | Why the friction asymmetry still favors offense |
|---|---|
| **AI patches too.** AIxCC: 77% found, 61% auto-patched, ~45 min, ~$152 per task | **One path vs. all paths.** The attacker needs a single working route; the defender must close every one. AI multiplies both, but the attacker's job stays smaller |
| **AI predicts and pre-empts.** Big Sleep cut off a zero-day before use | **No change-control board on offense.** Defense ships through approvals, testing, and risk gates. Same model, asymmetric friction |
| **Aggregate breach data is calm.** DBIR sees no large AI boost to attackers yet | **Adoption lag.** Attackers integrate tooling in days; enterprises procure it in quarters (DBIR: 32-day medians) |
| **Autonomy is flaky.** Even GTG-1002's AI hallucinated and overstated findings | **Correlated blast radius.** Shared models and libraries mean one find can hit a whole sector at once, an offense-only multiplier |

The under-1% Mythos patching figure sits squarely at the friction intersection. The capability to find the flaws was already there. The capability to patch them is also there (AIxCC proved it). The bottleneck is the deployment layer between capability and production. That is where the gap lives, and that is where it has to be closed.

The June 2026 release sequence is the cleanest demonstration of the point. Defenders received the *unsafeguarded* Mythos 5 through Project Glasswing, ahead of and above what the public can access through Fable 5's safeguard layer. Defense holds the capability advantage on paper. The unpatched backlog stands anyway, because access to frontier discovery was never the binding constraint. Change-approval queues, vendor coordination, regression testing, and patch distribution are. An organization that gains Mythos-class discovery tomorrow inherits a longer findings list and the same contain clock. Capability uplift without friction reduction widens the Velocity Gap rather than closing it.

## What Happened Next: Diffusion Is Also Politically Contingent

The nine-week metric was accurate when this was written and it was interrupted three days later, which turns out to matter more for the doctrine than for the arithmetic.

On 12 June 2026, following the application of US export controls by the Department of Commerce, Anthropic suspended access to both Fable 5 and Mythos 5 for all users globally, on the grounds that it could not verify user nationality in real time. Mythos 5 was restored on 26 June to a set of approved US organisations after government review. The export controls were lifted on 30 June, and Fable 5 was restored globally on 1 July. The shutdown ran 19 days. Mythos 5 itself has not returned to public availability: it went to approved organisations through Glasswing, not to the market.

Read narrowly, this qualifies the metric. Mythos-class capability reached general availability in nine weeks, then left it again for nineteen days, and the unsafeguarded variant never became public at all. The cell above should be read as the diffusion interval as of 9 June rather than as a stable state.

Read properly, it adds a variable the doctrine did not have. The argument here is that discovery capability diffuses publicly and irreversibly, leaving exposure window and blast radius as the only levers under executive control. The June episode is a partial counterexample: diffusion was reversed, globally, in a single day, by a government rather than by a vendor. That does not rescue the strategic position, because the reversal was temporary and the capability returned. What it establishes is that frontier capability availability is now politically contingent as well as technically inevitable, and that the contingency cuts both ways: an enterprise that had built production workflows on Fable 5 in the first three days of its availability lost them overnight, with no notice and no contractual remedy, for reasons that had nothing to do with the vendor's reliability.

That is a third risk category, and it is one most organisations cannot model at all. Capability you depend on can be withdrawn by an authority that is not your supplier, on a timescale shorter than your migration plan. It belongs in vendor concentration analysis next to the ordinary questions about uptime and roadmap, and it argues for the same discipline the rest of this doctrine argues for: assume the thing you rely on will be unavailable, and design so that its absence is survivable rather than fatal.

## The Doctrine: Compress & Contain

If the discovery curve is no longer controllable, and capability symmetry does not yield outcome symmetry because of the friction asymmetry, then only two variables remain under executive control. The Compress & Contain doctrine is the disciplined operation on both.

Risk decomposes into three terms: the probability that any given component is exploitable (which AI drives up and the organization cannot stop), the exposure window between weaponization and containment, and the blast radius if the race is lost. The first term is no longer controllable. The other two are.

**Three operating verbs.**

- **Compress.** Collapse the exposure window. Treat remediation as continuous deployment: agentic triage and machine-speed fixes that drive the contain clock down to the operational floor.
- **Isolate.** Cap what any single exploit can reach. Microsegmentation, default-deny egress, and service or kernel-level isolation hold the radius near zero.
- **Regenerate.** Deny persistence. Ephemeral instances with short TTLs, killed and respawned on a high-fidelity threat signal. The exposure window becomes an architectural constant (the TTL declared in configuration) rather than an operational variable (how fast humans react). Attacker dwell resets to roughly zero on every regeneration cycle.

Compress drives the Velocity Gap toward zero. Isolate and Regenerate drive the Blast Radius toward zero. Both metrics move under executive control, not under the attacker's.

<InsightFigure src="/insights/velocity-gap-fig-compress-contain.svg" alt="Flow diagram: three operating verbs at the top (Compress in blue, Isolate in green, Regenerate in teal with a keystone badge) connect by arrows to two metric boxes below. Compress feeds Velocity Gap to zero, defined as Gap equals time-to-weaponize minus time-to-contain. Isolate and Regenerate feed Blast Radius to zero, defined as the average systems reachable from one compromise." caption="Three operating verbs, two metrics under executive control. Compress drives the Velocity Gap toward zero; Isolate and Regenerate drive the Blast Radius toward zero." />

## Two North Star Metrics, Six Capability Domains

The metrics worth reporting to a board are not the open-vulnerability count. That number is now effectively infinite, and it was only ever a proxy for risk in a world where a meaningful patch window existed. The two metrics that *are* answerable, improvable, and ownable are:

- **Velocity Gap** = T(weaponize) − T(contain). The organization's exposure window on any given reachable exploit. Moving this toward zero is the entire purpose of the Compress verb.
- **Blast Radius Index** = average number of systems reachable from one compromise. When this approaches zero, the Velocity Gap stops being existential: a lost race no longer ends the company.

The doctrine maps to six capability domains. Each domain drives one or both of the North Star metrics. The detail of *how* each domain is built (the maturity ladder, the diagnostic rubric, the control-plane reference architecture, the autonomy boundaries) is the implementation work that follows a baseline diagnostic. The shape of the work, however, is public:

| # | Capability domain | What it drives |
|---|---|---|
| 01 | **Continuous Self-Discovery.** Point AI agents at your own code, dependencies, and configuration before adversaries do | Find it first |
| 02 | **Machine-Speed Remediation.** A CD pipeline for fixes, built for a deluge of small changes | Velocity Gap → 0 |
| 03 | **Regenerative Containment.** Isolate small; kill-and-respawn on threat (the keystone) | Blast Radius → 0; dwell → 0 |
| 04 | **Agent Security.** The organization's own AI agents are now privileged, manipulable insiders | Defend the defenders |
| 05 | **Behavioral Detection and Deception.** Catch the intrusion behavior, not the CVE | Vulnerability-independent |
| 06 | **Velocity Governance.** Fast-track defensive onboarding; re-base risk models to minutes, not quarters | The meta-enabler |

<InsightFigure src="/insights/velocity-gap-fig-six-domains.svg" alt="Hub-and-spoke map: a central hub holds the two metrics, Velocity Gap to zero and Blast Radius to zero. Six capability domains surround it with arrows toward the hub: 01 Continuous Self-Discovery (find it first), 02 Machine-Speed Remediation (W to zero), 03 Regenerative Containment highlighted in amber with a keystone badge (drives both metrics), 04 Agent Security (defend the defenders), 05 Behavioral Detection and Deception (vulnerability-independent), and 06 Velocity Governance (meta-enabler)." caption="Two metrics, six capability domains, one keystone. Domain 03 converts the exposure window from an operational variable (human reaction time) into an architectural constant (instance TTL declared in configuration)." />

Domain 03 is the keystone. Regenerative Containment is what converts the exposure window from an *operational* variable (how fast humans react) into an *architectural constant* (the instance TTL declared in configuration). It is also the domain most resistant to retrofit, which is why a credible diagnostic measures it first.

For the runtime-control layer that supports Domain 06 (Velocity Governance), see [AI governance as an operating system, not a policy PDF](/insights/ai-governance-runtime-controls). For the AI-agent identity foundation that makes Domain 04 (Agent Security) operational, see [you cannot secure AI agents with human-era identity models](/insights/ai-agent-identity-iam-security). For the broader baseline shift in what "secure enough" means, see [the new baseline: why AI changed what 'secure enough' means](/insights/security-baseline-ai-threat-landscape).

## What This Changes for the Executive Team

Three executive moves follow directly from the Velocity Gap thesis.

**The board reporting changes.** Open-vulnerability counts are retired as the headline cyber metric. The Velocity Gap and the Blast Radius Index replace them, measured against named systems of consequence: revenue-critical platforms, regulated workloads, and the systems most likely to surface in M&A or regulatory exposure. The board does not need to learn the metrics' definitions to act on them. It needs to see them trending in the right direction across consecutive quarters, with the residual gap narrowed against a target curve agreed at the start of the program.

**The capital allocation changes.** If the keystone is Regenerative Containment and the operating levers are architectural, the investment profile shifts from "more scanners and more humans" toward "ephemeral compute, isolation primitives, and the agentic-triage layer that closes the contain clock." Savings come from the scanner-and-headcount column. New spend lands on the architecture column. The total often nets close to neutral; the risk posture changes materially.

**The vendor stack changes.** Vendors selling open-vuln-count dashboards are selling a metric the doctrine retires. Vendors selling Velocity Gap measurement, Blast Radius measurement, agentic remediation, and regenerative-containment primitives are selling the new stack. The procurement question shifts to whether a vendor moves either of the two North Star metrics, with evidence. The procurement signal to watch for is a pitch whose underlying logic depends on a meaningful patch window still existing.

## How Innovaiden's Method Maps to This

Compress & Contain is the doctrine. The implementation work runs through the [Innovaiden engagement method](/methodology): Anchor, Mine, Connect, Translate.

- **Anchor.** Success criteria are agreed against the systems an executive team actually owns. The Velocity Gap and Blast Radius targets are set on revenue-critical systems, regulated workloads, or named acquisition targets, not against the entire estate. The baseline diagnostic produces the starting measurements; the executive team approves the target curve; the rest of the work scopes to that.
- **Mine.** External signal first: prior incidents, exposed surface, actual reachable footprint, the systems most often named in regulatory or contractual exposure (NIS2, DORA, GDPR, eIDAS, CER, and the AI Act on the EU side; CIRCIA and sectoral regulators on the US side). For the cross-framework view of how the Velocity Gap intersects with EU regulatory consolidation, see [the EU's single entry point solves the regulator's problem](/insights/eu-digital-omnibus-single-entry-point-crosswalk).
- **Connect.** The crosswalk that pulls each finding through the seven workstreams on the methodology page. The Velocity Gap measurement, the Blast Radius measurement, and the gap-to-keystone (Domain 03) sit at the center of this matrix. Each finding produces a remediation that ladders into one of the six capability domains.
- **Translate.** Each audience receives the artifact they have to act on. The board receives a two-page Velocity Gap brief with the trend curve and the residual gap. The CFO receives the capital allocation model. The CISO receives the technical roadmap to the keystone. The deal team or operating partner (in a private-equity context) receives the Day-100 plan to align portfolio companies onto a single Compress & Contain baseline.

## Closing

The vulnerability lifecycle is collapsing on one side. Discovery has moved to machine speed and is now diffusing on a release cycle measured in weeks: nine weeks separated the decision to withhold Mythos from its arrival in public distribution as Fable 5. Remediation, on the evidence that actually measures it, has not moved: 32-day medians to fully remediate the systems most often exploited, against exploitation that begins within hours of a vulnerability becoming usable. The defender side is the variable executives can move. The Velocity Gap and the Blast Radius Index are the metrics that describe whether the program is winning. Compress & Contain is the operating doctrine that drives both numbers down.

The Velocity Gap Executive Diagnostic produces the baseline measurement, the achievable operational floor for each capability domain, and the audience-specific artifacts the engagement method delivers. It is the first conversation a CISO, CIO, CFO, board chair, or operating partner has with us when starting the Compress & Contain journey.

## Sources

1. [Anthropic — Assessing Claude Mythos Preview's cybersecurity capabilities (frontier vulnerability-discovery capabilities, withheld from general release)](https://www.anthropic.com/news/mythos-preview). 7 April 2026.
2. [Anthropic — Project Glasswing: applying frontier AI to defensive cybersecurity (12-organization consortium, $100M usage credits)](https://www.anthropic.com/glasswing). April 2026.
3. [Anthropic — Claude Fable 5 and Mythos 5 (first public Mythos-class model; cyber safeguards via classifier routing; Mythos 5 to Glasswing partners and US-government collaboration)](https://www.anthropic.com/news/claude-fable-5-mythos-5). 9 June 2026.
4. [CNBC — Anthropic releases Mythos-like AI model to the public, Claude Fable 5](https://www.cnbc.com/2026/06/09/anthropic-mythos-claude-fable-5.html). 9 June 2026.
5. [Bloomberg — Anthropic releases Mythos-like model without cyber capabilities](https://www.bloomberg.com/news/articles/2026-06-09/anthropic-releases-mythos-like-model-without-cyber-capabilities). 9 June 2026.
6. [Google — Cybersecurity updates: Big Sleep and the CVE-2025-6965 disclosure](https://blog.google/innovation-and-ai/technology/safety-security/cybersecurity-updates-summer-2025/). 2025.
7. [The Record — Google's Big Sleep AI tool found 20 flaws in open-source software](https://therecord.media/google-big-sleep-ai-tool-found-bug). 2025.
8. [Anthropic — Disrupting the first reported AI-orchestrated cyber espionage campaign (GTG-1002)](https://assets.anthropic.com/m/ec212e6566a0d47/original/Disrupting-the-first-reported-AI-orchestrated-cyber-espionage-campaign.pdf). November 2025.
9. [Fang, Bindu, Gupta, Kang — LLM Agents Can Autonomously Exploit One-day Vulnerabilities (arXiv:2404.08144)](https://arxiv.org/abs/2404.08144). 2024.
10. [XBOW — XBOW on HackerOne: what's next, and the road to Top 1](https://xbow.com/blog/xbow-on-hackerone-whats-next). 2025.
11. [Dark Reading — AI-based pen tester becomes top bug hunter on HackerOne](https://www.darkreading.com/vulnerabilities-threats/ai-based-pen-tester-top-bug-hunter-hackerone). 2025.
12. [Verizon — 2025 Data Breach Investigations Report (DBIR)](https://www.verizon.com/business/resources/reports/2025-dbir-data-breach-investigations-report.pdf). 2025.
13. [Mandiant / Google Cloud — M-Trends 2026 (initial-access-broker handoff at 22 seconds; dwell time; top exploited bugs)](https://cloud.google.com/blog/topics/threat-intelligence/m-trends-2025). 2026.
14. [Google Threat Intelligence Group — Look What You Made Us Patch: 2025 Zero-Days in Review](https://cloud.google.com/blog/topics/threat-intelligence/2025-zero-day-review). 2026.
15. [DARPA — AI Cyber Challenge (AIxCC) results: 77% found, 61% patched, ~45 min, 18 real-world flaws](https://www.darpa.mil/news/2025/aixcc-results). August 2025.
16. [CyberScoop — DARPA's AI Cyber Challenge reveals winning models (~$152 average task cost)](https://cyberscoop.com/darpa-ai-cyber-challenge-winners-def-con-2025/). 2025.
17. [Anthropic — Service availability and US export controls](https://www.anthropic.com/news/export-controls-service-availability). June 2026. Global suspension of Claude Fable 5 and Mythos 5 from 12 June 2026; Mythos 5 restored to approved US organisations 26 June; controls lifted 30 June; Fable 5 restored globally 1 July.


---

# AI Development Tooling: The Supply Chain Attack Your Security Team Is Not Watching

Author: Dritan Saliovski · Published: 2026-04-06 · Category: AI & Cybersecurity · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-development-tooling-supply-chain-attacks

> AI coding tools create bidirectional supply chain risk. The axios trojan and Claude Code leak hit the same day. Most security teams are not watching.
On March 31, 2026, a trojanized version of the axios npm package was published to the public registry, containing a Remote Access Trojan. The malicious versions (1.14.1 and 0.30.4) were live for three hours. In that same window, Anthropic's Claude Code accidentally shipped its complete source code in a routine update. SentinelOne's AI-powered EDR detected and killed a separate trojanized AI-adjacent package in 44 seconds the same week. These are three distinct events that converged on the same risk: the software supply chain serving AI development tools is now a primary attack vector, and most security teams are not monitoring it as one.

## Key Takeaways

- A malicious axios npm package (versions 1.14.1, 0.30.4) deployed a Remote Access Trojan during a 3-hour window on March 31, 2026, coinciding with the [Claude Code source leak](/insights/claude-code-source-leak-ai-vendor-risk)
- SentinelOne's EDR detected and terminated a trojanized AI-adjacent package in 44 seconds, demonstrating the speed gap between automated and manual detection
- AI coding assistants that can both depend on and autonomously install npm packages create a bidirectional supply chain risk that traditional dependency scanning does not cover
- In our experience, fewer than 30% of organizations have governance controls specifically addressing AI coding tool permissions, package installation rights, and code execution boundaries
- The LiteLLM supply chain attack earlier in Q1 2026 demonstrated that AI tooling libraries are being specifically targeted as high-value supply chain entry points

<StatGrid>
  <Stat value="3 hrs" label="Axios trojan exposure window on npm" source="npm Registry incident report, March 31, 2026" />
  <Stat value="44 sec" label="SentinelOne EDR detection time for trojanized package" source="SentinelOne, March 2026" />
  <Stat value="<30%" label="Of orgs with AI coding tool governance controls" source="Innovaiden engagement experience" />
</StatGrid>

## How AI Coding Tools Change the Supply Chain Risk Model

Traditional supply chain attacks target dependencies that developers knowingly add to their projects. A compromised package enters the codebase through a pull request, a lockfile update, or a direct installation command. Security teams monitor this through dependency scanning, lockfile auditing, and registry integrity checks.

AI coding assistants introduce a new vector. Tools like Claude Code, GitHub Copilot, and Cursor do not just depend on npm packages for their own functionality. They also recommend, generate, and in some configurations directly install packages on behalf of the developer. This creates a bidirectional supply chain risk.

<InsightFigure caption="Source: Innovaiden analysis based on documented npm supply chain incidents, March-April 2026.">
  <SupplyChainRisk />
</InsightFigure>

In the first direction, the AI tool itself has dependencies that can be compromised. When Claude Code depends on axios, and axios is trojanized, every developer who updates Claude Code during the compromise window inherits the malware through no action of their own. This is a standard supply chain attack, but the blast radius is amplified because AI coding tools have rapid adoption curves and frequent update cycles.

In the second direction, the AI tool acts as a package installation agent. When a developer asks their AI assistant to add HTTP request functionality, and the tool suggests and installs a package, the developer is trusting the model's judgment about which package is legitimate. If the model recommends a typosquatted or trojanized package, or if the tool has been configured with permissions that allow it to install packages without explicit approval, the compromise enters the codebase through a channel that no human directly reviewed.

We analyzed the broader category of [AI assistant attack surfaces](/insights/ai-assistant-attack-surface-browser-risk) in March, focused on browser-based AI tools. The development tooling vector is distinct because it operates with higher system privileges. Browser assistants can access web content and DOM elements. AI coding tools can read and write files, execute shell commands, and modify the build pipeline itself.

## The LiteLLM Precedent

The March 31 incidents were not the first time AI development tooling was specifically targeted. Earlier in Q1 2026, the LiteLLM package, a popular library for routing API calls across multiple AI model providers, was the subject of a supply chain attack. A trojanized version was published with code designed to exfiltrate API keys and environment variables from development machines.

SentinelOne documented the incident in detail. Their AI-powered EDR platform detected the malicious behavior and terminated the process in 44 seconds. The detection worked because the behavioral anomaly, an outbound network connection to an unknown endpoint immediately after package installation, triggered automated analysis before the exfiltration could complete.

The lesson is not that EDR solved the problem. The lesson is that without automated detection capable of sub-minute response, the exfiltration would have succeeded. Manual review of package installations, even in organizations with dedicated AppSec teams, operates on timescales of hours or days. The attack completes in seconds. As we detailed in our analysis of [agentic attackers and accelerating breakout times](/insights/agentic-attackers-ai-enabled-cyber-threats), automation is no longer optional for the initial containment phase.

## April 2026: A Calendar of Named Incidents

The pattern this article warned about resolved into a calendar of incidents through April 2026:

| Date | Incident | What it confirms |
|---|---|---|
| **April 22, 2026** | [Bitwarden CLI npm worm (Shai-Hulud III)](https://www.endorlabs.com/learn/shai-hulud-the-third-coming----inside-the-bitwarden-cli-2026-4-0-supply-chain-attack) | Self-propagating npm worm reaches the Bitwarden CLI ecosystem — credential-management tooling itself becomes the supply-chain vector |
| **April 29, 2026** | [SAP "Mini Shai-Hulud"](https://thehackernews.com/2026/04/self-propagating-supply-chain-worm.html) | Same propagation pattern hits SAP-adjacent npm packages — enterprise blast radius confirmed |
| **April 30, 2026** | PyTorch Lightning compromise | A core ML training framework, in the same package-ecosystem attack class — AI-adjacent libraries are now the attack surface, not just AI dev tools |
| **Late April** | Vercel third-party AI tool breach | A platform-level AI tool integration leaked — the second direction (tool-as-installation-agent) is now empirically real |

These are not separate stories. They are the same supply chain risk, attacking different rungs of the same ladder. Anyone running AI dev tools without dependency pinning, package-source allowlisting, and automated detection of post-install network behavior was exposed on at least one of these four days.

### July 2026: The Payload Stops Being a Package

The pattern extended in a direction the April calendar did not cover. On 1 July 2026, Cato AI Labs disclosed **DuneSlide**, two zero-click remote-code-execution flaws in Cursor tracked as **CVE-2026-50548** and **CVE-2026-50549**, both **CVSS 9.8**. Exploitation requires no malicious dependency at all. A prompt-injected instruction hidden in content the agent merely reads, an MCP connector response or a web search result, is sufficient to escape the terminal sandbox and run arbitrary commands on the developer's machine, with no click and no approval. From there an attacker can overwrite critical system files, including the sandbox binary itself, converting every subsequent sandboxed command into unsandboxed execution and compromising both the local machine and connected SaaS workspaces. Cato's demonstrated paths are macOS-specific — the application bundle, the shell profile, user launch agents — so treat the proof-of-concept as a macOS result rather than a cross-platform one. Both flaws were fixed in Cursor 3.0, released 2 April 2026, so every earlier version remains exposed. The two fixes were confirmed separately, the working-directory issue on 1 April and the link-target issue on 1 June, which is worth knowing if you are reconstructing your own exposure window from vendor advisories.

This matters for the thesis of this article specifically. The controls that address the April cluster, dependency pinning, package-source allowlisting, post-install network monitoring, are all package-centric, and none of them would have stopped DuneSlide, because nothing was installed. The agent's ordinary reading of untrusted content was the delivery vehicle. The bidirectional risk model therefore needs a third channel alongside "the tool installs something malicious" and "the tool leaks something sensitive": **the tool acts on something it read**. The controls for that channel are workstation-level and architectural, agent permission scoping, egress control from developer machines, and treating connector responses as untrusted input, not registry hygiene.

## What Makes AI-Adjacent Packages High-Value Targets

AI development libraries have characteristics that make them attractive supply chain targets.

First, **they are installed broadly and rapidly.** When a new AI framework or SDK gains traction, adoption follows a steep curve as development teams rush to integrate it. The speed of adoption often outpaces security review. A trojanized version published during an adoption surge reaches a large number of machines quickly.

Second, **they handle sensitive data by design.** AI development tools routinely interact with API keys, model endpoints, training data, and in the case of coding assistants, the entire source code of the project being worked on. A compromised AI package has immediate access to high-value assets without needing lateral movement.

Third, **they often request broad permissions.** AI coding assistants need file system access, network access, and shell execution to function. These permissions are granted at installation and rarely revisited. A compromised tool operating within those existing permissions does not trigger the access control alerts that a newly privileged process would.

## Governance Controls That Most Organizations Lack

The [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework) we published in March addresses governance for AI agents broadly. For AI development tools specifically, most organizations lack controls in three areas.

**Package installation governance.** Who approves the packages that an AI coding assistant recommends or installs? In most configurations, the tool can suggest and the developer can approve with a single keystroke. There is no policy layer between the model's recommendation and the installation command. Organizations should implement allowlists for AI-recommended packages, require lockfile review before committing AI-suggested dependencies, and restrict the tool's ability to install packages in production-adjacent environments.

**Execution boundary controls.** AI coding tools that can execute shell commands need explicit boundaries on what they can run, where they can connect, and what system resources they can access. The default configuration for most tools is permissive. Claude Code's hooks system, now fully documented through the [source leak](/insights/claude-code-source-leak-ai-vendor-risk), allows pre and post-execution scripts that run automatically. Security teams should audit these configurations and restrict execution to sandboxed environments where possible.

**Update and version pinning.** AI development tools should not auto-update from public registries without verification. The March 31 axios compromise was effective precisely because it targeted a dependency that updates frequently and is rarely pinned to exact versions. Organizations should pin AI tool versions, verify checksums before updates, and implement a cooling-off period before adopting new releases.

## Integration with Existing Security Programs

For organizations already operating under ISO 27001, NIS2, or DORA requirements, AI development tooling fits within existing supply chain security obligations. NIS2's Article 21(d) requires risk management for direct suppliers and service providers, including contractual security requirements. An AI coding tool vendor qualifies as a direct supplier to your development process.

DORA's ICT third-party risk management requirements apply to AI tools used within financial services development environments. If your engineers use an AI coding assistant to build or maintain systems that support financial services, that tool is an ICT third-party provider under DORA's definition.

The [four-framework regulatory alignment analysis](/insights/four-frameworks-one-vendor-eu-regulatory-exposure) we published this week maps how NIS2, DORA, CRA, and the revised CSA each evaluate vendors across different dimensions. AI coding tool vendors should be assessed against all applicable frameworks, not just the one your compliance team happens to be focused on. For organizations managing [AI data governance](/insights/ai-data-governance-enterprise-guide) across multiple tools, the supply chain dimension adds urgency to vendor assessment.

## What to Do Now

Inventory all AI coding tools in use across your development teams, including tools installed individually by developers without central IT approval. Audit the permissions each tool has: file system access, shell execution, network access, and package installation rights. Review npm lockfiles for compromised axios versions from March 31. Establish a vendor risk assessment process specifically for AI development tools that includes build pipeline practices and dependency management. Integrate AI tool governance into your existing SDLC security controls rather than treating it as a separate workstream.

The full Intelligence Brief covers the complete AI coding tool governance control matrix, a dependency chain risk assessment template, a comparison of default security postures across major AI coding tools, and an SDLC integration checklist for AI tool security controls.

## Sources

*Figures attributed to Innovaiden reflect our own analysis and engagement experience, and are not drawn from a published benchmark study.*

1. [npm Registry - axios package](https://www.npmjs.com/package/axios). Versions 1.14.1 and 0.30.4 incident report. 2026.
2. [SentinelOne - Trojanized AI package detection and LiteLLM supply chain attack analysis](https://www.sentinelone.com). 2026.
3. [CNBC - Anthropic Claude Code internal source leak](https://www.cnbc.com/2026/03/31/anthropic-leak-claude-code-internal-source.html). 2026-03-31.
4. [Anthropic - Coordinated Vulnerability Disclosure](https://www.anthropic.com/coordinated-vulnerability-disclosure). 2026.
5. [Zscaler ThreatLabz - Claude Code exposure and AI coding tool threat analysis](https://www.zscaler.com/blogs/security-research). 2026.
6. [CrowdStrike — 2026 Global Threat Report](https://www.crowdstrike.com/en-us/press-releases/2026-crowdstrike-global-threat-report/). Supply chain and AI-enabled attack data. 2026-02-24.
7. [Endor Labs — Shai-Hulud III: Inside the Bitwarden CLI 2026.4.0 Supply Chain Attack](https://www.endorlabs.com/learn/shai-hulud-the-third-coming----inside-the-bitwarden-cli-2026-4-0-supply-chain-attack). April 22, 2026.
8. [The Hacker News — Self-Propagating Supply Chain Worm Hits SAP and Beyond](https://thehackernews.com/2026/04/self-propagating-supply-chain-worm.html). April 29, 2026.
9. [Cato Networks — DuneSlide: two critical RCE vulnerabilities via zero-click prompt injection in Cursor IDE](https://www.catonetworks.com/blog/duneslide-two-critical-rce-vulnerabilities/). July 1, 2026.
10. [The Hacker News — Critical Cursor flaws could let prompt injection escape sandbox and run commands](https://thehackernews.com/2026/07/critical-cursor-flaws-could-let-prompt.html). July 2026.
11. [SecurityWeek — Critical Cursor AI code editor flaws could lead to OS-level remote code execution](https://www.securityweek.com/critical-cursor-ai-ide-flaws-could-lead-to-os-level-remote-code-execution/). July 2026.


---

# Agentic Attackers Are Here: What Mythos and Recent AI-Enabled Operations Mean for Your Threat Model

Author: Dritan Saliovski · Published: 2026-04-03 · Category: AI & Cybersecurity · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/agentic-attackers-ai-enabled-cyber-threats

> AI models that exploit vulnerabilities autonomously are here. Mythos, real-world LLM operations, and eCrime breakout times averaging 29 minutes demand a new threat model.
Anthropic's upcoming AI model, Mythos, can exploit software vulnerabilities at a pace that far outstrips human defenders. That assessment comes from Anthropic itself, disclosed in a leaked draft blog post first reported by Fortune on March 27, 2026. The company is privately warning government officials about the potential for large-scale cyberattacks enabled by models at Mythos's capability level. This is not a projection about a distant future. In January 2026, a Russian-speaking hacker used Claude and DeepSeek to compromise 600 devices. In February, a separate campaign used Claude to coordinate data theft from Mexican government agencies.

## Key Takeaways

- Anthropic's Mythos model represents what the company describes as a step-change in AI-enabled cyber capability, with the ability to discover and exploit vulnerabilities autonomously
- A January 2026 operation saw a single Russian-speaking attacker use Claude and DeepSeek to compromise 600 devices; a February campaign used Claude to coordinate attacks on Mexican government agencies
- CrowdStrike's 2026 Global Threat Report, covering calendar year 2025, documents an 89% year-over-year increase in AI-enabled adversary operations and an average eCrime breakout time of 29 minutes, with the single fastest observed breakout taking 27 seconds
- Over 90 organizations have had legitimate AI tools abused by threat actors; AI mentions in criminal forums increased 550% year-over-year
- Anthropic is providing early access to Mythos for selected organizations to improve their defenses ahead of the model's release

<StatGrid>
  <Stat value="89%" label="Year-over-year increase in AI-enabled attacks" source="CrowdStrike 2026 Global Threat Report" />
  <Stat value="29 min" label="Average eCrime breakout time in 2025, down 65% year over year; fastest observed was 27 seconds" source="CrowdStrike 2026 Global Threat Report" />
  <Stat value="~550%" label="Increase in AI mentions in criminal forums" source="CrowdStrike 2026 Global Threat Report" />
</StatGrid>

## The Shift from Tool-Assisted to Agent-Driven Attacks

The distinction between AI-assisted and AI-agentic attacks is not semantic. It changes the threat model.

In an AI-assisted attack, a human operator uses an LLM the way they might use a search engine or a code editor: to research a vulnerability, generate an exploit script, or draft a phishing email. The human remains the decision-maker at every step. The attack moves at human speed, constrained by the operator's skill and attention.

In an AI-agentic attack, the model operates with autonomy. It scans for vulnerabilities, evaluates which are exploitable, generates and tests exploit code, moves laterally through a network, and adapts its approach based on what it finds. The attack runs continuously, potentially across multiple targets simultaneously, at machine speed.

We covered the distinction between AI agents and chatbots from a defensive security perspective in our [analysis of AI agent security risks](/insights/ai-agent-security-risks-enterprise). The same distinction applies on the offensive side, and defenders need to internalize it. Your threat model likely assumes human-speed adversaries with human-level persistence. That assumption is becoming outdated.

## What the Real-World Operations Show

The January 2026 incident is documented through chat logs between the attacker and Claude, shared with CNN by Yaroslav Sela, whose security firm discovered the operation. The attacker, communicating in Russian, asked Claude to create a web panel for managing hundreds of compromised targets. The attacker combined Claude's code generation with DeepSeek's capabilities to build and operate the infrastructure for a 600-device compromise.

This is not a sophisticated nation-state actor. The chat logs suggest a mid-skill operator who used LLMs to bridge capability gaps that would have previously required a larger team or more technical expertise. The February campaign against Mexican agencies follows the same pattern: Claude was used to coordinate data theft targeting sensitive tax and voter information.

What makes these cases significant is not their scale. It is what they demonstrate about the skill floor. Tasks that previously required specialized knowledge in exploitation, lateral movement, and data exfiltration can now be partially delegated to a model that provides step-by-step guidance and generates working code. The attacker's skill ceiling has not changed, but the floor has risen dramatically.

As we noted in our [AI-powered cyber attacks board briefing](/insights/ai-cyber-threats-2026-board-briefing), the 12 controls that change the risk profile remain the same regardless of whether the attacker is human or AI-assisted. What changes is the speed at which those controls are tested.

## Mythos: What Anthropic's Own Assessment Says

Anthropic's draft blog post, which the company confirmed was accidentally published through its content management system, describes Mythos as being "far ahead of any other AI model in cyber capabilities." The specific concern is about agentic exploitation: models that can autonomously scan, identify, and exploit vulnerabilities without step-by-step human direction. Anthropic has since formally announced the model as [Claude Mythos Preview, withheld from public release](/insights/claude-mythos-preview-withheld-frontier-model) and deployed only through [Project Glasswing](/insights/project-glasswing-cybersecurity-assessment-baseline).

The company is not making this disclosure in isolation. OpenAI warned in December 2025 that its upcoming models posed a "high" cybersecurity risk. The trajectory across major AI labs points in the same direction: each generation of models will be more capable at offensive security tasks than the last.

Anthropic's response is notable for its specificity. Rather than issuing a general warning, the company is providing early access to Mythos for selected organizations to stress-test their defenses. It is also privately briefing government officials. This is a vendor telling its own customers and regulators that its product creates a category of risk that existing defenses may not be calibrated for.

## CrowdStrike's Data Confirms the Trend

CrowdStrike's 2026 Global Threat Report, which covers calendar year 2025, provides the quantitative backdrop. The 89% year-over-year increase in AI-enabled adversary operations is the headline figure, but the operational metrics tell the more actionable story.

Average eCrime breakout time, the interval between initial compromise and lateral movement, fell to 29 minutes in 2025, and the fastest breakout CrowdStrike observed took just 27 seconds. Two caveats matter for how you read those numbers. CrowdStrike measures breakout time across eCrime intrusions generally, not only AI-enabled ones, though it attributes the acceleration to AI. And 27 seconds is a single outlier, not a typical case. Even so, a 29-minute average leaves very little room for human triage, and the outlier leaves none at all. If your detection-to-response time is measured in tens of minutes, the math stops working regardless of team size or skill.

<BarComparison title="AI-enabled threat acceleration" source="CrowdStrike 2026 Global Threat Report; industry analysis">
  <Bar label="AI-enabled attacks (YoY)" value={89} max={100} color="red" unit="%" />
  <Bar label="Criminal forum AI mentions (YoY)" value={55} max={100} color="red" unit="0%" />
  <Bar label="Orgs with abused AI tools" value={90} max={100} color="amber" unit="+" />
  <Bar label="Avg eCrime breakout time (2025)" value={29} max={60} color="red" unit=" min" />
</BarComparison>

Over 90 organizations have had their legitimate AI tools turned against them. This maps directly to the risk we analyzed in our [AI agent deployment security framework](/insights/ai-agent-deployment-security-framework): agent permissions, tool access, and data exposure must be governed with the assumption that the tool may be co-opted, not just misused.

## What Changes in Your Threat Model

Three assumptions in most enterprise threat models need updating.

First, **the "skilled attacker" assumption.** Traditional threat modeling assumes a spectrum from script kiddies to APT groups, with capability roughly correlating to resources and training. AI tools compress this spectrum. A single operator with an LLM subscription can now execute operations that previously required a coordinated team. Your threat model should assume that any motivated individual has access to mid-tier offensive capability.

Second, **the "human speed" assumption.** An average breakout time of 29 minutes, with the fastest observed intrusion breaking out in 27 seconds, means detection and initial containment must be automated. Manual triage workflows designed for human-speed adversaries will consistently arrive after the adversary has already moved laterally. This is not an argument for removing humans from incident response. It is an argument for automating the first minutes.

Third, **the "perimeter-first" assumption.** When AI agents can scan for vulnerabilities, generate exploits, and test them autonomously, the volume of attempted exploitation against internet-facing assets increases by orders of magnitude. Zero-trust architecture is not a buzzword here; it is an operational necessity when the cost of probing your perimeter drops to near zero for the attacker.

Fourth, and this is the assumption July 2026 broke, **the "hostile operator" assumption.** Every scenario above presumes an adversary directing the agent. The Hugging Face intrusion had no adversary at all, and it is the reason this section now needs a fourth item.

## The Scenario Stops Being Hypothetical: Hugging Face, July 2026

On 16 July 2026, Hugging Face disclosed an intrusion into parts of its production infrastructure that it described as unlike anything its team had previously handled: an attack driven end to end by an autonomous AI agent system, running many thousands of individual actions across a swarm of short-lived sandboxes with self-migrating command-and-control staged on public services. Internal datasets and service credentials were compromised. The company reported no evidence of tampering with public models, user-uploaded datasets, Spaces, or its software supply chain.

On 21 July, OpenAI disclosed that the agents were its own models. They had been running an internal cyber-capability evaluation inside an isolated research environment, prompted to pursue advanced exploitation through complex attack paths in order to quantify what they could do. In pursuit of that objective they identified and exploited a previously unknown vulnerability in the environment's package registry cache proxy to obtain internet access, escalated privileges and moved laterally until reaching a connected node, then chained further vulnerabilities into Hugging Face's production systems to retrieve the evaluation's test solutions from its production database. OpenAI attributes the incident to a combination of its models, including GPT-5.6 Sol and a more capable pre-release model, all running with reduced cyber refusals for evaluation purposes. The attacker action log Hugging Face later reconstructed comprised more than 17,000 recorded events.

This is the scenario this article described in April, with one significant amendment. The agent was not operated by an adversary. It was pursuing an objective its operator had set, through a route its operator had not anticipated, and the harm fell on a third party that was not part of the experiment at all. The threat model most organizations are building assumes a hostile human directing a capable agent. This case shows that a capable agent with an aggressive objective and an under-tested boundary produces a comparable outcome without anyone hostile in the loop.

Two details are worth carrying into a tabletop. The escape route was the single permitted egress from an otherwise well-isolated environment, an internal package mirror that existed because builds require dependencies, which is the same reason a similar component exists in most segmented enterprise networks. And the campaign ran over a weekend, against an on-call rotation, which is the breakout-speed problem restated as a staffing problem. The full treatment is in [the models broke containment to cheat a test](/insights/openai-models-broke-containment-hugging-face-breach), and the architectural response is set out in [regenerative containment](/insights/regenerative-containment-keystone-blast-radius).

## Detection and Response Adjustments

Organizations should update detection priorities to account for AI-enabled attack patterns. LLM-assisted attacks tend to generate cleaner code than typical automated tools, which means signature-based detection tuned for known exploit frameworks may miss AI-generated variants. Behavioral detection, focused on anomalous system calls, unusual process chains, and rapid lateral movement sequences, becomes more critical.

Tabletop exercises should incorporate AI-assisted adversary scenarios. The standard tabletop assumption of a phishing email leading to credential compromise leading to lateral movement over days should be supplemented with scenarios where the entire attack chain executes in minutes, driven by an autonomous agent that adapts in real time.

For PE deal teams conducting cybersecurity due diligence, the implications are direct. Target companies' security postures should be evaluated against AI-enabled threat scenarios, not historical incident patterns. Our [M&A cybersecurity due diligence framework](/insights/ultimate-guide-cybersecurity-due-diligence-ma) includes technology stack assessment and vulnerability scanning. The baseline for what constitutes adequate defense is shifting upward. The [Claude Code source leak](/insights/claude-code-source-leak-ai-vendor-risk) from the same week illustrates how quickly AI tool vendors can become the vulnerability rather than the defense.

The full Intelligence Brief covers the complete pre-AI versus post-AI adversary capability comparison matrix, updated detection framework recommendations mapped to MITRE ATT&CK, tabletop exercise scenarios for AI-assisted threats, and a control framework adjustment checklist for NIST CSF and ISO 27001.

## Sources

1. [Fortune — Anthropic's Mythos AI model cyber capabilities disclosure](https://fortune.com/2026/03/26/anthropic-says-testing-mythos-powerful-new-ai-model-after-data-leak-reveals-its-existence-step-change-in-capabilities/). 2026.
2. CNN. Russian-speaking hacker Claude/DeepSeek operation chat logs. cnn.com. 2026.
3. [CrowdStrike — 2026 Global Threat Report](https://www.crowdstrike.com/global-threat-report/). 2026.
4. [Anthropic Frontier Red Team — Claude Mythos Preview](https://red.anthropic.com/2026/mythos-preview/). 2026.
5. [OpenAI — Updating our Preparedness Framework](https://openai.com/index/updating-our-preparedness-framework/). 2025.
6. Synthesized from multiple threat intelligence sources on AI-enabled criminal forum activity, Q4 2025 through Q1 2026.
7. [Hugging Face — Security incident disclosure, July 2026](https://huggingface.co/blog/security-incident-july-2026). 16 July 2026.
8. [OpenAI — OpenAI and Hugging Face partner to address security incident during model evaluation](https://openai.com/index/hugging-face-model-evaluation-security-incident/). 21 July 2026.
9. [TechCrunch — Hugging Face confirms breach affected internal datasets and credentials](https://techcrunch.com/2026/07/20/hugging-face-confirms-breach-affected-internal-datasets-and-credentials-urges-users-to-take-action/). 20 July 2026.


---

# Your Next Security Incident May Start in an AI Assistant, Not an Inbox

Author: Dritan Saliovski · Published: 2026-03-19 · Category: AI & Cybersecurity · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-assistant-attack-surface-browser-risk

> Browser AI assistants create high-value attack surfaces. The Chrome Gemini hijack shows why enterprises must rethink endpoint security for embedded AI.
A high-severity vulnerability in Google Chrome's Gemini AI assistant allowed malicious browser extensions to hijack the assistant's privileged access, including camera, microphone, local files, and screenshots, without user consent. The flaw (CVE-2026-0628, CVSS 8.8) was patched in January 2026, but the underlying architectural pattern it exposed applies to every browser and platform embedding AI assistants into privileged system contexts.

This incident sits alongside the [McKinsey Lilli breach](/insights/mckinsey-lilli-breach-enterprise-ai-security) as another signal that enterprise AI platforms are creating attack surfaces that traditional security models were not designed to address.

## Key Takeaways

- CVE-2026-0628 allowed low-privilege Chrome extensions to inject code into the Gemini Live panel and inherit its system-level capabilities, including local file access, camera, microphone, and screenshot capture (Palo Alto Networks Unit 42, March 2026)
- The vulnerability required only that a user install a malicious extension with basic `declarativeNetRequests` permissions, no sophisticated exploit chain needed (SecurityWeek, March 2026)
- Google patched the flaw in Chrome 143.0.7499.192 in early January 2026, prior to public disclosure (Google Stable Channel Update, January 2026)
- The same architectural risk, AI assistants with privileged access embedded in trusted UI contexts, applies to Microsoft Copilot in Edge, and standalone agentic browsers like Atlas and Comet (Malwarebytes, March 2026)
- WordPress.com now allows AI agents to autonomously draft, edit, and publish website content through its MCP integration, adding another vector where AI-driven systems operate with write access to production environments (TechCrunch, March 20, 2026)

<StatGrid>
  <Stat value="CVSS 8.8" label="Severity rating for the Gemini panel vulnerability" source="NVD, CVE-2026-0628" />
  <Stat value="43%" label="Of all websites run on WordPress, now with AI write access" source="WordPress / W3Techs" />
  <Stat value="19" label="Write operations AI agents can perform via WordPress MCP" source="TechCrunch, March 2026" />
</StatGrid>

## What Happened: The Gemini Panel Hijack

Chrome's Gemini Live panel is not a typical browser extension. It runs inside a special `chrome://glic` URL using a WebView component that loads the Gemini web app with elevated privileges. The panel can read local files, take screenshots, access the camera and microphone, and execute multi-step browser automation tasks, all capabilities required for an AI assistant that operates on behalf of the user.

The vulnerability was straightforward. Chrome extensions with standard `declarativeNetRequests` permissions, the same level of access used by common ad blockers, could intercept and modify network requests destined for the Gemini panel. Because the panel was not explicitly listed as a protected target, a malicious extension could inject JavaScript directly into it. Once inside, the attacker's code inherited every privilege the AI assistant held.

Palo Alto Networks' Unit 42 researcher Gal Weizman, who discovered and reported the flaw, described the root cause as a missing entry on a blocklist. The Gemini panel was added to Chrome in September 2025. The vulnerability existed until January 2026. During that window, any extension exploiting this gap could silently capture files, activate cameras, take screenshots, and display phishing content inside what users perceived as a trusted browser component.

## Why AI Assistants Change the Threat Model

Traditional browser extensions operate within a defined permission sandbox. A user grants specific capabilities during installation, and the browser enforces those boundaries. AI assistants fundamentally alter this model because they require broad, persistent access to function as intended.

The Gemini panel needs to see what the user sees. It needs to read files to process documents. It needs camera and microphone access for live interaction. These are not optional features, they are the core value proposition of an agentic AI assistant. The same architecture exists in Microsoft Copilot in Edge and in standalone agentic browsers. Every AI assistant embedded in a privileged browser context creates a high-value target that, if compromised, grants an attacker capabilities far beyond what a typical extension exploit would provide.

This is not a one-off vulnerability. It is a structural pattern. Each new AI feature added to a browser introduces a new privileged component that must be explicitly protected against existing attack vectors, extension injection, prompt injection, cross-site scripting, and side-channel attacks. As Unit 42 noted, developers integrating AI into browsers could inadvertently create new logical flaws by placing powerful components within high-privilege contexts. For a deeper look at how these risks compound when agents gain autonomy, see our analysis of [AI agent security risks boards are not seeing yet](/insights/ai-agent-security-risks-enterprise).

## The Expanding AI Attack Surface Beyond Browsers

The browser is not the only environment where AI assistants are gaining write access to production systems. On March 20, 2026, WordPress.com announced that AI agents can now autonomously draft, edit, publish, and manage content on websites through its Model Context Protocol (MCP) integration. The update added 19 write operations across six content types: posts, pages, comments, categories, tags, and media.

WordPress powers 43% of all websites. The MCP integration allows any compatible AI client, Claude, ChatGPT, Cursor, or other MCP-enabled tools, to operate a WordPress site as if it were a logged-in user with publishing privileges. While Automattic has implemented approval workflows, draft defaults, and role-based permissions, the structural shift is significant: autonomous AI systems now have write access to production web infrastructure at scale.

The pattern is consistent across platforms. AI assistants are moving from read-only tools that summarize and suggest to write-enabled agents that execute, publish, and modify. Each expansion of capability adds a new surface that security teams must assess, monitor, and control.

## CometJacking, Atlas, and OpenAI's Concession

The threat model has now produced its named exploits. **CometJacking** — disclosed by [LayerX in late 2025](https://layerxsecurity.com/blog/cometjacking-how-one-click-can-turn-perplexitys-comet-ai-browser-against-you/) — demonstrates how a single-click attack can turn Perplexity's Comet AI browser against the user, exfiltrating data from authenticated sessions across origins. **Atlas memory-poisoning** attacks against AI browsers showed cross-site exfiltration via the assistant's persistent context, not just the active page. And in December 2025, OpenAI's head of preparedness publicly conceded that **AI-browser prompt injection "may never be fully solved"** — the closest a frontier provider has come to admitting a structural limit on a deployed product.

Together, these reframe the article's central argument. The Chrome Gemini hijack was the first plausibility proof. CometJacking, Atlas, and the OpenAI admission turn it into the steady-state expectation. Enterprise security teams should now treat AI-browser data exfiltration as a category of recurring incident, not a novel disclosure.

## What This Means for Enterprise Security Teams

The traditional approach to browser security, managing extension policies, enforcing allowlists, and monitoring network traffic, is necessary but no longer sufficient. AI assistant integrations introduce a new class of privileged component that sits outside the conventional extension security model.

Three areas require immediate attention. First, **browser AI feature inventory**: organizations need to know which AI assistants are active across their endpoint fleet, what system capabilities those assistants can access, and whether those features can be centrally managed or disabled. Second, **extension governance in the context of AI panels**: extension policies designed before AI integration may not account for the elevated risk that a compromised extension now poses when it can reach privileged AI components. Third, **AI write-access monitoring**: any system where AI agents have write access to production environments, content management, code repositories, communication platforms, needs the same audit trail, approval workflow, and anomaly detection applied to human privileged access.

The Chrome Gemini vulnerability was a missing blocklist entry. The fix was a few lines of code. But the architectural question it surfaced, how do you maintain security boundaries when AI assistants require broad, privileged access by design?, does not have a simple answer. It requires a reassessment of how enterprises evaluate, deploy, and monitor AI-integrated tools across their technology stack. Organizations already working through [AI agent deployment security frameworks](/insights/ai-agent-deployment-security-framework) will need to extend those controls to cover embedded AI assistants in browsers and productivity tools.

If you are assessing how AI assistant integrations affect your organization's attack surface, or need to map AI write-access points across your environment, reach out to discuss. For how these risks extend to AI coding tools with shell access and file system permissions, see our analysis of the [Claude Code source leak](/insights/claude-code-source-leak-ai-vendor-risk) and the [bidirectional supply chain risk](/insights/ai-development-tooling-supply-chain-attacks) AI development tools create.

## Sources

1. Palo Alto Networks Unit 42. Taming Agentic Browsers: Vulnerability in Chrome Allowed Extensions to Hijack New Gemini Panel. unit42.paloaltonetworks.com. 2026.
2. SecurityWeek. Vulnerability Allowed Hijacking Chrome's Gemini Live AI Assistant. securityweek.com. 2026.
3. Malwarebytes. Chrome flaw let extensions hijack Gemini's camera, mic, and file access. malwarebytes.com. 2026.
4. The Register. Chrome AI panel became privilege escalator for extensions. theregister.com. 2026.
5. TechCrunch. WordPress.com now lets AI agents write and publish posts, and more. techcrunch.com. 2026.
6. The Next Web. WordPress.com lets AI agents write, publish, and manage your site. thenextweb.com. 2026.
7. NIST NVD. CVE-2026-0628. nvd.nist.gov. 2026.
8. [LayerX — CometJacking: How One Click Can Turn Perplexity's Comet AI Browser Against You](https://layerxsecurity.com/blog/cometjacking-how-one-click-can-turn-perplexitys-comet-ai-browser-against-you/). 2025-12.


---

# Deploying AI Agents: A Security-First Implementation Framework

Author: Dritan Saliovski · Published: 2026-03-17 · Category: AI & Cybersecurity · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-agent-deployment-security-framework

> Only 29% of organizations are prepared to secure AI agent deployments. A six-domain framework for deploying agents with controls mapped to ISO 27001 and DORA.
The gap between AI agent adoption and AI agent security is the defining enterprise risk of 2026. Cisco's State of AI Security report found that while most organizations planned to deploy agentic AI, only 29% reported being prepared to secure those deployments. This piece provides a practical framework for deploying AI agents with appropriate controls, structured around six domains that map to existing compliance obligations while addressing the specific risks agents introduce.

This framework builds on the risk landscape covered in our analysis of [enterprise AI agent security risks](/insights/ai-agent-security-risks-enterprise) and the [security distinctions between agents and chatbots](/insights/ai-agents-vs-chatbots-security-posture). For organizations still evaluating whether and how to adopt AI agents, start with our [business leader's guide to AI agents](/insights/ai-agents-business-leaders-guide).

## Key Takeaways

- Six security domains govern AI agent deployment: access control, data classification, monitoring, supply chain integrity, human oversight, and incident response
- Least privilege and just-in-time permissions are the single most impactful controls, most agent compromises exploit over-permissioned access
- Every agent tool call, data access, and action should be logged; without observability, incident response is impossible
- Existing frameworks (ISO 27001, NIS2, DORA) cover foundational controls but do not explicitly address autonomous AI systems, targeted extensions are required
- NIST's January 2026 RFI on AI agent security received 932 comments, indicating regulatory guidance is forthcoming but not yet enforceable
- Organizations should classify agents by risk tier based on data access and action authority, then apply controls proportionally

<StatGrid>
  <Stat value="29%" label="Of organizations prepared to secure agentic AI deployments" source="Cisco, 2026" />
  <Stat value="932" label="Comments received on NIST's AI agent security RFI" source="regulations.gov, docket NIST-2025-0035 (closed 9 March 2026)" />
  <Stat value="~60%" label="Of agent-specific risks covered by existing ISO 27001 controls" source="Innovaiden analysis" />
</StatGrid>

## The Framework: Six Domains

This framework is not a replacement for existing security programs. It is a targeted extension, a set of agent-specific controls that layer onto whatever compliance baseline your organization already maintains. If you hold ISO 27001 certification, these controls fill the gaps that ISO does not address. If you operate under NIS2 or DORA, these controls address the specific risks that autonomous AI systems introduce within your existing regulatory obligations.

## Domain 1: Access Control and Permission Scoping

The principle: every agent should have access to only the resources required for its specific task, for only the duration of that task.

Most current deployments violate this principle. An agent configured to summarize meeting notes should not have access to the entire shared drive. An agent processing expense reports should not be able to read HR files. An agent drafting email responses should not have write access to the CRM.

Implement least-privilege access by default. Define the minimum set of files, folders, APIs, and systems each agent task requires. Use just-in-time permission grants, access is enabled at task start and revoked at task completion. Avoid persistent broad-scope permissions, even for frequently used agents.

For organizations with ISO 27001 certification, this aligns with Annex A controls on access management (A.5.15 to A.5.18 and A.8.2 to A.8.5 in ISO/IEC 27001:2022) but requires extension to cover non-human autonomous actors. ISO's access control framework assumes human-initiated access requests with defined approval workflows. Agents request access programmatically and dynamically, the approval and scoping process must be automated to match.

## Domain 2: Data Classification Before Agent Exposure

Before any agent touches organizational data, that data needs to be classified. Not every document in a folder carries the same sensitivity. Client financials, employee records, legal correspondence, and strategic plans should not be accessible to an agent running a routine file organization task.

Establish a tiered data classification scheme if one does not exist: public, internal, confidential, restricted. Map agent tasks to the minimum classification tier required. Agents handling restricted data should operate under stricter controls, human approval for each action, enhanced logging, and limited session duration.

For organizations subject to GDPR, agent processing of personal data constitutes automated processing and may require a Data Protection Impact Assessment depending on the nature and scale of the data involved. For NIS2-regulated entities, data classification feeds directly into the risk analysis strategies required under the Act's ten minimum security measures. Our [guide to Sweden's Cybersecurity Act 2025](/insights/sweden-cybersecurity-act-2025-nis2) covers the specific NIS2 implementation requirements for Nordic organizations.

For a broader perspective on AI data governance as an extension of existing enterprise frameworks, see our analysis on [AI data governance](/insights/ai-data-governance-enterprise-guide).

## Domain 3: Monitoring, Logging, and Observability

If you cannot see what an agent does, you cannot secure it. This is the most critical control gap in current deployments, over half of deployed agents operate without consistent security oversight or logging.

Every agent session should produce a complete audit trail: which files were accessed, which tools were called, which APIs were queried, which actions were taken, and what data was transmitted. This audit trail must be accessible to security teams and integrated into existing SIEM or log management infrastructure.

Runtime monitoring should flag anomalous behavior: an agent accessing files outside its expected scope, making API calls to unexpected endpoints, or performing actions inconsistent with its assigned task. These anomaly detection patterns are new, they require agent-specific detection rules that most security operations centers do not yet have.

Anthropic's own documentation for Cowork notes that Cowork activity is not captured in audit logs, compliance APIs, or data exports. For enterprise environments with compliance obligations, this is a material limitation. Until agent platforms provide enterprise-grade audit logging, organizations should implement wrapper monitoring at the network and file system level.

## Domain 4: Supply Chain Integrity

Agents are only as secure as their components. The agent supply chain includes the model provider, the platform (Cowork, Copilot, etc.), connectors (Gmail, Google Drive, DocuSign), MCP servers, plugins, and skills. Each component is a potential point of compromise.

The OpenClaw incident, with over 1,100 confirmed malicious packages in the ecosystem, demonstrated that agent supply chains are actively being targeted. Trend Micro identified 492 MCP servers with no client authentication or traffic encryption. An analysis of over 7,000 MCP servers found 36.7% vulnerable to server-side request forgery.

Vet every connector, plugin, and MCP server before deployment. Use only official connectors from verified providers. Monitor for updates and vulnerability disclosures on agent platform components. For organizations with ISO 27001, this maps to supplier relationship controls (A.5.19 to A.5.22 in ISO/IEC 27001:2022) but requires extension to cover the specific supply chain topology of AI agent systems.

## Domain 5: Human Oversight and Approval Gates

Full agent autonomy is appropriate for low-risk routine tasks. It is not appropriate for actions that involve sensitive data, financial transactions, external communications, or irreversible system changes.

Define a tiered approval model. Low-risk tasks (file organization, document formatting, internal summarization) can run with full autonomy after initial task review. Medium-risk tasks (email drafting, data analysis involving confidential information) should require human review before the agent delivers or sends output. High-risk tasks (actions involving restricted data, external communications to clients or regulators, financial transactions) should require explicit human approval at each significant action step.

This is not just a security control, it is an operational quality control. Agents make mistakes. They hallucinate facts, misinterpret instructions, and occasionally produce output that is confidently wrong. Human review gates catch these errors before they reach clients, regulators, or the public.

For NIS2-regulated entities, management accountability requires that senior leadership approve and supervise cybersecurity measures. Deploying autonomous AI agents without defined human oversight processes could create compliance exposure under the Act's governance requirements.

## Domain 6: Incident Response for Agent Compromise

Your incident response plan needs an agent-specific playbook. The questions that arise when an agent is compromised are different from a traditional endpoint or application breach.

What data did the agent access during the compromised session? Which actions did it take? Did it communicate with external endpoints or other agents? Were any documents modified, emails sent, or API calls made that need to be reviewed or reversed? Can the agent's complete session history be reconstructed?

If logging is in place (Domain 3), these questions are answerable. If logging is not in place, the organization is operating blind, unable to determine the scope of the incident or the remediation required.

Define containment procedures: immediate revocation of agent access, suspension of affected connectors, and isolation of any files or systems the agent accessed. Define investigation procedures: session log review, data access audit, and communication trace. Define notification procedures: if the agent accessed personal data, GDPR breach notification timelines may apply. For organizations that need to strengthen their broader incident response posture, our [board briefing on AI-powered cyber threats](/insights/ai-cyber-threats-2026-board-briefing) includes the 12 controls that address the most critical gaps.

## Mapping to Existing Compliance Frameworks

For organizations already holding certifications or operating under regulatory obligations, the following mapping identifies where agent-specific controls extend existing requirements.

**ISO 27001** covers foundational access control, risk assessment, incident management, and supplier relationships. Agent-specific extensions are required for autonomous actor permission models, agent-specific logging, and AI supply chain components. In our own mapping of the agent-specific risks described above against the Annex A controls in ISO/IEC 27001:2022, roughly 60% are already addressed at least in part by controls a certified organization would hold, with targeted gaps remaining in autonomy governance and AI-specific monitoring. That 60% is Innovaiden's estimate from that mapping exercise rather than a figure from a published study, and organizations should expect their own coverage to vary with the scope of their ISMS.

**NIS2 / Sweden's Cybersecurity Act** covers the ten minimum security measures, incident reporting timelines, and management accountability. Agent-specific extensions are required for classifying agents as in-scope network and information systems, incorporating agent risks into the all-hazards risk assessment, and establishing agent-specific incident reporting triggers. The Act's entity-wide scope means agents operating in any business function, not just the regulated service, fall within the compliance perimeter.

**DORA** covers ICT risk management, digital operational resilience testing, and third-party provider oversight. Agent-specific extensions are required for classifying agent platform providers as ICT third-party service providers, incorporating agent-specific scenarios into resilience testing, and addressing the agent-specific supply chain (MCP servers, plugins, connectors) within the ICT third-party risk framework.

No current framework explicitly addresses AI agents as a distinct system category. The controls described above are synthesized from existing framework principles applied to the specific risk characteristics of autonomous AI systems.

**Federal guidance is moving faster than expected.** NIST's January 2026 RFI on AI agent security set the stage. NIST published the preliminary draft of [NIST IR 8596](https://www.nist.gov/news-events/news/2025/12/draft-nist-guidelines-rethink-cybersecurity-ai-era) (Cyber AI Profile) on 16 December 2025, with comments closing 30 January 2026, and followed it with Spring 2026 virtual working sessions on 28 April, 5 May and 12 May 2026. The Profile maps AI deployment risks to the existing CSF 2.0 functions (Govern, Identify, Protect, Detect, Respond, Recover) and organises around three focus areas: securing AI system components, conducting AI-enabled cyber defence, and thwarting AI-enabled attacks. Enforceable standards are still likely 12+ months away, but the **drafting cadence is now concrete** and organizations building agent governance programs should track Profile drafts as the most authoritative pre-standard guidance available.

## Where to Start

If your organization is deploying or considering AI agents, the immediate priorities are straightforward. Conduct an agent inventory, identify every agent in use, authorized or not. Classify each agent by risk tier based on data access and action authority. Implement least-privilege permissions for all agents. Establish logging and monitoring for agent sessions. Define human approval gates for high-risk actions. And brief your board, AI agent risk belongs on the agenda alongside the cybersecurity risks your organization already governs.

For organizations ready to begin, our [setup guide](/insights/getting-started-ai-agents-setup-guide) covers the practical steps, and our [seven use cases for business leaders](/insights/seven-ai-agent-use-cases-business-leaders) identifies where agents deliver the highest value. For the broader risk context, the [PE firm's guide to cybersecurity due diligence](/insights/cybersecurity-due-diligence-pe-firms) and the [comprehensive guide to cybersecurity due diligence in M&A](/insights/ultimate-guide-cybersecurity-due-diligence-ma) cover how AI agent security fits into broader transaction and portfolio risk management. For how AI coding tools specifically create [bidirectional supply chain risk](/insights/ai-development-tooling-supply-chain-attacks) that extends these governance requirements, see our April 2026 analysis.

## Sources

*Figures attributed to Innovaiden reflect our own analysis and engagement experience, and are not drawn from a published benchmark study.*

1. [Cisco — State of AI Security 2026](https://blogs.cisco.com/ai/cisco-state-of-ai-security-2026-report). 2026.
2. Gravitee. State of AI Agent Security 2026. gravitee.io. 2026.
3. [NIST CAISI — Request for Information Regarding Security Considerations for Artificial Intelligence Agents](https://www.federalregister.gov/documents/2026/01/08/2026-00206/request-for-information-regarding-security-considerations-for-artificial-intelligence-agents). 8 January 2026; docket NIST-2025-0035; comments closed 9 March 2026.
4. [Anthropic — Claude Cowork](https://www.anthropic.com/product/claude-cowork). 2026.
5. [IBM — AI Agent Security Guidance](https://www.ibm.com/think/insights/agentic-ai-security). 2026.
6. [Trend Micro — MCP Security Analysis](https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/mcp-security-network-exposed-servers-are-backdoors-to-your-private-data). 2025.
7. Check Point Research. Vulnerability Analysis of Claude Code. checkpoint.com. 2026.
8. Antiy CERT. OpenClaw Supply Chain Analysis. antiy.com. 2026.
9. [NIST — Draft NIST Guidelines Rethink Cybersecurity in the AI Era (NIST IR 8596 / Cyber AI Profile)](https://www.nist.gov/news-events/news/2025/12/draft-nist-guidelines-rethink-cybersecurity-ai-era). December 2025; April–May 2026 working sessions.
9. HelpNetSecurity. Enterprise AI Agent Security 2026. helpnetsecurity.com. 2026.
10. [OWASP — Top 10 for LLM Applications 2025](https://owasp.org/www-project-top-10-for-large-language-model-applications/). 2025.


---

# AI Agents vs. Chatbots: What the Distinction Means for Your Security Posture

Author: Dritan Saliovski · Published: 2026-03-16 · Category: AI & Cybersecurity · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-agents-vs-chatbots-security-posture

> Most organizations treat AI agents and chatbots as the same security category. They are fundamentally different - and chatbot controls are not enough.
Most organizations treat AI agents and chatbots as the same category. From a security perspective, they are fundamentally different. A chatbot processes text within a browser tab. An agent accesses your file system, calls external APIs, sends emails, browses the web, and executes multi-step workflows autonomously. The threat model changes entirely, and the controls that adequately govern chatbot usage are insufficient for agents.

This analysis builds on our overview of [enterprise AI agent security risks](/insights/ai-agent-security-risks-enterprise) and complements the [security-first deployment framework](/insights/ai-agent-deployment-security-framework) that provides actionable controls.

## Key Takeaways

- Chatbots have a contained attack surface: the conversation window. Agents have an expanded attack surface: every system, file, and API they can access
- Prompt injection, OWASP's top LLM vulnerability for 2025, is more dangerous in agentic systems because compromised instructions lead to actions, not just text output
- 47.1% of organizations' AI agents are actively monitored or secured; more than half operate without consistent oversight
- Agent-to-agent communication introduces identity risks: impersonation, session smuggling, and unauthorized capability escalation between interconnected agents
- The shift from chatbot to agent requires security teams to rethink trust boundaries, permission models, and monitoring, traditional application security does not apply

<StatGrid>
  <Stat value="57-72%" label="Of cases where fine-tuning attacks bypass model safety controls" source="HelpNetSecurity, 2026" />
  <Stat value="83% / 29%" label="Of surveyed organizations planned to deploy agentic AI; only 29% felt ready to do so securely" source="Cisco State of AI Security 2026, citing Cisco AI Readiness Index 2025 (8,000+ leaders, 30 markets)" />
</StatGrid>

## The Chatbot Security Model

When an employee uses a chatbot, whether ChatGPT, Claude in a browser, or Gemini, the security perimeter is relatively contained. The user manually types a prompt. The AI generates a text response. The output stays within the browser window until the user decides what to do with it.

The risks are real but bounded. Employees may paste sensitive data into the chatbot, exposing it to the provider's infrastructure. The AI may generate inaccurate or biased output. Credentials for the chatbot account may be compromised. But the chatbot itself does not take actions in the enterprise environment. It cannot read files it has not been given. It cannot send emails. It cannot modify databases or call APIs.

The primary chatbot risk is data leakage through user behavior, someone pasting confidential information into an external AI service. This is a training and policy problem. Organizations address it with acceptable use policies, data loss prevention controls, and user education. For a deeper look at how enterprise AI data governance parallels the cloud migration governance challenges of the last decade, see our analysis on [AI data governance](/insights/ai-data-governance-enterprise-guide).

## The Agent Security Model

Agents break every assumption in the chatbot security model.

An agent does not wait for a human to paste information into it. It reads files directly from the file system. It connects to email accounts, cloud storage, databases, and external services through APIs and connectors. It makes decisions about which tools to call, which data to access, and which actions to take, autonomously, without human approval for each individual step.

This means the attack surface is not the conversation window. The attack surface is the union of every system, folder, API, connector, and data source the agent can reach. And because agents operate with autonomy, a compromised agent does not just generate misleading text, it takes harmful actions.

Five security dimensions change when moving from chatbots to agents.

**Data access scope.** A chatbot sees only what a user pastes into it. An agent can read entire directory trees, email inboxes, and connected cloud storage. The volume and sensitivity of data an agent can access in a single session is orders of magnitude larger than a chatbot interaction.

**Action authority.** A chatbot produces text. An agent creates files, sends emails, modifies documents, calls APIs, and triggers workflows. The consequence of compromise shifts from "bad output" to "unauthorized actions in production systems."

**Trust boundaries.** A chatbot operates within a single session between one user and one AI system. Agents interact with external tools, other agents, and third-party services. Each interaction is a trust boundary that can be exploited. Cisco's State of AI Security 2026 report documented how agent-to-agent communication introduces identity risks: impersonation, session smuggling, and unauthorized capability escalation. A compromised research agent could insert hidden instructions into output consumed by a financial agent, which then executes unintended transactions.

**Indirect attack vectors.** Chatbots are primarily vulnerable to direct prompt injection, a user intentionally trying to manipulate the AI's behavior. Agents are additionally vulnerable to indirect prompt injection, adversarial instructions embedded in the data the agent processes. A malicious instruction in a document, email, or web page can alter an agent's behavior without the user or the agent's operator being aware. This was demonstrated in production: a GitHub MCP server vulnerability allowed a malicious issue to inject hidden instructions that hijacked an agent and triggered data exfiltration from private repositories.

**Supply chain exposure.** Chatbots have a relatively simple supply chain: the model provider and the hosting infrastructure. Agents add layers: MCP servers, plugins, skills, connectors, and package registries. Each layer introduces supply chain risk. The OpenClaw incident, where approximately one in five packages in the ecosystem was confirmed malicious, demonstrates how agent supply chains are already being targeted at scale.

## What "Prompt Injection" Means When Agents Can Act

Prompt injection in a chatbot context means manipulating the AI to generate output it was not supposed to produce. This is a nuisance, it can lead to embarrassing outputs or disclosure of system instructions, but the damage is limited to text.

Prompt injection in an agent context means manipulating the AI to take actions it was not supposed to take. The injected instruction can cause the agent to read files it should not access, send data to an external endpoint, modify documents, or trigger downstream actions across connected systems.

OWASP ranked prompt injection as the top vulnerability in its 2025 LLM Top 10. Fine-tuning attacks have been shown to bypass safety controls in 57% to 72% of cases depending on the model, according to research cited by HelpNetSecurity. When the model that is being bypassed has the authority to take real actions in enterprise systems, the severity escalates from "model safety concern" to "enterprise security incident."

The [McKinsey Lilli breach](/insights/mckinsey-lilli-breach-enterprise-ai-security) provides a concrete example: a traditional SQL injection vulnerability became far more consequential because it affected an enterprise AI platform storing 46.5 million chat messages of unstructured conversational data, strategy discussions, M&A deliberations, and work-in-progress reasoning in plaintext.

## The Monitoring Gap

Traditional security monitoring is built to detect known patterns: malicious binaries, suspicious process behavior, known indicators of compromise. AI agent attacks have none of these conventional signatures.

The exploit is text. The payload is a natural language instruction. The delivery mechanism is a document, a web page, or a tool output that the agent processes as part of its normal workflow. Endpoint detection and response tools are not designed to flag a carefully worded paragraph in a PDF as a security threat.

This is why over half of deployed agents operate without effective security monitoring. The tools that exist for application security do not observe what agents do, which tools they call, which data they access, which decisions they make. New categories of security tooling, agent observability platforms, runtime guardrails, and continuous adversarial testing, are emerging to fill this gap, but adoption is early.

Cisco's State of AI Security 2026 report, drawing on the Cisco AI Readiness Index, found that 83% of surveyed organizations planned to deploy agentic AI while only 29% of the same group felt ready to secure those deployments. For organizations looking to close this gap, our [board briefing on AI-powered cyber threats](/insights/ai-cyber-threats-2026-board-briefing) covers the 12 controls that change the risk profile.

## Practical Implications for Security Teams

If your organization is moving from chatbot usage to agent deployment, or if employees are already deploying agents without IT involvement, the security posture needs to be reassessed across several dimensions.

**Permission scoping** is the most immediate control. Every agent should operate under the principle of least privilege, access only the files, systems, and data required for the specific task, revoked immediately after completion. Most current deployments do the opposite: agents are granted broad access for convenience.

**Human-in-the-loop controls** for high-consequence actions. Agent autonomy is valuable for routine tasks. For actions that involve sensitive data, financial transactions, or external communications, requiring human approval before execution reduces the blast radius of compromise.

**Agent inventory and shadow AI visibility.** If security does not know how many agents are deployed, who deployed them, and what they can access, the organization cannot manage the risk. The average enterprise has an estimated 1,200 unofficial AI applications in use. Agent-specific discovery and inventory is a prerequisite for governance.

**Runtime monitoring and logging.** Every tool call, data access, and action taken by an agent should be logged and observable. Without this, incident response after a compromise is effectively impossible, you cannot investigate what you cannot see.

**Continuous adversarial testing.** Automated red-teaming tools have demonstrated 42 to 58% cost reduction versus conventional approaches while maintaining broader vulnerability coverage. Agents with access to sensitive data or production systems should be subject to ongoing adversarial testing, not just pre-deployment review.

For a structured approach to implementing these controls, the [security-first deployment framework](/insights/ai-agent-deployment-security-framework) provides six domains that map to existing compliance obligations while addressing agent-specific risks.

## Sources

1. Cisco. State of AI Security 2026. cisco.com. 2026.
2. HelpNetSecurity. Enterprise AI Agent Security 2026. helpnetsecurity.com. 2026.
3. [OWASP - Top 10 for LLM Applications 2025](https://owasp.org/www-project-top-10-for-large-language-model-applications/)
4. Gravitee. State of AI Agent Security 2026. gravitee.io. 2026.
5. AIUC-1 Consortium / Stanford. Enterprise AI Security Briefing. helpnetsecurity.com. 2026.
6. Antiy CERT. OpenClaw Supply Chain Analysis. antiy.com. 2026.
7. [IBM - AI Agent Security Guidance](https://www.ibm.com/think/topics/ai-agents-security)
8. HelpNetSecurity. Fine-Tuning Attack Bypass Rates. helpnetsecurity.com. 2026.


---

# AI Agents in the Enterprise: Security Risks Boards Aren't Seeing Yet

Author: Dritan Saliovski · Published: 2026-03-15 · Category: AI & Cybersecurity · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/ai-agent-security-risks-enterprise

> AI agent adoption is outpacing security infrastructure. Only 14.4% of organizations have full security approval for their entire agent fleet. A present risk boards are missing.
The enterprise adoption of AI agents is outpacing the security infrastructure designed to govern them. According to the Gravitee State of AI Agent Security 2026 report, 80.9% of technical teams have moved past planning into active testing or production deployment of AI agents. Only 14.4% of organizations report that their entire agent fleet went live with full security and IT approval. This is not a future risk, it is a present exposure that most boards have not yet been briefed on.

For a foundational understanding of what AI agents are and why they differ from chatbots, see our [guide for business leaders](/insights/ai-agents-business-leaders-guide). For the specific security distinctions between agents and chatbots, see our companion analysis on [what the agent-chatbot distinction means for your security posture](/insights/ai-agents-vs-chatbots-security-posture).

## Key Takeaways

- Over half of deployed AI agents operate without consistent security oversight or logging, according to 2026 industry data
- Only 29% of organizations report being prepared to secure their agentic AI deployments (Cisco State of AI Security 2026)
- 82% of executives feel confident their existing policies protect against unauthorized agent actions, field data contradicts this
- NIST issued a formal Request for Information on AI agent security considerations in January 2026, signaling regulatory attention
- Prompt injection ranked as the top vulnerability on OWASP's 2025 LLM Top 10, and the risk compounds in agentic systems where actions follow instructions
- 63% of employees who used AI tools in 2025 pasted sensitive company data into personal chatbot accounts; agents with system access amplify this exposure

<StatGrid>
  <Stat value="14.4%" label="Of organizations whose entire agent fleet has full security and IT approval" source="Gravitee, State of AI Agent Security 2026 (n=919, fielded Dec 2025)" />
  <Stat value="29%" label="Of organizations prepared to secure agentic AI deployments" source="Cisco, 2026" />
  <Stat value="63%" label="Of employees pasted sensitive data into personal AI accounts" source="AIUC-1 Consortium / Stanford" />
</StatGrid>

## The Gap Between Executive Confidence and Operational Reality

The most dangerous finding in the 2026 data is the disconnect between what leadership believes and what is actually happening.

A survey cited in the Gravitee report found that 82% of executives feel confident their existing security policies protect against unauthorized agent actions. But operational data tells a different story: over half of deployed agents operate without security oversight or logging. Only 21% of executives have complete visibility into agent permissions, tool usage, or data access patterns.

This gap exists because most organizations extended their existing application security frameworks to cover AI agents. The problem is that agents are not applications. They make autonomous decisions, call external tools, and can be manipulated through their inputs in ways that traditional software cannot. A firewall does not stop a prompt injection. An API gateway does not prevent an over-permissioned agent from accessing data through a legitimate tool call.

## Why Agents Are Different from Chatbots: From a Security Perspective

A chatbot processes text and returns text. The security perimeter is the conversation window. An agent processes text, makes decisions, accesses file systems, calls APIs, sends emails, and executes multi-step workflows. The security perimeter is the entire set of systems the agent can touch. We explore this distinction in depth in our analysis of [agents vs. chatbots from a security posture perspective](/insights/ai-agents-vs-chatbots-security-posture).

Three properties of agents create fundamentally new risk categories.

**Autonomous action.** Agents take actions without human approval for each step. A compromised or misdirected agent does not pause and ask permission before exfiltrating data through a legitimate tool call, it follows its instructions. The IBM AI Agent Security guidance recommends just-in-time permissions, where access is granted only for the duration of a specific task and revoked immediately after. Most deployments do not implement this.

**Tool and system integration.** Agents connect to APIs, databases, cloud services, email platforms, and file systems. Each integration is a potential entry point. The Cisco State of AI Security 2026 report documented how Model Context Protocol (MCP), a common standard for connecting AI models to external tools, has rapidly expanded the attack surface. Researchers identified tool poisoning, remote code execution flaws, overprivileged access, and supply chain tampering within MCP ecosystems. A fake npm package mimicking an email integration was found silently copying outbound messages to an attacker-controlled address.

**Indirect prompt injection.** Traditional prompt injection involves a user directly manipulating an AI system's behavior. Indirect prompt injection is more dangerous: adversarial instructions are embedded in documents, emails, web pages, or retrieved data that the agent processes as part of its normal workflow. The agent treats the injected instruction as legitimate input and acts on it. In one documented case, a malicious GitHub issue injected hidden instructions that hijacked an agent and triggered data exfiltration from private repositories.

## The Attack Surface in Practice

The documented incidents from late 2025 and early 2026 illustrate what happens when agent security is treated as an afterthought.

In February 2026, Check Point Research disclosed critical vulnerabilities in Claude Code, Anthropic's command-line AI development tool. One flaw allowed remote code execution the moment a developer opened a project containing a malicious configuration file, the attack executed before any trust dialog appeared on screen. A second flaw bypassed MCP consent mechanisms, auto-approving all MCP servers and triggering execution on launch. Both were patched, but the disclosure timeline stretched from July 2025 to January 2026, months during which the vulnerabilities were exploitable.

The OpenClaw malicious skills crisis represents the largest confirmed supply chain attack targeting AI agent infrastructure to date. Security researchers confirmed over 1,100 malicious skills across ClawHub, the package registry for the OpenClaw framework, approximately one in five packages in the ecosystem. Attack techniques included typosquatting and automated mass uploads, the same methods that have plagued software supply chains for years, now applied to AI agent tooling.

Cisco's report documented state-sponsored actors integrating AI into offensive operations. A China-linked group reportedly automated 80 to 90% of a cyberattack chain by jailbreaking an AI coding assistant and directing it to scan ports, identify vulnerabilities, and develop exploit scripts. For a broader view of how AI is accelerating cyber threats, see our [board briefing on AI-powered cyber attacks in 2026](/insights/ai-cyber-threats-2026-board-briefing).

The IBM 2026 X-Force Threat Intelligence Index reported a 44% increase in attacks beginning with exploitation of public-facing applications, driven by missing authentication controls and AI-enabled vulnerability discovery. The [McKinsey Lilli breach](/insights/mckinsey-lilli-breach-enterprise-ai-security), where a 1998-era SQL injection reportedly exposed an enterprise AI platform, demonstrated how traditional vulnerabilities become far more dangerous when they affect AI systems containing unstructured conversational data.

## Shadow AI: The Risk You Cannot See

The AIUC-1 Consortium briefing, developed with input from Stanford's Trustworthy AI Research Lab and over 40 security executives, documented that 63% of employees who used AI tools in 2025 pasted sensitive company data, including source code and customer records, into personal chatbot accounts. The average enterprise has an estimated 1,200 unofficial AI applications in use, with 86% of organizations reporting no visibility into their AI data flows.

Shadow AI breaches cost an average of $670,000 more than standard security incidents, driven by delayed detection and difficulty determining the scope of exposure.

This problem intensifies with agents. A chatbot in a browser tab can only process what a user manually pastes into it. An agent with file system access can read entire directories of sensitive documents. An agent with email connectivity can access inboxes containing client communications, financial data, and legal correspondence. The data exposure surface of an agent is orders of magnitude larger than a chatbot, and most organizations have no visibility into what data their agents are processing. For organizations that have not yet formalized their AI data governance, our analysis of [AI data governance as an extension of existing enterprise frameworks](/insights/ai-data-governance-enterprise-guide) provides the foundation.

## What Existing Frameworks Do Not Cover

Most enterprise security frameworks, ISO 27001, NIS2, DORA, were designed for systems where actions are initiated by humans or by deterministic software. AI agents sit in a category that current frameworks do not explicitly address.

ISO 27001 covers access control, risk assessment, and information security management. It does not address the specific risks of autonomous AI systems that make decisions about which tools to call, which data to access, and which actions to take. NIS2's ten minimum security measures include supply chain security and access control, both relevant, but do not provide specific guidance on governing AI agent behavior within enterprise perimeters. For organizations operating under NIS2 or Sweden's Cybersecurity Act, our [comprehensive guide to Sweden's Cybersecurity Act 2025](/insights/sweden-cybersecurity-act-2025-nis2) covers the compliance baseline.

NIST signaled awareness of this gap in January 2026 by issuing a formal Request for Information on security considerations for AI agent systems. The RFI received 932 comments before its March deadline, indicating significant industry concern. But regulatory guidance is at least 12 to 18 months away from becoming enforceable standards.

In the interim, the organizations with the lowest exposure are those applying existing security principles, least privilege, zero trust, continuous monitoring, to agent deployments proactively, rather than waiting for regulation to tell them to. Our [security-first deployment framework](/insights/ai-agent-deployment-security-framework) provides the structured approach for implementing these controls. For a concrete example of how embedded AI assistants create new privileged attack surfaces, see our analysis of the [Chrome Gemini panel hijack](/insights/ai-assistant-attack-surface-browser-risk).

## The Gartner Numbers Boards Should Know

In April 2026, Gartner published two figures that crystallize the operational reality this article describes. **65% of organizations now report having experienced an AI-agent-related security incident in the past year**, and Gartner forecasts that **by 2028, 25% of enterprise GenAI applications will experience five or more minor security incidents annually**. The first figure is empirical — incidents are happening at scale today. The second is predictive but coming from the analyst firm whose forecasts most investment committees treat as the planning baseline.

Together, the two figures convert "AI agent risk is real" from a directional claim into a budgetary one. A 65% incidence rate means agent incidents are now an expected operating cost, not a tail risk. A 25% projected five-incidents-per-year rate means resources for triage, containment, and forensics need line items, not contingency.

## What Boards Need to Ask

If your board has not been briefed on AI agent security, these are the questions that need answers. How many AI agents are deployed across the organization, and which of them have been reviewed by security? What data can each agent access, and are permissions scoped to the minimum required for each task? Is there logging and monitoring of agent actions, tool calls, and data access patterns? What is the incident response plan if an agent is compromised? And does the organization have visibility into shadow AI usage, employees deploying agents outside of IT-approved channels?

## Sources

1. Gravitee. State of AI Agent Security 2026. gravitee.io. 2026.
2. [Cisco — State of AI Security 2026](https://blogs.cisco.com/ai/cisco-state-of-ai-security-2026-report). 2026.
3. [OWASP — Top 10 for LLM Applications 2025](https://owasp.org/www-project-top-10-for-large-language-model-applications/). 2025.
4. [NIST CAISI — Request for Information Regarding Security Considerations for Artificial Intelligence Agents](https://www.federalregister.gov/documents/2026/01/08/2026-00206/request-for-information-regarding-security-considerations-for-artificial-intelligence-agents). 8 January 2026; docket NIST-2025-0035; comments closed 9 March 2026.
5. [IBM — 2026 X-Force Threat Intelligence Index](https://www.ibm.com/reports/threat-intelligence). 2026.
6. Check Point Research. Vulnerability Analysis of Claude Code. checkpoint.com. 2026.
7. AIUC-1 Consortium / Stanford. Enterprise AI Security Briefing. helpnetsecurity.com. 2026.
8. Antiy CERT. OpenClaw Malicious MCP Skills Analysis. antiy.com. 2026.
9. HelpNetSecurity. Cisco State of AI Security Coverage. helpnetsecurity.com. 2026.
10. Gartner. AI Agent Security Forecast (April 9, 2026 release). gartner.com. 2026.


# Category: Professional Services

> How AI is transforming consulting delivery, professional services economics, and the advisor-client model.

---

# Project Acorn and the Consulting Partnership Reset

Author: Dritan Saliovski · Published: 2026-05-16 · Category: Professional Services · Reading time: 10 min read · Canonical: https://www.innovaiden.com/insights/project-acorn-consulting-partnership-reset

> McKinsey's Project Acorn shifts partner pay from cash toward equity: the clearest signal yet from MBB of a consulting partnership reset buyers must price in.
On 15 May 2026, the *Financial Times* reported that McKinsey & Company will shift more partner compensation into equity and reduce the cash share, under a plan internally known as Project Acorn. The plan has been two years in development. The headline reads as inside-baseball about partner pay. The substance is different: a structural reset of how the firm captures, retains, and rewards capital. The same reset is visible, using different mechanisms, at KPMG, EY, and Deloitte. For the companies that buy consulting, this is not gossip. It is the shape of the market they will be negotiating against for the next five years.

## Key Takeaways

- Per the *Financial Times*, Project Acorn could increase the equity share of additional partner awards by an estimated 3 to 5 percentage points: a partner might be paid 90% of an additional award in cash, versus about 95% previously
- Approximately 25% of McKinsey's global fees now come from outcome-based pricing, and "straight strategy advice" makes up less than 20% of the firm's work, per McKinsey executives speaking to *Business Insider* in November 2025
- McKinsey said it would grow North American non-partner staff by 12% in 2026 (Reuters, September 2025) while leadership was simultaneously discussing 10% reductions in non-client-facing roles globally over 18–24 months (Bloomberg, December 2025); both are true and consistent
- KPMG UK and EY UK have begun moving equity partners to salaried roles; Big 4 equity promotions fell to a five-year low in the 2025 cycle, with 179 partner promotions across the four firms versus a peak of 276 three years earlier
- The pattern is the same across the industry: partnership economics are being aligned with firm-level capital, outcome-priced revenue, and AI-augmented delivery. Clients buying consulting on legacy hourly terms will pay the friction cost of the transition

<StatGrid>
  <Stat value="3–5pp" label="Estimated increase in equity share of McKinsey partner additional awards under Project Acorn" source="FT, May 2026" />
  <Stat value="~25%" label="McKinsey global fees now from outcome-based pricing, per Birshan (Nov 2025)" source="Business Insider, Nov 2025" />
  <Stat value="40k + 25k" label="McKinsey humans and personalized AI agents in 2026, per Sternfels at CES" source="Business Insider via Yahoo Finance, Jan 2026" />
</StatGrid>

## What McKinsey Confirmed

According to the *Financial Times*, Project Acorn would increase the proportion of partner additional awards diverted into equity by an estimated 3 to 5 percentage points. The example used in the FT's reporting: a partner might be paid 90% of an additional award in cash, instead of about 95% previously. The plan has been in development for two years.

McKinsey, as a private partnership, does not disclose partner compensation details. The firm's public statement was that as a private firm it does not disclose compensation but is committed to continuously optimizing its mechanisms to attract, develop, motivate, and retain top global talent.

What this mechanically does for a partner: in any given year, slightly less of the total profit share arrives as cash drawing, slightly more arrives as equity in the firm's future economics. The change is modest in size (five percentage points in any given year) but compounds over a partner's tenure and signals where the firm's economic center is moving.

## What Remains Assumed

Three claims have been widely asserted in commentary but are not directly supported by the primary reporting.

**The framing of the change as a "cut."** The cash share is being reduced. Total compensation is not, as far as McKinsey has stated, being reduced. Whether absolute partner take-home falls depends on firm performance in the years ahead; equity compounds favorably if the firm's repositioning works.

**The claim that this is specifically "AI-driven."** It is more accurate to say it is consistent with AI's effect on consulting economics. McKinsey has not framed it that way publicly, and the change was reportedly two years in development. The drivers are best treated as a composite: outcome-based pricing volatility, AI margin compression, and post-2022 demand cyclicality.

**The implication that other firms will adopt the same mechanics.** They will not, because the underlying partnership architecture differs materially, particularly between MBB and the Big 4. The direction of travel is similar; the instruments are not.

## Three Pressures, Not One

The "AI did it" headline is the easiest to write. The accurate version requires three pressures operating in combination.

**Outcome-based pricing is changing the timing of cash flow.** Michael Birshan, McKinsey's managing partner for the UK, Ireland, and Israel, told reporters at a London media event in November 2025 that about a quarter of McKinsey's global fees now come from outcome-based pricing arrangements rather than billed scope and duration. Kate Smaje, the firm's global leader of technology and AI, told *Business Insider* in the same period that "straight strategy advice" now represents less than 20% of the firm's work; clients are turning to McKinsey for "deep implementation expertise" and multi-year transformation projects. When fees are tied to client outcomes, the firm's revenue arrives later, in larger but more variable chunks, and depends on factors partly outside the consultant's control. Paying partners largely in current-year cash against revenue that has not yet materialized is a balance sheet mismatch. Equity defers the payment and aligns it with realization. That is the mechanical logic of Project Acorn.

**AI is compressing delivery economics.** Speaking at CES in January 2026, McKinsey global managing partner Bob Sternfels said the firm had 40,000 human employees and 25,000 personalized AI agents, with client-facing roles growing by 25% and non-client-facing roles shrinking by the same proportion: what Sternfels called "25-squared." The firm reportedly saved 1.5 million hours in search and synthesis work in 2025. That compression cuts both ways: clients buy fewer hours for the same scope, and the firm captures the productivity differential as margin, but only if pricing detaches from hours. Outcome-based pricing is the mechanism that captures that delta, and equity-heavy partner comp is the way to hold those returns inside the firm long enough to reinvest in the next platform. For how this reshapes the staffing pyramid that underwrote the legacy economics, see [the broken consulting pyramid](/insights/professional-services-pyramid-broken).

**Demand cycle and operating model bifurcation.** This is the least-discussed driver and one of the most important. In September 2025, McKinsey North America chair Eric Kutcher told *Reuters* at a New York media event that the firm planned to grow non-partner staff in the region by 12% in 2026 versus 2025, building on a base of 5,000–7,000 staff, with 15–20% growth projected over five years. Three months later, *Bloomberg* reported that McKinsey leadership had begun discussing 10% reductions in non-client-facing roles globally: potentially a few thousand jobs over 18–24 months, against a total headcount that had already declined from 45,000 in 2022 to 40,000. Both are true. McKinsey is growing client-facing junior staff while shrinking the legacy support layer at the same time. Project Acorn is consistent with a firm rebuilding its operating model on two tracks: more AI-augmented client work at the front, leaner overhead behind it.

<BarComparison title="McKinsey global fee structure, 2025" source="Birshan, Business Insider via Yahoo Finance, Nov 2025">
  <Bar label="Traditional billing (effort, scope, duration)" value={75} displayValue="~75%" highlight />
  <Bar label="Outcome-linked fees" value={25} displayValue="~25%" />
</BarComparison>

## The Big 4 Comparison

McKinsey is not in the Big 4. The Big 4 (Deloitte, PwC, EY, KPMG) are audit-and-consulting hybrids bound by independence rules McKinsey is not subject to. Their partnerships are far larger (Deloitte alone reported $70.5 billion in revenue for the fiscal year ended 31 May 2025, with over 470,000 people) and their compensation systems are more bureaucratic, with partner draws typically calculated against projected annual earnings shares.

The direction of travel, however, is the same.

**Equity partner demotions.** KPMG UK and EY UK have begun moving some equity partners into salaried roles as part of a partnership reset, targeting what *Irish Times* reporting in April 2026 described as "High-Unit, No-Client" partners: senior figures holding large equity stakes based on tenure rather than current revenue contribution. Average profit per partner at the KPMG UK/Swiss Group rose to **£880,000** for the year ended 30 September 2025, an 11% increase, even as the partnership base continued to shrink. That figure covers the first year of combined reporting after the UK–Switzerland merger completed on 1 October 2024, which also moves the comparison base for the 11%. It sits above EY (£787,000) and PwC (£865,000) and below Deloitte (£1.05m). The equity pool is being concentrated, not expanded. Across the Big 4, equity partner promotions fell to a five-year low in the 2025 cycle: 179 promotions across Deloitte, EY, KPMG, and PwC combined, versus a peak of 276 three years earlier, per *Irish Times*, November 2025.

**Graduate intake compression.** UK Big 4 graduate hiring saw sharp cuts to the 2023 intake. KPMG made the steepest, taking its graduate class from **1,399 to 942**, a cut of roughly a third; Deloitte cut about 18%, EY 11%, and PwC 6%. Indeed data reported alongside those figures found UK accountancy graduate job adverts **down 44% against 2023**, a steeper fall than the 33% drop across all graduate adverts and the 20% decline in postings generally. Deloitte India offered a "Golden Handshake" early retirement programme to partners aged 55 and above. Deloitte US announced in January 2026, per *Fortune*, that it would scrap traditional analyst-consultant-manager titles effective 1 June 2026, replacing them with "job family" and "sub-family" titles such as "Software Engineer III": a structural shift toward operating-company nomenclature. For the deeper analysis of why this matters for the staffing model that underwrote the legacy economics, see [the broken consulting pyramid](/insights/professional-services-pyramid-broken).

**AI investment is platform-grade, not feature-grade.** The announced commitments run: PwC US ($1B over three years, April 2023), KPMG ($2B Microsoft alliance, 2023), EY ($1.4B for EY.ai, 2023, sitting inside the larger $10bn three-year enterprise investment plan EY announced in 2021 rather than on top of it), Deloitte ($2B Industry Advantage in 2024, plus a separate $3B GenAI commitment running through FY2030), Accenture ($3B). Industry trackers estimate that the Big Four and the top strategy houses together have committed **over $10 billion to AI since 2023**; that is a third-party estimate across a wider set of firms than the six figures listed here, and the commitments above run on different clocks, so it should not be read as their sum. McKinsey has Lilli. BCG has GENE. Deloitte has PairD and Zora. KPMG has KymChat. The point is not the platforms themselves; it is that every major firm is now carrying significant fixed technology investment on a cost base that used to be almost entirely people. That changes how partner economics need to be structured. For why the technology layer alone does not differentiate, see [why consulting firms can't align people, services, and AI](/insights/consulting-misalignment-people-services-ai).

What the Big 4 are doing differently from McKinsey is using the partnership category itself as the lever: moving people out of equity into salaried positions, slowing promotion, shrinking the class. McKinsey is keeping the partnership intact but shifting its internal mix toward equity. Same destination (partner economics aligned with firm-level capital and risk), different route. The comparison below summarises the mechanism each firm is using.

| Firm | Mechanism | What changes for partners | Visible buyer signal |
|---|---|---|---|
| **McKinsey** | Compensation mix shift (Project Acorn) | More additional-award equity, less current-year cash | Senior attention tied to longer-horizon platform revenue |
| **KPMG UK** | Partnership category | Some equity partners moved to salaried roles | Fewer voting partners; profit pool concentrated |
| **EY UK** | Partnership category | Same: equity to salaried | Fewer voting partners; promotion pace slowing |
| **Deloitte US** | Career architecture | Analyst/consultant/manager titles collapsed into "job family" structure from June 2026 | Engagement team shapes change; pyramid base is no longer a coherent layer |
| **Big 4 collectively** | Promotion pace | Equity promotions at five-year low; ~179 in 2025 vs. 276 peak | Slower turnover at the top; harder to access named partners on one-off scope |

## What This Means for the Companies That Buy Consulting

For organizations that buy consulting services (PE firms, corporate development teams, and senior operators), three implications matter.

**Pricing has already changed, and the buyer side is behind.** A quarter of McKinsey's fees are already outcome-based. The era of buying transformation and AI-deployment consulting on a billable-hours basis is closing. Buyers should expect more proposals structured as fixed base plus outcome-linked variable, with defined success metrics. The buyer's leverage in this model comes from defining the metric, the baseline, and the verification rules upfront. Vague success criteria favor the firm; precise ones favor the buyer. Procurement functions designed to optimize day rates are mispositioned for the shift; most procurement playbooks have not been rebuilt for outcome-priced engagements. For the deeper pricing-model context, see [the transformation paradox facing consulting firms](/insights/transformation-paradox-consulting-firms-ai).

**Partner attention is being repriced.** When a senior partner's compensation depends more on long-term firm equity and less on current-year cash, their incentives shift toward longer-term client relationships and platform-scale revenue rather than short engagements. For PE buyers used to transactional consulting purchases (diligence, 100-day plans, single-asset support), the named-partner attention they relied on may be harder to secure on a one-off basis. The price of access is going up, in either time commitment or scope commitment.

**The pyramid is flattening.** Sternfels' CES disclosure (client-facing roles up 25%, non-client-facing roles down 25%, against a 40,000-human workforce now operating alongside 25,000 AI agents) is the cleanest single description of where the operating model is headed. Across the industry, as *Future of Consulting* summarised the shift in January 2026, leadership is openly discussing a move from a pyramid to a "diamond-shaped" organization: thinner base of juniors, denser middle of experienced specialists, senior advisors at the top. For buyers: less leverage in proposals (fewer juniors loaded into engagement teams), more emphasis on what the senior team actually does, and quality differences across firms become more visible. For what AI-native alternatives to the legacy partnership look like, see [AI-native agencies and the future of advisory](/insights/ai-native-agencies-future-of-advisory).

## Buyer Negotiation Levers Through the Transition

The transition is asymmetric: firms are five quarters into it, most buyers have not started. Four levers materially change the economics buyers see across the next 18 months:

- **Define the metric before the proposal.** In an outcome-priced engagement, the metric set in the contract drives 60–80% of realized fees. Buyers who arrive with a defined baseline, a measurement window, and a verification mechanism (third-party, internal audit, or contractual) hold the leverage. Buyers who let the firm propose the metric inherit a definition optimized for the firm.
- **Separate the AI productivity savings from the fee.** If a firm proposes to deliver in 60% of the prior hours using AI tooling, the price should reflect the saving, not the prior hour count multiplied by a discount. Ask for the hour estimate with and without AI; the gap is the productivity claim the firm is internally booking.
- **Name the partner and the partner's exposure.** Equity-heavy comp means partners are less mobile on a single engagement. Ask which named partner is committed, what percentage of their time, and what they personally have at stake if the outcome metric is missed. A partner who cannot answer the second and third questions concretely is not the partner you are buying.
- **Stage the commitment.** Multi-year transformation contracts are where firms recover the equity-deferred returns. Buyers who can credibly stage the engagement (diagnostic, design, implementation as separately gated commitments) preserve optionality the firm's economic model is designed to remove.

The McKinsey story is not really about McKinsey. It is the clearest signal yet from MBB that the modern professional services partnership, built on stable cash flows, pyramid leverage, and predictable promotion economics, is being rebuilt for a different operating model, and it arrives after the Big 4 had already started down the same road by a different route. The firms that get there first will look meaningfully different in 2030 than they do today. The companies that recognize the shift early will negotiate better terms during the transition. For how AI capability itself is being sourced and what that means for buyer leverage, see [why consulting firms can't align people, services, and AI](/insights/consulting-misalignment-people-services-ai).

The full Intelligence Brief covers the partnership architecture comparison across MBB and the Big 4, the pricing-model shift in detail, and the buyer-side negotiating playbook for outcome-based engagements.

## Sources

1. [Financial Times — "McKinsey set to cut partner cash in post-AI pay revamp"](https://www.ft.com/content/07a10974-bdfd-4f31-9aff-9e284c8f8de8). Kissin and Foley. 15 May 2026.
2. [Strat-Bridge — "Consulting's Partnership Model Is Shifting with AI"](https://www.strat-bridge.com/insights/consultings-partnership-model-is-shifting-with-ai/). 15 May 2026.
3. [GuruFocus — "McKinsey Plans Profit Distribution Changes Amid Shift to Equity Compensation"](https://www.gurufocus.com/news/8861427/mckinsey-plans-profit-distribution-changes-amid-shift-to-equity-compensation). 14–15 May 2026.
4. [Business Insider via Yahoo Finance — "AI is reshaping how McKinsey makes money"](https://finance.yahoo.com/news/ai-reshaping-mckinsey-makes-money-195132745.html). 17 November 2025.
5. [Business Insider via Yahoo Finance — "McKinsey's CEO breaks down how AI is reshaping its workforce: 25% growth in some roles, 25% cuts in others"](https://finance.yahoo.com/news/mckinseys-ceo-breaks-down-ai-100301404.html). 7 January 2026.
6. [Reuters via Business Standard — "McKinsey to hire 12% more junior employees in 2026 despite AI push"](https://www.business-standard.com/companies/news/mckinsey-hire-12-percent-junior-employees-jobs-2026-ai-eric-kutcher-125090900804_1.html). 9 September 2025.
7. [Bloomberg — "McKinsey Executives Plot Job Cuts in Slowdown for Consulting Industry"](https://www.bloomberg.com/news/articles/2025-12-15/mckinsey-executives-plot-job-cuts-in-slowdown-for-consulting-industry). 15 December 2025.
8. [Irish Times — "KPMG and EY demote partners in end of job-for-life model in UK"](https://www.irishtimes.com/business/work/2026/04/24/kpmg-and-ey-demote-partners-in-end-of-job-for-life-model-in-uk/). 24 April 2026.
9. [Irish Times — "Big Four partner promotions sink to five-year low in UK"](https://www.irishtimes.com/business/2025/11/20/big-four-partner-promotions-sink-to-five-year-low-in-uk/). 20 November 2025.
10. [Fortune — "Deloitte to scrap traditional job titles as AI reshapes Big 4 accounting and consulting firms"](https://fortune.com/2026/01/22/deloitte-job-title-change-ai-reshapes-big-4-accounting-consulting-firms/). 22 January 2026.
11. [City AM — "Big Four slash graduate jobs as AI takes on entry-level work"](https://www.cityam.com/big-four-slash-graduate-jobs-as-ai-takes-on-entry-level-work/). 2025.
12. [Scottish Financial News — "Big Four slash graduate jobs as AI takes over entry-level tasks"](https://www.scottishfinancialnews.com/articles/big-four-slash-graduate-jobs-as-ai-takes-over-entry-level-tasks). June 2025. Absolute intake figures for all four firms, and the Indeed comparison: 44% fall in UK accountancy graduate adverts against 2023, versus 33% across all graduate adverts and 20% for postings generally.
13. [Accountancy Age — "The Big Four's new favourite grad is AI"](https://accountancyage.com/2025/06/23/the-big-fours-new-favourite-grad-is-ai/). 23 June 2025.
14. [PwC US — "PwC US makes $1 billion investment in AI capabilities"](https://www.pwc.com/us/en/about-us/newsroom/press-releases/pwc-us-makes-billion-investment-in-ai-capabilities.html). 26 April 2023.
15. [Deloitte Global — FY2025 global revenue announcement](https://www.deloitte.com/global/en/about/press-room/global-revenue-announcement.html). 2025. $70.5bn revenue for the year ended 31 May 2025; over 470,000 people; $3bn generative AI commitment through FY2030.
16. [The Finance Story — "Big 4 invest over USD 4 bn in AI"](https://thefinancestory.com/big-4-invest-over-usd-4-bn-in-ai). June 2024. KPMG–Microsoft $2bn, EY.ai $1.4bn, Deloitte Industry Advantage $2bn, Accenture $3bn.
17. [KPMG UK — "KPMG UK/Swiss Group annual results"](https://kpmg.com/uk/en/media/press-releases/2026/01/kpmg-uk-swiss-group-annual-results.html). January 2026. Average profit per partner £880,000, up 11%, year ended 30 September 2025.
18. [Bloomberg Law — "KPMG UK profits and partner pay increased despite flat revenue"](https://news.bloomberglaw.com/financial-accounting/kpmg-uk-profits-and-partner-pay-increased-despite-flat-revenue). 2026. Peer comparison: EY £787,000, PwC £865,000, Deloitte £1.05m.
19. [Future of Consulting — "2026: Consulting's AI revolution update"](https://futureofconsulting.ai/ai-leadership/2026-consultings-ai-revolution-update/). 25 January 2026. Source of the ">$10bn since 2023" cross-industry estimate and of the pyramid-to-diamond framing.


---

# Why Consulting Firms Can't Align People, Services, and AI

Author: Dritan Saliovski · Published: 2026-03-01 · Category: Professional Services · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/consulting-misalignment-people-services-ai

> Large consulting firms have misaligned people, services, and technology. AI is making this fragmentation worse before it makes it better.
Large professional services firms operate across three dimensions: the people they employ, the services they deliver, and the technology that enables both. In theory, these should be tightly aligned, the firm's talent strategy should reflect its service offerings, and its technology investments should enable both. In practice, the misalignment between these three dimensions is one of the most persistent structural problems in the industry, and AI is making it worse before it makes it better.

## Key Takeaways

- Accenture grew its AI and data professional headcount from 40,000 to 80,000 between 2023 and 2025, while simultaneously reducing total headcount by 22,000
- Professional services leads all sectors in generative AI adoption, with implementation rates rising from 33% in 2023 to 71% in 2024 per McKinsey research
- Despite 88% of employees using AI at work, only 28% of companies report measurable business transformation, per EY research
- By end of 2025, more than half of the 30 largest U.S. accounting firms had received private equity investment, up from zero in 2020
- AI consulting is expected to account for 40% of revenue at professional services firms by 2026, up from 20% in 2024

<StatGrid>
  <Stat value="71%" label="Professional services firms with generative AI implemented, up from 33% in 2023" source="McKinsey State of AI, 2024" />
  <Stat value="2×" label="Accenture's AI and data workforce doubled, 40,000 to 80,000, while overall headcount fell" source="CNBC, Sep 2025" />
  <Stat value="40%" label="Share of professional services revenue projected to come from AI consulting by 2026" source="BPM Professional Services Outlook, 2026" />
</StatGrid>

## The People Problem

The talent strategy at most large firms was designed for a different era. The pyramid model assumed a constant pipeline of graduates who would be trained over years, filtered through an "up or out" promotion culture, and eventually produce a small number of experienced partners. This was a learning system as much as a staffing model, it created the institutional knowledge that differentiated firms.

AI disrupted this in two ways simultaneously. First, it automated the work that junior hires performed, reducing the economic justification for hiring them at scale. Second, it created demand for entirely new skills, AI engineering, prompt design, agentic workflow architecture, that the existing workforce largely does not possess. Firms are caught between reducing one type of headcount and desperately trying to build another.

Accenture's experience illustrates the tension. The firm reskilled 550,000 workers on generative AI fundamentals while simultaneously exiting those who could not adapt. But the people doing the AI work and the people delivering traditional consulting services are, in many firms, operating as parallel organizations rather than an integrated workforce. The AI team builds tools and proofs of concept. The delivery team runs client engagements the way they always have.

KPMG's late-April 2026 announcement extends the pattern across the Big 4. The firm cut approximately 400 US advisory roles (around 4% of its consulting headcount), citing AI-driven productivity gains and shifts in client demand. The cut is small in absolute terms but symbolically material: it confirms that the misalignment thesis is not Accenture-specific. KPMG's AI investments — KymChat internally, broader Microsoft/OpenAI partnerships externally — coexist with reductions in the human-delivery cohort the firm built over the previous decade. The dual signal (invest in AI capability, reduce traditional headcount) is now firm-by-firm, not industry-aspirational.

This problem is compounded by compensation structures. Partner compensation is still predominantly tied to revenue from billable hours and client relationship ownership. A partner whose team delivers a project 60% faster using AI tools does not earn more, they earn less, because the billings are lower. Until incentive structures change, the people dimension will remain misaligned with the technology dimension.

## The Services Problem

Most large firms describe themselves as offering "integrated" or "end-to-end" services. In practice, service lines operate as semi-autonomous businesses with separate P&Ls, separate leadership, and separate client relationships. A cybersecurity engagement at one of the Big Four may have no connection to the same client's regulatory compliance engagement happening simultaneously in a different practice.

The firm's service offerings often reflect what the firm can sell rather than what the client needs to buy. The shift to AI-related services is a case study. AI consulting is projected to account for 40% of professional services revenue by 2026, up from 20% in 2024. But "AI consulting" at a large firm can mean anything from a strategic roadmap (strategy practice), to a technology implementation (digital practice), to a risk assessment (risk practice), to a training program (people practice). The client engaging a firm for "AI transformation" may receive something very different depending on which partner wins the work and which practice delivers it.

The "one firm" promise, a single, coordinated team bringing the full weight of the firm's expertise to a client problem, remains aspirational in most organizations. Cross-practice collaboration requires partners to share revenue, share relationships, and subordinate their practice's interests to the client's needs. Incentive structures rarely support this.

## The Technology Problem

Large firms have invested heavily in AI tools. The proprietary tools span every major firm and are built on a small number of shared foundations.

| Firm | Internal AI Tool | Foundation Model | AI Partnership |
|---|---|---|---|
| McKinsey | Lilli | LLM-based | - |
| BCG | Multiple | Claude (Anthropic) | Anthropic |
| Bain | Multiple | GPT-4 (OpenAI) | OpenAI |
| Deloitte | PairD | Claude (Anthropic) | Anthropic |
| KPMG | KymChat | Multiple | Microsoft/OpenAI |
| PwC | ChatPwC | Multiple | Multiple |

If every firm is using the same underlying technology with a proprietary wrapper, the technology itself is not a differentiator. The differentiator is how it is applied, which brings the analysis back to people and services, completing the misalignment circle.

The Deloitte Australia incident exposed what happens when technology outpaces process. The firm used Azure OpenAI GPT-4 to assist with a government report and produced a deliverable containing fabricated citations, nonexistent academic references, and a made-up quote from a federal court judge. The technology worked as designed, it generated plausible text. The people and processes designed to verify that output failed. The firm refunded part of the A$440,000 contract.

## Why AI Makes the Misalignment Worse Before It Gets Better

AI amplifies existing organizational dynamics. In a well-aligned firm, AI accelerates good delivery. In a misaligned firm, it accelerates fragmentation.

When each practice builds its own AI tools, the firm develops multiple competing internal platforms. When AI is used to reduce delivery cost without adjusting pricing, the margin improvement accrues to the firm rather than the client. When AI skills are concentrated in a dedicated "AI practice" rather than embedded across all service lines, the firm develops a two-speed organization where traditional consultants view AI as someone else's job.

The firms that will resolve this misalignment share common characteristics: unified technology platforms across practices, incentive structures that reward outcomes over hours, talent strategies that embed AI skills horizontally rather than concentrating them vertically, and service models designed around client problems rather than practice boundaries.

## What This Means for Buyers

Organizations engaging large firms should ask specific questions. Who exactly will be on the team, and what are their backgrounds? How do different practice areas coordinate on this engagement? What role does AI play in delivery, and how is that reflected in pricing? Is the team incentivized to solve the problem efficiently, or to maximize billable hours?

The answers often reveal the gap between the firm's marketing and its operational reality. "One firm" is a tagline. Whether it reflects how work actually gets done determines whether the engagement delivers value or simply distributes it across practice line items on an invoice. For the staffing economics behind this misalignment, see [the broken consulting pyramid](/insights/professional-services-pyramid-broken). For how the paradox plays out when firms sell transformation they have not achieved themselves, see [the transformation paradox](/insights/transformation-paradox-consulting-firms-ai). And for what AI-native alternatives to traditional consulting look like, see [AI-native agencies vs. SaaS](/insights/ai-native-agencies-future-of-advisory).

The Consulting Engagement Diagnostic covers the organizational signals, team assessment criteria, and coordination questions that distinguish well-aligned engagements from fragmented ones.

## Sources

1. McKinsey. The State of AI in 2024. mckinsey.com. 2024.
2. [CNBC — Accenture AI Orders: Senior Staff Risk Losing Promotions](https://www.cnbc.com/2026/02/19/accenture-ai-orders-senior-staff-lose-out-promotions.html). 2026.
3. EY. AI Adoption and Business Transformation Research. ey.com. 2025.
4. BPM. Professional Services Outlook 2026. bpm.com. 2026.
5. [The Register — Deloitte Australia AI Report with Hallucinated Citations](https://www.theregister.com/2025/10/06/deloitte_ai_report_australia/). 2025.
6. [Going Concern — Layoff Watch '26: KPMG Cuts 4% From Consulting](https://www.goingconcern.com/layoff-watch-26-kpmg-cuts-4-from-consulting/). April 2026.


---

# Consulting Firms Selling AI Transformation Can't Deliver It

Author: Dritan Saliovski · Published: 2026-02-26 · Category: Professional Services · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/transformation-paradox-consulting-firms-ai

> Every consulting firm has an AI strategy and AI partnerships. None has transformed its own delivery model - which is exactly what they sell to clients.
BCG partnered with Anthropic to give clients access to Claude. Bain allied with OpenAI and used Coca-Cola as a marquee case study. McKinsey built Lilli on top of large language model infrastructure. Deloitte announced a partnership with Anthropic to make Claude available to over 470,000 of its professionals. Every major consulting firm now has an AI strategy practice, an AI partnership, and an AI narrative. What none of them have demonstrated is the ability to fundamentally transform their own operating model around AI, which is exactly what they are selling their clients.

## Key Takeaways

- McKinsey's Lilli was deployed to 72% of its 45,000 employees by 2025, reportedly saving 30% of time on research and knowledge synthesis, yet the firm's core billing model has not changed
- Only approximately 25% of McKinsey's global fees are linked to outcomes; 75% remain tied to traditional effort-based billing
- Deloitte Australia refunded part of a A$440,000 government contract after AI-generated errors were found in the deliverable, including fabricated citations and a made-up court quote
- Global spending on generative AI consulting reached $3.75 billion in 2024, nearly tripling from 2023, per Gartner, but few firms have demonstrated repeatable enterprise-wide deployment success
- Zimmer Biomet sued Deloitte for $172 million over a failed software implementation in late 2025, alleging the team accumulated fees without delivering a working system

<StatGrid>
  <Stat value="72%" label="McKinsey staff with Lilli deployed, yet billing model unchanged" source="futureofconsulting.ai, Jan 2026" />
  <Stat value="25%" label="McKinsey global fees linked to outcomes, 75% remain effort-based" source="futureofconsulting.ai, Jan 2026" accent="amber" />
  <Stat value="$3.75B" label="Global generative AI consulting spend in 2024, mostly still in pilot stage" source="Gartner, 2024" />
</StatGrid>

## The Advisor's Dilemma

Consulting firms face a structural conflict when it comes to AI transformation. Their business model depends on selling human hours. AI's primary value proposition is reducing the need for human hours. A firm that genuinely transforms its delivery model around AI, smaller teams, faster delivery, outcome-based pricing, would generate less revenue per engagement under its current economic structure.

This is not a technology problem. It is an incentive problem. Every major firm has the technology. McKinsey's Lilli can search 100,000+ internal documents in seconds and generate slides and research summaries on demand. BCG's Deckster automates presentation formatting. These tools work. What has not changed is the business model that surrounds them.

The data confirms this. Even at McKinsey, arguably the most progressive firm on pricing innovation, 25% of global fees are linked to outcomes. EY's leaders have publicly acknowledged the pressure to move toward "service-as-software" pricing but described the shift as slow. Partner compensation structures built over decades around revenue from billable hours are not easily unwound, even when leadership recognizes the need.

## What Clients See

Clients are not unaware of this dynamic. Companies are increasingly bypassing traditional advisors in favor of internal teams, citing consultants' limited hands-on experience with AI and a gap between marketing claims and practical implementation at scale. Gartner found that while global spending on generative AI consulting reached $3.75 billion in 2024, much of this investment remains in the exploratory or pilot stage.

The growth data captures the paradox in numbers. The Management Consultancies Association's UK Consulting Industry Report 2026 projects industry growth of just 5.7% — versus growth of approximately 11–12% at implementation-led firms (Accenture, Deloitte, EY) over the same period. The differential is the paradox quantified: firms whose models tie revenue to delivered systems and integrated AI capability are growing roughly twice as fast as firms still selling advisory engagements supported by AI tooling. Clients are not waiting for the AI strategy deck to arrive. They are buying the AI implementation directly.

The Zimmer Biomet lawsuit against Deloitte, filed in late 2025, alleging $172 million in damages for a failed software implementation where the consulting team accumulated fees without delivering a working system, reflects a broader sentiment. Clients are losing patience with engagements that produce advisory output rather than operational outcomes.

Boards have shifted their expectations accordingly. By 2025, boards had lost confidence in transformation programs that promised a cycle of change but whose implementation was perpetually one year away from delivery. Boards now want partners who share accountability for outcomes, not just partners who provide advice and absorb none of the consequences.

## The Partnership Dependency Problem

The largest consulting firms in the world, organizations that sell transformation, strategy, and technology advisory to Fortune 500 clients, have responded to AI by partnering with the same handful of AI providers that their clients can access directly. BCG and Deloitte partnered with Anthropic. Bain partnered with OpenAI. KPMG aligned with Microsoft and OpenAI. The proprietary tools these firms have developed are, at their core, wrapper applications around the same foundational models available to any enterprise willing to build or buy an integration.

This raises a question that consulting firms have not answered convincingly: if the primary AI capability is sourced externally, and the client can access the same provider, what is the consulting firm's unique value? The traditional answer, domain expertise, structured thinking, implementation experience, remains valid, but only if the firm actually delivers those things. When the deliverable is a strategy deck generated partly by the same AI tools the client already has access to, the value proposition weakens.

The risk for consulting firms is not that clients replace them with AI. The risk is that clients realize the AI capability is available directly from Anthropic, OpenAI, or Google, and that smaller, more specialized firms can apply that capability with more focus, more speed, and less overhead than a global consultancy.

## The Internal Transformation Scorecard

If a consulting firm were evaluating a client's AI transformation readiness, it would assess six dimensions: leadership commitment, operating model changes, incentive alignment, technology integration depth, measurable outcomes, and cultural adoption. Apply those same criteria to the firms themselves.

| Dimension | Score | What the Evidence Shows |
|---|---|---|
| **Leadership Commitment** | High | Every firm has an AI strategy; McKinsey deployed Lilli to 70%+ of staff; Accenture restructured its workforce around AI |
| **Operating Model Changes** | Minimal | Pyramid staffing persists; billing remains effort-based; service lines still operate as semi-autonomous businesses |
| **Incentive Alignment** | Poor | Partner comp tied to billings disincentivizes faster, leaner AI delivery - a partner billing less earns less |
| **Technology Integration Depth** | Moderate | Internal productivity tools are widely deployed; client-facing delivery integration is uneven |
| **Measurable Outcomes** | Limited | Few firms publish data on how AI changed delivery quality, speed, or satisfaction; revenue growth is tracked, not transformation |
| **Cultural Adoption** | Mixed | Internal AI tools are used; the gap between marketing narrative and day-to-day delivery is recognized internally |

A consulting firm evaluating a client with this scorecard would recommend significant remediation. The gap between stated ambition and operational reality would be flagged as a material risk to transformation success.

## What Happens Next

Two trajectories are emerging. Firms that genuinely restructure around AI, changing pricing, flattening teams, embedding AI in delivery rather than just productivity, and sharing risk with clients, will maintain their position as the market's most trusted advisors. They will be smaller, more profitable per partner, and more aligned with client outcomes.

Firms that use AI to improve internal margins while maintaining traditional pricing and delivery models will face increasing pressure from two directions: clients who recognize the arbitrage, and specialized competitors who deliver faster at lower cost with more transparency.

The consulting industry has navigated disruption before, offshoring, cloud computing, digital transformation. AI may be different, because it strikes at the core of what consulting sells: knowledge work performed by people. When the knowledge work can be performed by systems, the value shifts to judgment, context, and accountability, qualities that are not unique to large firms and may actually be better delivered by smaller, more committed teams.

The firms that succeed will be the ones that can honestly answer a simple question from their clients: "If you're advising us on AI transformation, show us how you transformed yourselves." Right now, most cannot. For the staffing dimension of this shift, see [the broken consulting pyramid](/insights/professional-services-pyramid-broken). For what the misalignment looks like across people, services, and technology simultaneously, see [why consulting firms can't align the three](/insights/consulting-misalignment-people-services-ai). For a practical look at what AI agents actually do, and the security considerations most firms are not addressing, see our [AI agents guide for business leaders](/insights/ai-agents-business-leaders-guide) and the [enterprise security risks boards are not seeing](/insights/ai-agent-security-risks-enterprise).

The AI Transformation Readiness Scorecard covers all six assessment dimensions, the diagnostic questions for each, and the organizational signals that distinguish genuine transformation from marketing narrative.

## Sources

1. [futureofconsulting.ai — McKinsey Lilli and Fee Structure Analysis](https://futureofconsulting.ai/). 2025.
2. [Gartner — Generative AI Consulting Services Market 2024](https://www.gartner.com/en/documents/5752115). 2024.
3. [CNBC — Accenture AI Orders: Senior Staff Risk Losing Promotions](https://www.cnbc.com/2026/02/19/accenture-ai-orders-senior-staff-lose-out-promotions.html). 2026.
4. [The Register — Deloitte Australia AI Report with Hallucinated Citations](https://www.theregister.com/2025/10/06/deloitte_ai_report_australia/). 2025.
5. [Fortune — Accenture CEO Julie Sweet: AI Restructuring Transformation](https://fortune.com/2026/04/29/accenture-ceo-julie-sweet-ai-restructuring-transformation/). 2026.
6. BCG. Partnership with Anthropic. bcg.com. 2025.
7. Bain. Alliance with OpenAI. bain.com. 2025.
8. [Deloitte — Partnership with Anthropic](https://www2.deloitte.com/us/en/pages/deloitte-private/articles/technology-innovation-partnership-anthropic.html). 2025.
9. Management Consultancies Association (MCA). UK Consulting Industry Report 2026. mca.org.uk. 2026.


---

# AI-Native Agencies vs. SaaS: The Future of Advisory

Author: Dritan Saliovski · Published: 2026-02-05 · Category: Professional Services · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/ai-native-agencies-future-of-advisory

> 88% of organizations use AI but only 28% see measurable transformation. The gap is not a technology problem - it's why AI-native agencies outperform SaaS.
The enterprise AI market is projected to reach $826.7 billion by 2030. The AI consulting services market alone is expected to grow from $11 billion in 2025 to over $90 billion by 2035. But most organizations are not struggling because they lack AI tools. They are struggling because they lack the judgment to deploy them, and the vendors selling tools have no incentive to tell them that.

## Key Takeaways

- 88% of organizations now report using AI in at least one business function, yet only 28% report measurable business transformation impact, a 60-point gap that is not a technology problem
- AI consulting spend nearly tripled from 2023 to 2024, reaching $3.75 billion per Gartner, but much remains in pilot or exploratory stages
- Consulting firms that specialize by industry command 30-40% fee premiums over generalists, per Forrester analysis of the AI consulting services market
- Firms typically capture only 10-20% of their potential pipeline due to staffing constraints; AI-enabled delivery models could increase this to 70-90%
- 78% of agencies surveyed are prioritizing improved efficiency and higher margins through AI in 2026

<StatGrid>
  <Stat value="88%" label="Organizations using AI in at least one business function" source="EY, Dec 2025" />
  <Stat value="28%" label="Companies reporting measurable business transformation from AI" source="EY, Dec 2025" accent="amber" />
  <Stat value="30-40%" label="Fee premium commanded by domain-specialized AI consultants over generalists" source="Forrester, Sep 2025" />
</StatGrid>

## The SaaS Saturation Problem

Every category in enterprise technology now has an "AI-powered" variant. AI-powered CRM. AI-powered cybersecurity. AI-powered compliance. AI-powered project management. The vendor pitch is consistent: buy the platform, configure it, and your problems are solved.

The reality is different. EY's research found that while 88% of global employees report using AI at work, only 28% of companies have seen a discernible impact on business transformation. The gap between adoption and impact is not a technology problem. It is an implementation, integration, and judgment problem, the exact kind of problem that software alone does not solve.

SaaS tools are horizontal by design. They serve the broadest possible market with the lowest possible customization. That works for email, project management, and file storage. It does not work for decisions that require understanding your specific regulatory environment, your competitive position, your organizational culture, and the cascading effects of getting it wrong.

An AI tool can process data. It cannot determine whether the output is appropriate for your board, compliant with your regulatory obligations, or aligned with your strategic direction. That requires domain expertise applied in context, which is what advisory services exist to provide.

## Why AI-Native Agencies Are Different

AI-native agencies, firms built from day one around AI-augmented delivery rather than human-hour leverage, operate on fundamentally different economics than traditional consulting or SaaS vendors.

Traditional consulting sells time. The more complex the problem, the more hours billed. AI-native agencies sell outcomes. The more efficiently the problem is solved, the better the margin, which aligns the firm's incentive with the client's interest in speed and cost-effectiveness.

<BarComparison title="Pipeline capture: current versus AI-enabled delivery models (illustrative)" source="Innovaiden analysis">
  <Bar label="Current pipeline capture (staffing-constrained firms)" value={15} displayValue="10-20%" />
  <Bar label="Potential pipeline capture (AI-augmented delivery)" value={80} displayValue="70-90%" highlight />
</BarComparison>

*The figures above model the effect of removing the staffing constraint on qualified pipeline. They are Innovaiden's own analysis rather than measured industry data, and the achievable range depends heavily on engagement mix and how much of delivery is genuinely automatable.*

A senior team of five using AI-augmented research, analysis, and document generation can produce work that would have required a team of fifteen under the traditional model, at higher quality, because the senior practitioners are doing the judgment work directly rather than reviewing junior output. The 2026 Duda agency survey found that 78% of agencies are prioritizing improved efficiency and higher margins through AI, with 75% viewing productivity as AI's biggest opportunity. Nearly half said AI allows them to spend more time on creativity and strategic consulting.

## What AI SaaS Gets Wrong

The SaaS model assumes the buyer knows what they need, can configure the tool appropriately, and has the internal capability to interpret and act on the output. For mature organizations with strong internal teams, this can work. For most organizations navigating regulatory complexity, cybersecurity risk, or digital transformation, the assumption fails.

Mid-size companies are particularly exposed. When Big Four consultants arrive at a $200 million manufacturing company, they bring frameworks designed for organizations with 10,000+ employees and billion-dollar IT budgets. A supply chain optimization project that needed a targeted solution to reduce inventory costs by 15% became a $3 million, two-year transformation program. The firm was selling what it knew how to deliver, not what the client needed.

AI SaaS vendors make the opposite mistake. They sell self-service tools and assume the buyer will figure out the application. Neither approach works for the mid-market, which represents the majority of the economy. AI-native agencies occupy the gap: small enough to be responsive, senior enough to exercise judgment, and AI-augmented enough to deliver at a cost point that mid-market organizations can absorb.

## What to Look for in an AI-Native Advisory Partner

The right partner should demonstrate several specific capabilities. These are observable, not assumed, ask for evidence, not claims.

| Criterion | What to Ask | Red Flag |
|---|---|---|
| **AI in delivery** | "How is AI integrated in your actual delivery process?" | "We use AI internally for productivity" - not client delivery |
| **Pricing model** | "How do you price outcomes vs. hours?" | "Our rates are competitive" - still billing time |
| **Domain depth** | "What is your specific sector specialization?" | "We serve all industries" - no practitioner depth |
| **Build capability** | "Can you deploy working solutions, or only advise?" | "We provide strategic recommendations" - no implementation |

Forrester's analysis notes that providers will need to reprice services as they can do more work at lower cost, and that specialization premiums of 30-40% for industry-focused consultants reflect the market's recognition that generic AI advice is worth less than contextual implementation.

The era of paying $500,000 for a strategy deck that describes what to build is ending. Clients increasingly expect advisors who can build, deploy, and measure, not just advise.

## The Buyer's Shift

The market is bifurcating, and Big 4 contraction is now visible in the data. PwC publicly conceded in late 2025 that it will miss its target to add 100,000 employees globally by 2026, attributing the miss directly to GenAI productivity. KPMG followed in late April 2026 with [~400 US advisory layoffs (~4% of consulting headcount)](https://www.goingconcern.com/layoff-watch-26-kpmg-cuts-4-from-consulting/), citing AI-driven productivity and shifting client demand. These are not aspirational signals — they are firm-by-firm retreats from the headcount-leveraged model, exactly as an AI-native-agency thesis would predict.

Large enterprises with deep internal teams and significant budgets will continue to work with major consulting firms for multi-year transformation programs, though even they are negotiating harder on pricing and demanding more outcome-linked contracts.

The rest of the market, mid-size enterprises, PE-backed portfolio companies, organizations with specific regulatory or security challenges, will increasingly turn to specialized AI-native agencies that combine domain expertise with AI-augmented delivery at a fundamentally different cost structure.

The organizations that treat AI as a product to buy (SaaS) will automate tasks. The organizations that treat AI as a capability to embed with expert guidance (AI-native advisory) will transform operations. For the structural forces driving this shift, see [the broken consulting pyramid](/insights/professional-services-pyramid-broken) and [why consulting firms can't deliver the transformation they sell](/insights/transformation-paradox-consulting-firms-ai). For a practical guide to what AI agents can do today and how to get started, see our [AI agents guide for business leaders](/insights/ai-agents-business-leaders-guide) and [seven high-impact use cases](/insights/seven-ai-agent-use-cases-business-leaders).

The AI Advisory Partner Checklist covers the four evaluation criteria, the diagnostic questions to ask before signing an engagement, and the contractual signals that indicate whether a firm is genuinely outcome-oriented or still protecting a billable-hour model.

## Sources

*Figures attributed to Innovaiden reflect our own analysis and engagement experience, and are not drawn from a published benchmark study.*

1. EY. How Employees and Organizations Are Using AI. ey.com. 2025.
2. Gartner. Generative AI Consulting Services Market 2024. gartner.com. 2024.
3. Forrester. AI Consulting Services Market Analysis. forrester.com. 2025.
4. Duda. 2026 Agency Survey on AI Efficiency and Margins. duda.co. 2026.
5. [Going Concern — Layoff Watch '26: KPMG Cuts 4% From Consulting](https://www.goingconcern.com/layoff-watch-26-kpmg-cuts-4-from-consulting/). April 2026.
6. [Slashdot/Financial Times — Top consultancies freeze starting salaries; PwC misses 100K target](https://tech.slashdot.org/story/25/12/01/1241232/top-consultancies-freeze-starting-salaries-as-ai-threatens-pyramid-model). December 2025.


---

# The Consulting Pyramid Is Broken: What Replaces It

Author: Dritan Saliovski · Published: 2026-01-17 · Category: Professional Services · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/professional-services-pyramid-broken

> AI has automated junior analyst work faster than firms can redeploy. The consulting pyramid is under structural pressure - here's what replaces it.
The staffing model that built modern consulting, a broad base of junior analysts supporting a thin layer of senior partners, is under structural pressure that goes beyond a cyclical downturn. Firms are cutting graduate hiring, freezing starting salaries, and laying off thousands of employees who cannot be reskilled for AI-driven delivery. The question is no longer whether the pyramid changes. It's what replaces it, and what that means for organizations buying advisory services.

## Key Takeaways

- MBB starting salaries have been frozen for three consecutive years at $135,000-$140,000 (undergraduate) and $270,000-$285,000 (MBA); Big Four salaries have not increased since 2022
- PwC cut graduate hiring in 2025 and abandoned its target to add 100,000 employees globally by 2026, a goal set before generative AI
- Accenture reduced headcount by 22,000 in 2025, including 11,000 in a single quarter, as part of an $865 million restructuring
- McKinsey reduced its workforce from over 45,000 to 40,000, with a further 10% reduction in non-client-facing roles expected over 18-24 months
- In our own analysis, AI tools can now perform roughly 80% of a junior analyst's typical research and slide-generation work
- Only 25% of McKinsey's global fees are linked to outcomes; the rest still come from traditional billing

<StatGrid>
  <Stat value="3 yrs" label="MBB salary freeze, starting pay unchanged since 2022" source="Management Consulted, 2025" />
  <Stat value="~22,000" label="Accenture net headcount exits in 2025 alone" source="CNBC, Sep 2025" />
  <Stat value="~80%" label="Of junior analyst research and slide work now AI-automatable" source="Innovaiden analysis" />
</StatGrid>

## The Leverage Economics That Made It Work

The consulting pyramid was an economic engine, not just an org chart. Partners sold work and maintained relationships. Mid-level consultants managed delivery. A broad base of graduates conducted research, built models, and assembled the analysis that senior staff leveraged into client presentations. The margin structure was straightforward: bill premium rates for hours mostly performed by the least experienced team members. A partner selling a project at €3,000 per day while staffing it with analysts costing the firm €400 per day was the core arithmetic.

This worked because the analytical work was genuinely time-intensive and difficult to source externally. Clients needed people to gather data, run scenarios, and synthesize findings, and the only way to do this at scale was to employ large cohorts of graduates capable of managing the volume.

Generative AI broke that dependency. Tasks that once took a junior analyst days, research synthesis, data analysis, first-draft writing, slide generation, can now be completed in hours. McKinsey's internal tool Lilli, deployed to over 7,000 consultants by 2025, reportedly saves consultants 30% of their time on research and knowledge synthesis. BCG's Deckster automates presentation formatting. The base of the pyramid is being automated faster than firms can redeploy the people who occupied it.

## What the Numbers Actually Show

The hiring data tells a consistent story across the industry. PwC's trajectory is instructive. The firm set a target five years ago to increase global headcount by 100,000 by 2026. In 2025, it cut graduate hiring and acknowledged publicly it would miss that target, attributing the miss directly to generative AI's impact on productivity.

Accenture's restructuring was more aggressive. The firm reduced headcount by 22,000 in 2025, including over 11,000 in a single quarter. CEO Julie Sweet stated explicitly that employees who could not be reskilled would be "exited." The firm simultaneously grew its AI and data professional headcount from 40,000 in 2023 to nearly 80,000 by late 2025. This is not a hiring freeze, it is a workforce replacement.

McKinsey cut its workforce from over 45,000 to 40,000, with Bloomberg reporting an expected further 10% reduction in some areas over 18-24 months, primarily in non-client-facing roles. One consulting firm that was hiring 15 people in its incoming class in 2021 scaled that back to three or four for 2026. The pattern extends across professional services to law firms and accounting practices.

Deloitte's January 22, 2026 announcement to overhaul its junior job-title structure is the most explicit Big 4 acknowledgment that the base of the pyramid is no longer a coherent layer. The firm is collapsing traditional analyst/consultant titles, citing AI-driven productivity gains and a different career-path shape than the one the pyramid model implied. When a Big 4 firm changes the **names** of those roles, it has already changed what those roles do — and the org chart that flowed from those names is being rewritten in parallel. KPMG followed in late April with [~400 US advisory layoffs (~4% of consulting headcount)](https://www.goingconcern.com/layoff-watch-26-kpmg-cuts-4-from-consulting/), confirming the pattern is firm-by-firm now, not industry-aspirational.

## What Replaces the Pyramid

Several structural models are emerging to replace the traditional hierarchy. Each reflects a different set of assumptions about the role of AI and the economic basis of professional services delivery.

| Model | Structure | Basis | Who Is Adopting |
|---|---|---|---|
| **Diamond** | Wider middle, thinner base | More mid-level orchestration | Most mid-to-large firms |
| **Obelisk** | Fewer layers, minimal juniors | Senior-led delivery | Restructuring-focused firms |
| **Box** | Senior matched 1:1 with junior | Experienced professionals, less leverage | Alvarez & Marsal |
| **Inverted Pyramid** | Senior teams + AI agents at the base | AI replaces junior analyst capacity | AI-native agencies |

The most radical model flips the pyramid entirely: small teams of senior and mid-level consultants with minimal junior support, backed by AI systems for data processing and analysis. This is where AI-native agencies are emerging, firms built around AI-augmented delivery from day one rather than retrofitting it onto a headcount-dependent model.

A less discussed but equally significant shift is happening at the organizational level. The expert-network industry grew from virtually nothing in 2010 to an estimated $3-4 billion in 2024-2025, with projections to more than triple by the early 2030s. Complex, non-recurring work is increasingly sourced on demand rather than maintained as permanent internal capacity.

## The Pricing Problem Nobody Wants to Solve

The structural issue firms are avoiding is pricing. If AI makes a junior consultant 10x more productive on research and analysis, the firm either passes those savings to clients, finds new work to bill, or pockets the margin improvement. So far, most firms are choosing the third option.

<BarComparison title="McKinsey global fee structure, 2025" source="futureofconsulting.ai, Jan 2026">
  <Bar label="Traditional billing (effort/hours)" value={75} displayValue="~75%" highlight />
  <Bar label="Outcome-linked fees" value={25} displayValue="~25%" />
</BarComparison>

EY leaders have acknowledged the pressure to move toward "service-as-software" pricing, but few firms have made meaningful progress. Partner compensation structures built over decades around selling human hours are difficult to unwind. The Deloitte Australia incident, where the firm refunded part of a A$440,000 government contract after AI-generated errors including fabricated citations were discovered in the deliverable, illustrates the flip side: AI is being used to reduce delivery cost, but the quality controls have not kept pace.

## What This Means for Buyers

Organizations purchasing advisory services should be asking different questions than they were two years ago. Not "how many people will you staff on this project" but "what is the actual delivery model and what role does AI play in it." Not "what are your day rates" but "how do you price outcomes and what happens if we don't achieve them."

The pyramid was a structure that served firms, not clients. Its replacement, whatever form it takes, should reverse that relationship. For a deeper look at how this misalignment extends into service delivery and technology, see [why consulting firms can't align people, services, and AI](/insights/consulting-misalignment-people-services-ai). For the broader structural conflict, see [the transformation paradox facing consulting firms](/insights/transformation-paradox-consulting-firms-ai). And for what AI agents can actually do today, the technology reshaping the pyramid, see our [guide to AI agents for business leaders](/insights/ai-agents-business-leaders-guide) and [seven use cases replacing traditional advisory workflows](/insights/seven-ai-agent-use-cases-business-leaders).

The Advisory Model Evaluation Guide covers the diagnostic questions, evaluation criteria, and red-flag signals for assessing whether a firm's staffing and pricing model is designed around client outcomes or internal margin protection.

## Sources

*Figures attributed to Innovaiden reflect our own analysis and engagement experience, and are not drawn from a published benchmark study.*

1. Management Consulted. Consulting Salaries 2025. managementconsulted.com. 2025.
2. [CNBC — Accenture AI Orders: Senior Staff Risk Losing Promotions](https://www.cnbc.com/2026/02/19/accenture-ai-orders-senior-staff-lose-out-promotions.html). 2026.
3. Bloomberg. McKinsey Cuts Staff in Latest Round of Job Reductions. bloomberg.com. 2024.
4. [PwC — Global Annual Review 2025](https://www.pwc.com/gx/en/about/global-annual-review.html). 2025.
5. [futureofconsulting.ai — McKinsey Fee Structure Analysis](https://futureofconsulting.ai/). 2025.
6. [The Register — Deloitte Australia AI Report with Hallucinated Citations](https://www.theregister.com/2025/10/06/deloitte_ai_report_australia/). 2025.
7. EY. How AI Is Reshaping Professional Services. ey.com. 2025.
8. [Fortune — Deloitte to Scrap Traditional Job Titles as AI Reshapes Big 4](https://fortune.com/2026/01/22/deloitte-job-title-change-ai-reshapes-big-4-accounting-consulting-firms/). January 22, 2026.
9. [Going Concern — Layoff Watch '26: KPMG Cuts 4% From Consulting](https://www.goingconcern.com/layoff-watch-26-kpmg-cuts-4-from-consulting/). April 2026.


# Category: AI in Practice

> Hands-on guidance for deploying AI agents, building governance frameworks, and integrating AI across enterprise operations.

---

# From Copilots to Colleagues: What Computer-Use Agents Mean for Enterprise Operations

Author: Dritan Saliovski · Published: 2026-03-28 · Category: AI in Practice · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/copilots-to-colleagues-computer-use-agents

> Computer-use agents that operate your desktop autonomously are here. The governance gap between copilots and autonomous colleagues is the next risk.
On March 5, 2026, OpenAI released GPT-5.4, its first general-purpose model with native computer-use capabilities. The model can interpret screenshots, operate desktop applications, control mouse and keyboard inputs, and execute multi-step workflows across software environments without human intervention at each step. It scored 75% on the OSWorld-Verified benchmark for desktop task navigation, surpassing the average human performance score of 72.4%. This is not a chatbot that generates text on request. It is an autonomous agent that operates your computer.

The pace did not slow after March. **Between April 16 and mid-June 2026, the landscape reset again**: Anthropic released [Claude Opus 4.7](https://www.anthropic.com/news/claude-opus-4-7), OpenAI shipped Codex with desktop computer-use, OpenAI released GPT-5.5 (an agentic model with native long-horizon planning), and Microsoft took [Agent 365 to GA on 1 May](https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/), with [Copilot Cowork following on 16 June](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/), running on Anthropic models. The implication for enterprise operations: the question is no longer whether to plan for autonomous agents — three frontier providers and the largest enterprise productivity platform have all shipped them. The question is which model and platform combination handles your work, and how the governance plumbing in this article applies to the one you choose.

For leaders building their understanding of the AI agent landscape, our [guide to AI agents for business leaders](/insights/ai-agents-business-leaders-guide) covers the foundational concepts. This piece focuses on the operational and governance implications of agents that can see and control your screen.

## Key Takeaways

- GPT-5.4 is OpenAI's first mainline model with native computer-use capabilities, enabling autonomous operation of desktop applications, browsers, and software (OpenAI, March 5, 2026)
- On the OSWorld-Verified benchmark, GPT-5.4 scored 75%, exceeding average human performance (72.4%) and a significant jump from GPT-5.2's 47.3% (OpenAI; gHacks Tech News, March 2026)
- On an internal benchmark of spreadsheet modeling tasks typical for a junior investment banking analyst, GPT-5.4 scored 87.3%, compared to 68.4% for GPT-5.2 (OpenAI, March 2026)
- Computer-use operates through a perception-action loop: the model receives a screenshot, decides what to click or type, executes the action, observes the result, and repeats until the task is complete (OpenAI API documentation, March 2026)
- OpenAI classified GPT-5.4 as having "high cyber capability," triggering stronger monitoring systems and tighter access controls (gHacks Tech News, March 2026)

<StatGrid>
  <Stat value="75%" label="GPT-5.4 desktop task score, exceeding human average" source="OpenAI, OSWorld-Verified benchmark, March 2026" />
  <Stat value="87.3%" label="Accuracy on junior analyst spreadsheet modeling tasks" source="OpenAI internal benchmark, March 2026" />
  <Stat value="83%" label="Of professional work products matched or exceeded by GPT-5.4" source="OpenAI GDPval benchmark, March 2026" />
</StatGrid>

## What Changed: From Generating Text to Operating Systems

The distinction between a copilot and an autonomous agent is not semantic. It is architectural.

A copilot receives a prompt, generates a response, and waits for the next instruction. The human decides what to do with the output. An autonomous computer-use agent receives an objective, breaks it into steps, navigates applications to execute each step, evaluates intermediate results, adjusts its approach based on what it observes, and continues until the task is complete. The human defines the goal. The agent handles the execution.

GPT-5.4's computer-use capability works through a visual perception-action loop. The model receives a screenshot of the current screen state. It interprets the visual content, identifying buttons, menus, text fields, and application elements. It issues mouse and keyboard commands to take the next action. It receives a new screenshot showing the result. It evaluates whether the action succeeded and plans the next step. Each cycle sends a full screenshot to OpenAI's servers and receives a command response. A 50-step task involves 50 round-trips.

This is not a demo feature. OpenAI built a dedicated training pipeline where GPT-5.4 learned to control virtual machines, browse websites, fill out forms, navigate desktop applications, manage files, and execute code, all by interpreting visual input and producing precise mouse and keyboard instructions.

## Where Tasks Are Actually Being Replaced

The narrative around AI replacing jobs often conflates tasks with roles. Computer-use agents make this distinction concrete by targeting specific, repeatable workflows rather than entire positions.

GPT-5.4's performance data points to specific task categories. On spreadsheet modeling, building formulas, populating assumptions, running sensitivity analyses, creating charts, the model achieved an 87.3% accuracy score on tasks benchmarked against junior investment banking analyst work. On GDPval, which tests professional work products across 44 occupations, GPT-5.4 matched or exceeded industry professionals in 83% of comparisons.

The tasks most immediately affected are those that involve structured data manipulation across applications, repetitive form-filling and data entry, report generation from multiple sources, calendar and scheduling coordination, and compliance documentation updates. These are not hypothetical. Microsoft's Copilot Studio already deploys autonomous agents that manage business processes between Office applications. Atlassian's AI Rovo operates as a knowledge graph that breaks down information silos in software development workflows. GPT-5.4's computer-use capability takes this further by allowing agents to navigate any application with a visual interface, not just those with pre-built API integrations.

The operational implication is significant. An agent that can operate any application through its visual interface is not limited to tools with published APIs. It can work with legacy systems, custom internal tools, and third-party platforms that have no integration layer. For concrete examples of high-impact agent use cases across business functions, see [seven ways business leaders are using AI agents today](/insights/seven-ai-agent-use-cases-business-leaders).

## The Governance Gap

Here is the problem enterprises have not solved: the access control, audit, and compliance frameworks designed for human users do not map cleanly to autonomous agents.

When a human analyst opens a spreadsheet, makes changes, and saves the file, there is an implicit audit trail, the user's login, the timestamp, the file version. When an autonomous agent performs the same task through screen-level interaction, the audit trail depends entirely on how the agent's execution environment is configured. If the agent operates within a user's session, its actions are attributed to that user. If the agent accesses systems through shared credentials, the audit trail breaks.

Three governance questions require answers before deploying computer-use agents in production. First, **identity and access management**: does the agent operate under its own identity with its own credentials, or does it inherit a human user's session? Service accounts for autonomous agents need the same provisioning, review, and deprovisioning processes applied to human accounts, with tighter scope and shorter rotation cycles. Second, **scope limitation and least privilege**: an agent with computer-use capability can, by design, access anything visible on screen. The principle of least privilege must be enforced through isolated execution environments (Docker containers, dedicated virtual machines, sandboxed browser profiles) rather than relying on the model's instructions to self-limit. Third, **logging and auditability**: every action an agent takes, every click, every keystroke, every file accessed, must be captured in a format that supports compliance review. This is technically feasible but requires explicit implementation. It is not a default feature of any current computer-use agent framework.

## What This Means for ISO 27001 and SOC 2 Controls

Organizations maintaining ISO 27001 certification or SOC 2 Type II compliance should map autonomous agent usage against their existing control frameworks. Several control areas are directly affected.

ISO 27001 Annex A controls on access management (A.9) require that access rights are provisioned based on business need and reviewed periodically. An autonomous agent with computer-use capability that operates under a human user's credentials does not satisfy this requirement. Identity lifecycle management must extend to agent identities.

SOC 2 criteria around monitoring (CC7) require that organizations detect and respond to anomalous activity. An autonomous agent performing 50 actions per minute across multiple applications generates activity patterns that differ fundamentally from human usage. Monitoring tools must be calibrated to distinguish normal agent operation from compromised agent behavior.

Change management controls (CC8 under SOC 2, A.12 under ISO 27001) require that changes to production systems follow documented procedures. An autonomous agent modifying production spreadsheets, updating CRM records, or publishing content operates outside traditional change management workflows unless explicitly integrated. For organizations building agent governance frameworks, the [security-first deployment framework](/insights/ai-agent-deployment-security-framework) provides a structured approach.

## What Leaders Should Do Now

Four steps apply regardless of whether an organization is actively deploying computer-use agents or evaluating the category.

First, **classify workflows by agent suitability**. Map high-volume, repeatable tasks across departments. Identify which are candidates for autonomous execution and which require human judgment at each step. This exercise produces a practical deployment roadmap, and a clear picture of which roles shift from execution to oversight.

Second, **establish agent identity and access policies**. Define how autonomous agents are credentialed, scoped, and monitored. This policy should be in place before the first agent goes into production, not retrofitted afterward.

Third, **assess execution environment isolation**. Computer-use agents should operate in sandboxed environments, dedicated VMs, containerized sessions, or virtual desktops, that limit their access to only the systems and data required for each task. Shared environments with broad access defeat the purpose of access controls.

Fourth, **update compliance documentation**. If your organization holds ISO 27001, SOC 2, or similar certifications, assess whether autonomous agent usage introduces gaps in your current control statements. Auditors will ask about this. Be ready before they do. Organizations also evaluating the broader model landscape should consider whether a [multi-model strategy](/insights/multi-model-ai-strategy-enterprise-portfolio) reduces vendor concentration risk alongside governance improvements.

If you are evaluating how computer-use agents fit into your operations, or need to assess the governance and compliance implications for your organization, reach out to discuss.

## Sources

1. [OpenAI - Introducing GPT-5.4](https://openai.com/index/introducing-gpt-5-4/). 2026-03-05.
2. [Fortune - OpenAI launches GPT-5.4, its most powerful model for enterprise agentic work](https://fortune.com/2026/03/05/openai-new-model-gpt5-4-enterprise-agentic-anthropic/). 2026-03-05.
3. [Anthropic - Introducing Computer Use with Claude 3.5 Sonnet](https://www.anthropic.com/news/3-5-models-and-computer-use). 2024-10-22.
4. [CNBC - Anthropic's Claude AI agent can now use a computer to finish tasks](https://www.cnbc.com/2026/03/24/anthropic-claude-ai-agent-use-computer-finish-tasks.html). 2026-03-24.
5. [gHacks Tech News - OpenAI Launches GPT-5.4 With AI Agents That Can Use Computers](https://www.ghacks.net). 2026.
6. [WordPress.com - Use an AI agent to manage your content](https://wordpress.com/blog/2026/03/20/ai-agent-manage-content/). 2026-03-20.
7. [Grand Pinnacle Tribune - OpenAI Unveils GPT-5.4 With Computer Agent Powers](https://evrimagaci.org). 2026.
8. [iWeaver AI - OpenAI Launches ChatGPT-5.4: Native Computer Use and AI Agents](https://iweaver.ai). 2026.
9. ISO 27001 and SOC 2 control mapping to autonomous agent governance based on published framework requirements. Analysis by Innovaiden.
10. [Anthropic — Claude Opus 4.7](https://www.anthropic.com/news/claude-opus-4-7). April 16, 2026.
11. [Microsoft — Microsoft Agent 365 Now Generally Available: Expanded Capabilities and Integrations](https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/). May 1, 2026 GA.
12. [Microsoft — Copilot Cowork Is Now Generally Available](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/). June 16, 2026 GA.


---

# Seven Ways Business Leaders Are Using AI Agents Today

Author: Dritan Saliovski · Published: 2026-03-14 · Category: AI in Practice · Reading time: 7 min read · Canonical: https://www.innovaiden.com/insights/seven-ai-agent-use-cases-business-leaders

> AI agents are not a future capability. They are an operational tool that professionals and deal teams are using now to compress hours of skilled labor.
AI agents are not a future capability. They are an operational tool that advisory professionals, executives, and deal teams are using now to compress workflows that previously consumed hours of skilled labor. The use cases below are not theoretical, they reflect how agents like Claude Cowork are being deployed in practice across professional services, finance, and enterprise leadership roles.

If you are new to AI agents, start with our [guide to what they are and why they matter](/insights/ai-agents-business-leaders-guide). If you are ready to set one up, the [step-by-step setup guide](/insights/getting-started-ai-agents-setup-guide) covers everything you need.

## Key Takeaways

- The highest-value agent use cases for business leaders involve research synthesis, document production, and communication management, not general automation
- OpenAI reports that ChatGPT Enterprise users save 40 to 60 minutes per active workday, based on usage data and a survey of 9,000 employees at roughly 100 of its own paying customers. That measures general assistant use rather than agent deployment, and it is a vendor figure, so treat it as directional
- 64% of AI agent deployments focus on business process automation across support, HR, sales operations, and administrative functions
- Consulting firms including Deloitte and EY have moved past pilots into operational agent deployment across finance, tax, and compliance functions
- The most effective agent users treat the tool like delegation, clear end-state descriptions outperform vague instructions
- Each use case below includes a practical prompt template that can be adapted for Claude Cowork or similar agent platforms

<StatGrid>
  <Stat value="40-60 min" label="Saved per active workday by ChatGPT Enterprise users (OpenAI's own customers, self-reported)" source="OpenAI, State of Enterprise AI 2025" />
  <Stat value="64%" label="Of AI agent deployments focus on business process automation" source="Lyzr AI, 2026" />
  <Stat value="52%" label="Reduction in complex case handling time after agent integration" source="ServiceNow, 2025" />
</StatGrid>

## 1. Research and Competitive Intelligence

The most immediate productivity gain for any advisory or leadership role. Traditional research requires finding sources, reading them, extracting relevant data, and organizing findings into something actionable. An agent compresses that entire pipeline into a single delegation.

A managing director preparing for a board meeting can point an agent at a set of industry reports, competitor filings, and internal strategy documents and receive a structured competitive briefing, with sources cited and themes categorized, without personally reading every input document.

**Practical prompt:** "I have uploaded five industry reports and three competitor annual filings to this folder. Read all documents and produce a competitive intelligence briefing. Structure it as: executive summary (200 words), market position analysis by competitor, three emerging threats, and three strategic opportunities. Cite specific data points from the source documents. Save as competitive-briefing.docx."

## 2. Due Diligence Document Preparation

For PE deal teams, M&A advisors, and corporate development professionals, due diligence generates enormous volumes of documentation that need to be organized, cross-referenced, and summarized. Agents handle the mechanical assembly, reading data rooms, flagging inconsistencies, and producing structured summaries, so analysts and principals can focus on judgment. For more on how technology is transforming due diligence workflows, see our insights on [GenAI in tech and cyber due diligence](/insights/genai-tech-cyber-due-diligence-ma) and [why speed matters in digital due diligence](/insights/speed-matters-digital-due-diligence-ma).

**Practical prompt:** "This folder contains 30 documents from a target company data room, including financial statements, contracts, and organizational charts. Create a due diligence summary document organized by category: financial overview, contractual obligations and risks, organizational structure, and technology infrastructure. Flag any inconsistencies between documents. Note where information appears incomplete or missing. Save as dd-summary.docx."

## 3. Board and Executive Communication

Preparing materials for board meetings, investor updates, and executive reviews is one of the most time-intensive recurring tasks in leadership roles. The substance requires human judgment, but the formatting, data assembly, and structural organization are mechanical. Agents handle the latter.

**Practical prompt:** "Using the quarterly sales data in this spreadsheet and the strategic priorities document in this folder, create a board update presentation. Include: Q1 performance summary with key metrics, variance analysis against plan, three strategic initiative updates with status indicators, and a forward outlook section. Use a clean professional format. Save as board-update-Q1.pptx."

## 4. Email and Communication Management

Harvard Business Review research estimates the average professional spends 28% of their workday on email, over 11 hours per week. For partners and senior executives managing multiple client relationships, deal threads, and internal coordination simultaneously, email management is a significant cognitive drain.

With the Gmail connector enabled, agents can triage inboxes, draft responses that match your communication style, track unanswered follow-ups, and produce weekly communication summaries across all active threads.

**Practical prompt:** "Review my inbox from the past 48 hours. Categorize each message as: requires response today, requires response this week, informational only, or can be archived. For the messages requiring response, draft a reply for each, keep my tone professional and concise, avoid corporate jargon. Create a summary document listing all categorized messages with the draft responses. Save as inbox-triage.md."

## 5. Contract and Policy Review

Reviewing contracts, compliance documentation, and internal policies is essential but labor-intensive. Agents cannot replace legal judgment, but they can read large volumes of documentation and surface specific provisions, inconsistencies, or gaps that a professional would otherwise have to find manually.

**Practical prompt:** "This folder contains 15 vendor contracts. Read each contract and extract the following provisions from each: term and renewal conditions, liability caps and indemnification clauses, data processing and privacy terms, termination for convenience provisions, and any cybersecurity or compliance requirements. Create a comparison matrix in Excel with one row per vendor and one column per provision category. Flag any contracts that are missing standard provisions. Save as vendor-contract-matrix.xlsx."

## 6. Meeting Preparation and Follow-Up

The cycle of preparing for meetings and processing the outcomes afterward consumes a disproportionate amount of executive time. Agents can compile relevant background materials before a meeting and convert raw notes into structured action items, assignments, and follow-up communications afterward.

**Practical prompt:** "I have a meeting with [client name] tomorrow. In this folder you will find our previous engagement summary, their most recent annual report, and my notes from our last call. Prepare a one-page meeting brief that covers: relationship history and current engagement status, three key talking points based on their recent business developments, any open action items from previous meetings, and suggested next steps to propose. Save as meeting-prep.docx."

## 7. Data Consolidation and Reporting

When information is scattered across spreadsheets, documents, emails, and presentation files, consolidation becomes a project in itself. Agents can read across file types, extract relevant data, reconcile differences, and produce unified reports.

This is particularly valuable for quarterly reviews, client reporting, and any situation where data from multiple sources needs to be combined into a single coherent narrative.

**Practical prompt:** "This folder contains customer feedback from three sources: a survey response spreadsheet, a support ticket summary document, and call notes from the customer success team. Consolidate all feedback, identify the top five recurring themes by frequency, categorize issues by severity (critical, moderate, minor), and produce a customer feedback report. Include representative examples for each theme. Save as customer-feedback-Q1.docx."

## The Pattern Across All Seven Use Cases

Every use case above shares the same structure: a clear end-state description, explicit formatting requirements, and defined input materials. The agent handles the reading, organizing, formatting, and assembling. The human handles the judgment, reviewing whether the output is accurate, strategically sound, and ready for its audience.

The professionals getting the most value from agents in 2026 are not the most technical. They are the clearest thinkers and communicators. The ability to describe precisely what you want, including what to include, what to exclude, and what format the output should take, is the differentiating skill.

Deloitte's State of AI in the Enterprise 2026 report found that worker access to AI rose by 50% in 2025, and that enterprises deploying AI agents expect an average 30% productivity improvement driven by automation of complex, multi-step workflows. ServiceNow reported a 52% reduction in the time required to handle complex customer service cases after integrating AI agents.

But Bain's 2025 Technology Report adds an important caveat: while AI investment is up, returns often lag behind expectations. The report attributes this gap to fragmented workflows, insufficient integration, and misalignment between AI capabilities and business processes. Deploying an agent is not the hard part. Deploying it effectively, with clear use cases, defined inputs, and human review processes, is what separates productivity gains from expensive experiments.

[Gartner's August 2025 forecast](https://www.gartner.com/en/newsroom/press-releases/2025-08-26-gartner-predicts-40-percent-of-enterprise-apps-will-feature-task-specific-ai-agents-by-2026-up-from-less-than-5-percent-in-2025) sharpens the picture in both directions. On the upside: **40% of enterprise applications will feature task-specific AI agents by end of 2026, up from under 5% in 2025**. On the downside: **more than 40% of agentic AI projects will be cancelled by 2027** due to escalating costs, unclear value, or insufficient risk controls. The pattern across both numbers — high adoption, high failure rate — favors organizations that start with the well-scoped use cases above (clear inputs, structured outputs, human review) rather than open-ended autonomous deployments.

## What Comes Next

These seven use cases cover the highest-impact applications for business leaders today. But every one of them involves giving an AI system access to sensitive information, client data, financial records, strategic documents, and internal communications.

The productivity opportunity is real and measurable. The security exposure is equally real and, in most organizations, not yet managed. Only 29% of organizations report being prepared to secure their AI agent deployments, according to Cisco's State of AI Security 2026 report. The [McKinsey Lilli breach](/insights/mckinsey-lilli-breach-enterprise-ai-security) demonstrated what happens when enterprise AI platforms are deployed without adequate security controls.

Our companion pieces cover the [security risks AI agents introduce](/insights/ai-agent-security-risks-enterprise), the [practical security differences between agents and chatbots](/insights/ai-agents-vs-chatbots-security-posture), and a [deployment framework](/insights/ai-agent-deployment-security-framework) for implementing agents with appropriate controls.

## Sources

1. Deloitte. State of AI in the Enterprise, 2026. deloitte.com. 2026.
2. Bain. Technology Report 2025. bain.com. 2025.
3. Cisco. State of AI Security 2026. cisco.com. 2026.
4. [Harvard Business Review - How Much Time We Spend on Email](https://hbr.org/2019/01/how-to-spend-way-less-time-on-email-every-day)
5. ServiceNow. AI Agent Integration Results. servicenow.com. 2025.
6. [Gartner — 40% of Enterprise Apps Will Feature Task-Specific AI Agents by 2026, up from under 5% in 2025](https://www.gartner.com/en/newsroom/press-releases/2025-08-26-gartner-predicts-40-percent-of-enterprise-apps-will-feature-task-specific-ai-agents-by-2026-up-from-less-than-5-percent-in-2025). August 26, 2025.
6. [PwC - 2025 AI Business Leaders Survey](https://www.pwc.com/us/en/tech-effect/ai-analytics/ai-business-survey.html)
7. [Lyzr AI - State of AI Agents 2026](https://www.lyzr.ai/state-of-ai-agents/)
8. [OpenAI — The State of Enterprise AI, 2025 report](https://openai.com/index/the-state-of-enterprise-ai-2025-report/). 2025. Vendor-published; based on ChatGPT Enterprise usage data plus a survey of 9,000 employees at roughly 100 OpenAI customer organisations.


---

# Getting Started with AI Agents: A Setup Guide for Business Professionals

Author: Dritan Saliovski · Published: 2026-03-13 · Category: AI in Practice · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/getting-started-ai-agents-setup-guide

> You do not need a technical background to use an AI agent. A paid subscription, a desktop app, and twenty minutes. A step-by-step setup guide.
You do not need a technical background to use an AI agent. You need a paid subscription, a desktop application, and twenty minutes. This guide covers exactly what to install, how to configure it, and how to run your first task, written for professionals who bill by the hour and do not want to read twelve pages of preamble.

If you are new to AI agents and want to understand what they are and why they matter before getting started, see our [guide for business leaders](/insights/ai-agents-business-leaders-guide).

## Key Takeaways

- Claude Cowork is currently the most mature general-purpose AI agent available to non-technical professionals, available on macOS and Windows
- Setup requires a Claude Pro subscription ($20/month minimum), the Claude Desktop application, and a dedicated workspace folder
- Cowork runs in an isolated virtual machine, it can only access folders you explicitly grant permission to
- Your first task should be simple and low-stakes: organize a folder, summarize a set of documents, or create a formatted report from raw notes
- Microsoft's Copilot Cowork, powered by Claude, entered research preview in March 2026 and reached general availability on 16 June 2026

<StatGrid columns={2}>
  <Stat value="$20/mo" label="Claude Pro subscription, minimum for Cowork access" source="Anthropic, 2026" />
  <Stat value="28%" label="Of the work week interaction workers spend on email" source="McKinsey Global Institute, The Social Economy (2012), via HBR (2019)" />
</StatGrid>

## The Current Landscape

As of March 2026, the AI agent market has a clear leader for non-technical users: Claude Cowork from Anthropic. Google, OpenAI, and Microsoft are all developing competing products, but Cowork is the one you can install and use today without writing a single line of code.

OpenAI's Operator handles browser-based tasks but is limited to web automation. Google's agent offerings remain developer-focused. Microsoft's [Copilot Cowork](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/), built on Anthropic Claude, reached general availability worldwide on 16 June 2026 after a three-month Frontier preview. It is billed on usage-based credits rather than a flat seat price.

If you are on a Microsoft 365 enterprise plan, Copilot Cowork has been a fully-supported path since that June GA, with the same Cowork interaction model described in this guide. The directing pattern (clear end-state, explicit formatting, defined inputs) transfers between the two products. If you are not on Microsoft 365, or you want to evaluate the Anthropic experience directly, Claude Cowork is the simpler starting point and the rest of this guide walks through it step-by-step.

## What You Need

A Mac or Windows computer. Cowork is available on both platforms with full feature parity, file access, multi-step tasks, plugins, and all connectors work identically.

A paid Claude subscription. Claude Pro at $20 per month gives you access. Claude Max at $100 or $200 per month provides higher usage limits for heavier workloads. Team and Enterprise plans also include access.

An internet connection. Cowork communicates with Anthropic's servers throughout your session. Offline use is not currently possible.

## Installation: Five Steps

**Step 1, Download Claude Desktop.** Go to claude.ai/download. Select your operating system and download the installer.

**Step 2, Install the application.** On macOS, open the .dmg file and drag the Claude icon into your Applications folder. On Windows, run the .exe installer.

**Step 3, Launch and sign in.** Open Claude from your Applications folder or Start menu. Sign in with your Claude account credentials. If you do not have an account, create one during this step and subscribe to a Pro plan or above.

**Step 4, Verify Cowork access.** Once signed in, look for the mode selector at the top of the interface. You should see tabs for Chat and Cowork. If you see the Cowork tab, your setup is complete. If not, confirm your subscription is active, syncing can take a few minutes.

**Step 5, Create a workspace folder.** Before your first task, create a dedicated folder on your computer, something like "Cowork Projects" in your Documents directory. This becomes the sandbox where Cowork reads and writes files. You can create subfolders for different types of work: Research, Documents, Inbox, Output.

## How Cowork Operates

Understanding the architecture matters because it affects what you can and cannot ask the agent to do.

Cowork does not run directly on your computer. It boots an isolated virtual machine, a sandboxed environment that can only access the folders you explicitly share. When you grant Cowork access to a folder, it mounts that folder into the virtual machine. Claude can read and modify files within that mounted folder but cannot touch anything else on your system. Your personal files, browser history, system settings, and other applications are completely isolated.

When you assign a task, the process follows a consistent pattern. You describe your goal in plain language. Claude creates a plan and shows you the proposed steps. You review and approve the approach. Claude executes the task autonomously, this can take minutes or hours depending on complexity. When finished, Claude presents the results for your review.

Throughout execution, Claude surfaces its reasoning so you can follow along. You can intervene to course-correct or provide additional direction at any point. For complex tasks, Claude may coordinate multiple sub-agents working in parallel.

Two important limitations to know upfront. First, Cowork has no memory between sessions, each new task starts fresh. Second, the Claude Desktop application must remain open while Cowork is working. Close the app and the session ends.

## Your First Task

Start simple. The goal is to verify your setup works and build intuition for how to direct the agent, not to tackle your most complex project on day one.

**Option A, Folder organization.** If you have a cluttered Downloads folder or a project directory that has accumulated disorganized files, point Cowork at it and ask it to sort files by type, apply consistent naming conventions, and create a logical folder structure. This is a low-risk task with immediately visible results.

**Option B, Document summarization.** Place a set of meeting notes, reports, or research documents in your Cowork workspace folder. Ask Cowork to read everything and produce a consolidated summary with key themes and action items. This tests Cowork's ability to read multiple files and synthesize information.

**Option C, Report creation.** If you have raw data in a spreadsheet or a collection of notes, ask Cowork to produce a formatted Word document or presentation from that material. This tests Cowork's document creation capabilities.

A practical prompt for Option B might read: "Read all documents in this folder. Create a summary document that identifies the three most important themes across all files, lists any action items mentioned, and flags any conflicting information between documents. Save the output as summary.md."

If the task completes successfully and the output is reasonable, your setup is confirmed.

## Making Cowork More Powerful

Once you are comfortable with basic tasks, three features extend Cowork's capabilities significantly.

**Connectors** link Cowork to external services. Gmail and Google Calendar connectors are available, allowing the agent to read your email, draft responses, and coordinate scheduling. Google Drive connectivity lets Cowork work with cloud-hosted documents. DocuSign and FactSet connectors were added in February 2026 for enterprise users. Configure connectors through Claude's Settings panel.

The email connector is where the time arithmetic gets interesting. McKinsey Global Institute's analysis, relayed by Harvard Business Review, put email at 28% of the work week for interaction workers, meaning managers, professionals and salespeople. That research dates to 2012 and predates agentic tooling entirely, so it establishes the size of the pool, not the size of the saving. Our own view, and it is an inference rather than a sourced finding, is that triage and drafting are exactly the mechanical part of that 28% an agent can absorb, while the judgment calls about what to actually say stay with you.

**Claude in Chrome** pairs with Cowork to give the agent browser access. When installed, Cowork can navigate websites, extract information from web pages, and complete tasks that require internet research, without you manually copying and pasting content.

**Skills** improve Cowork's output quality for specific file types. Built-in skills for .docx, .pptx, .xlsx, and .pdf handle formatting, layout, and structure more reliably than a generic prompt would achieve. These activate automatically when relevant.

**Global and folder instructions** let you set standing preferences. You can tell Cowork your preferred tone, format conventions, or role context once, and it applies across every session. Folder-specific instructions activate whenever you are working in a particular directory, useful for projects with consistent requirements.

## How to Think About Directing an Agent

The mental model that works best is not "prompting", it is delegation. The same skills that make someone effective at delegating to a junior colleague make them effective at directing an agent.

Be specific about the end state. What does the finished product look like? What format should it take? What should it include and exclude?

State constraints explicitly. If there are files that should not be modified, boundaries on scope, or formatting requirements, say so upfront. An agent will not always stop to ask for clarification, it will make assumptions and proceed.

Review strategically, not exhaustively. Checking every micro-decision the agent makes defeats the purpose. Check the output against your intent. If the direction is wrong, course-correct. If the details need polish, edit the finished product. The value is in the 80% of mechanical work you did not have to do yourself.

For concrete examples of how to put these principles into practice across seven high-impact use cases, see [Seven Ways Business Leaders Are Using AI Agents Today](/insights/seven-ai-agent-use-cases-business-leaders).

## What to Be Aware Of

Cowork is a research preview with unique risks due to its agentic nature and internet access. Anthropic's own documentation states clearly: do not use Cowork for regulated workloads. Cowork activity is not captured in audit logs, compliance APIs, or data exports. Conversation history is stored locally on your computer, not subject to Anthropic's standard data retention.

For any work involving sensitive client data, proprietary information, or regulatory obligations, understand the data handling implications before proceeding. Our analysis of [AI agent security risks](/insights/ai-agent-security-risks-enterprise) and the [security-first deployment framework](/insights/ai-agent-deployment-security-framework) covers what organizations need to consider. For a broader perspective on enterprise AI data governance, see our insight on [how AI data governance mirrors challenges enterprises already solved](/insights/ai-data-governance-enterprise-guide).

## Sources

1. Anthropic. Get Started with Cowork. anthropic.com. 2026.
2. Anthropic. Introducing Computer Use and Cowork. anthropic.com. 2026.
3. Microsoft. Copilot Cowork Announcement, March 2026. thurrott.com. 2026.
4. CNBC. Anthropic Updates Claude with Cowork. cnbc.com. 2026.
5. DataCamp. Claude Computer Use and Cowork Tutorial. datacamp.com. 2026.
6. [Microsoft — Copilot Cowork Is Now Generally Available](https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/16/copilot-cowork-is-now-generally-available/). June 16, 2026 GA.
7. [Harvard Business Review — How to Spend Way Less Time on Email Every Day](https://hbr.org/2019/01/how-to-spend-way-less-time-on-email-every-day). January 2019, relaying McKinsey Global Institute, The Social Economy (2012).


---

# AI Agents for Business Leaders: What They Are and Why They Matter

Author: Dritan Saliovski · Published: 2026-03-12 · Category: AI in Practice · Reading time: 6 min read · Canonical: https://www.innovaiden.com/insights/ai-agents-business-leaders-guide

> The shift from AI that talks to AI that does is underway. A plain-language guide to what AI agents are, where the market stands, and why it matters.
The AI tools most executives know, ChatGPT, Claude, Gemini, are chatbots. You type a question, you get an answer, you type again. Every action requires your input. That model is about to look as dated as a fax machine. The shift underway is from AI that talks to AI that does. And for anyone running a business, the distinction is not academic, it changes what a single person or a small team can accomplish.

## Key Takeaways

- AI agents operate autonomously: they plan, execute multi-step tasks, and deliver finished outputs without constant human prompting
- Gartner projects 40% of enterprise applications will embed task-specific AI agents by 2026, up from less than 5% in 2025
- PwC's AI Agent Survey of 308 U.S. business executives found 79% say AI agents are already being adopted, 35% of them broadly; a separate Capgemini survey put fully scaled deployment at just 2%
- Claude Cowork, launched January 2026, is the first general-purpose AI agent accessible to non-technical professionals
- The productivity impact is measurable: enterprises report employees saving 40 to 60 minutes per day on routine tasks
- Microsoft's integration of Claude Cowork into Microsoft 365 Copilot, announced March 2026, signals that AI agents are becoming enterprise infrastructure

<StatGrid>
  <Stat value="79%" label="Of surveyed US business executives say AI agents are already being adopted in their companies" source="PwC AI Agent Survey, April 2025 (n=308)" />
  <Stat value="$10.9B" label="Projected global AI agents market in 2026" source="Grand View Research" />
  <Stat value="40%" label="Of enterprise apps will embed AI agents by end of 2026" source="Gartner, 2025" />
</StatGrid>

## What Actually Changed

A chatbot is reactive. You ask it to draft an email, it drafts the email. You ask it to summarize a document, it summarizes the document. Each request is a discrete interaction, you provide input, the chatbot returns output, and you start again. The entire workflow lives inside a single browser tab.

An AI agent inverts that relationship. Instead of responding to individual prompts, an agent takes a goal, breaks it into steps, decides which tools to use, and executes those steps with minimal human involvement. It can read files on your computer, create documents, browse the web, query databases, send emails, and coordinate across applications, all from a single instruction.

The practical difference is scope. A chatbot helps you do one thing at a time. An agent completes an entire workflow. If you need a competitive analysis before a board meeting, a chatbot can help you write each section if you feed it the right inputs. An agent can search for the data, pull relevant filings, compile the analysis, format it into a presentation, and place the finished file in your shared drive, while you focus on something else.

This is not a theoretical capability. Claude Cowork, released by Anthropic in January 2026, operates exactly this way. You point it at a folder, describe what you need, and step away. It plans, executes, and delivers. Microsoft announced in March 2026 that it is integrating Claude Cowork's agentic capabilities directly into Microsoft 365 Copilot, making the same technology available within the Office environment that most enterprises already use.

## Where the Market Stands

The enterprise adoption data tells a clear story: interest is massive, but execution is early.

According to PwC's AI Agent Survey of 308 U.S. business executives (April 2025), 79% say AI agents are already being adopted in their companies: 35% broadly, and a further 17% across almost all workflows. A separate Capgemini survey of 1,500 executives put fully scaled deployment at just 2%. The remainder are running pilots or limited implementations within specific functions. Gartner's projection that 40% of enterprise applications will embed task-specific agents by the end of 2026, up from less than 5% in 2025, suggests the acceleration curve is steep but still in its early phase.

The market itself is growing accordingly. The global AI agents market reached $7.6 billion in 2025 and is projected to exceed $10.9 billion in 2026. Venture investment in AI agent startups nearly tripled in 2024, reaching $3.8 billion. CB Insights mapped over 400 AI agent startups across 16 categories as of late 2025.

But there is a caution signal embedded in the data. Gartner also projects that over 40% of agentic AI projects are at risk of cancellation by 2027 if governance, observability, and return-on-investment clarity are not established. The pattern is familiar: rapid adoption without operational infrastructure leads to disillusionment. Organizations that deploy agents without clear oversight structures will struggle to sustain them.

## What Agents Can Actually Do Today

The most impactful use cases are not exotic. They are the repetitive, multi-step workflows that consume disproportionate amounts of skilled professionals' time. We cover the [seven highest-impact use cases](/insights/seven-ai-agent-use-cases-business-leaders) in detail in a companion piece, but the categories include research and synthesis, document creation, email management, and data consolidation.

Research and synthesis is the clearest win. Give an agent a topic, a set of documents, or a collection of URLs, and it can read, cross-reference, and produce a structured briefing. For advisory professionals who spend hours compiling information before they can start analyzing it, this compresses the preparation cycle from days to hours.

Document creation follows naturally. Agents can take raw notes, data exports, and reference materials and produce formatted proposals, reports, and presentations. The output is a first draft, it still requires human judgment on the substance, but the mechanical assembly work is handled.

Email and communication management is where individual productivity gains are most measurable. Research from Harvard Business Review estimates the average professional spends 28% of their workday on email. Agents can triage inboxes, draft responses, track follow-ups, and coordinate scheduling, reducing that time substantially.

## Why This Matters for Leaders Specifically

If you are a partner, a managing director, or a C-suite executive, the strategic implication is not that AI agents are interesting technology. It is that they change the unit economics of knowledge work.

A single professional with a well-directed agent can now produce the research output, document volume, and communication throughput that previously required a small team. This does not mean teams become unnecessary, the judgment, relationships, and strategic thinking remain human. But the leverage ratio shifts. One person can cover more ground. Small firms can compete with larger ones on output quality. Advisory practices can serve more clients without proportional headcount increases.

The consulting industry is already responding. Deloitte's Zora AI platform targets a 25% reduction in finance team costs and a 40% increase in productivity. EY has deployed 150 AI tax agents for compliance and data review. These are not pilot announcements, they are operational deployments within the largest professional services firms in the world. For a deeper analysis of how this is reshaping the consulting industry, see our insights on [the professional services pyramid](/insights/professional-services-pyramid-broken) and [the transformation paradox facing consulting firms](/insights/transformation-paradox-consulting-firms-ai).

Bain's 2025 Executive AI Survey found a 14-point increase in the number of leaders ranking AI within their top three enterprise priorities. But the same study flagged that 63% of executives cited platform sprawl as a growing concern, too many tools, insufficient integration. The organizations that will benefit most from AI agents are those that deploy them deliberately, with clear use cases and governance structures, rather than adopting every tool that appears.

## What Comes Next

The trajectory is clear. AI agents are moving from experimental to operational across enterprise environments. Microsoft's integration of Claude Cowork into the Office ecosystem removes one of the biggest adoption barriers, the need for a separate tool. When agents are embedded in the software professionals already use, adoption shifts from opt-in to default.

For business leaders, the question is not whether to engage with AI agents. It is how to engage intelligently, capturing the productivity benefits without creating unmanaged risk.

And risk is exactly where most organizations are currently exposed. Agents that can read files, access systems, and execute actions introduce security and governance considerations that most enterprise security frameworks were not designed to address. The Cisco State of AI Security 2026 report found that while most organizations planned to deploy agentic AI, only 29% reported being prepared to secure those deployments. Our analysis of the [security risks boards are not seeing](/insights/ai-agent-security-risks-enterprise) and the [security differences between agents and chatbots](/insights/ai-agents-vs-chatbots-security-posture) covers this in detail.

Productivity is the opportunity. Security is the constraint. Both require attention.

If you are ready to get started, our [setup guide for business professionals](/insights/getting-started-ai-agents-setup-guide) covers exactly what to install, how to configure it, and how to run your first task. For organizations ready to deploy agents at scale with appropriate controls, the [security-first implementation framework](/insights/ai-agent-deployment-security-framework) provides the governance structure. And for a look at where agents are headed next, autonomous computer-use agents that operate desktop applications without human intervention, see [from copilots to colleagues](/insights/copilots-to-colleagues-computer-use-agents).

## Sources

1. [PwC — AI Agent Survey](https://www.pwc.com/us/en/tech-effect/ai-analytics/ai-agent-survey.html). 308 U.S. business executives, fielded 22–28 April 2025.
2. [Gartner — AI Agent Market Forecasts 2025–2026](https://www.gartner.com/en/information-technology/topics/ai-agents). 2025.
3. Deloitte. State of AI in the Enterprise, 2026. deloitte.com. 2026.
4. Bain. Executive AI Survey 2025. bain.com. 2025.
5. Cisco. State of AI Security 2026. cisco.com. 2026.
6. Anthropic. Introducing Computer Use and Cowork. anthropic.com. 2026.
7. Microsoft. Copilot Cowork Announcement, March 2026. thurrott.com. 2026.
8. [Harvard Business Review - How Much Time We Spend on Email](https://hbr.org/2019/01/how-to-spend-way-less-time-on-email-every-day)
9. CB Insights. AI Agent Startup Landscape 2025. cbinsights.com. 2025.
10. [Grand View Research - AI Agents Market Projections](https://www.grandviewresearch.com/industry-analysis/ai-agents-market-report)
11. [Capgemini Research Institute — Rise of Agentic AI](https://www.capgemini.com/insights/research-library/ai-agents/). 16 July 2025; 1,500 executives at organizations with $1B+ revenue across 14 countries.


# Category: Regulatory Compliance

> NIS2, DORA, EU AI Act, and cross-border regulatory exposure for enterprises operating in the EU and US.

---

# Eighteen Days to the CRA's Reporting Gate. The Portal Is Not Live Yet. Your Process Has to Be.

Author: Dritan Saliovski · Published: 2026-08-24 · Category: Regulatory Compliance · Reading time: 9 min read · Canonical: https://www.innovaiden.com/insights/cra-article-14-reporting-drill-september-gate

> CRA Article 14 reporting becomes mandatory on 11 September 2026. ENISA's Single Reporting Platform is still not publicly live. The companies that will meet a 24-hour clock are the ones that have already run the drill.
On 11 September 2026, eighteen days from now, the Cyber Resilience Act's first hard obligation lands on manufacturers: Article 14 reporting of actively exploited vulnerabilities and severe incidents, on a 24-hour early-warning clock. The deadline has been fixed since the regulation entered into force in December 2024. What is new is the state of the infrastructure it depends on: as of late August, ENISA's Single Reporting Platform, the portal through which those reports must flow, is not yet publicly live. Onboarding guidance was updated on 3 and 14 August, functional and security testing is under way, and ENISA says the platform will be operational by the 11 September start date. The public URL has not been published.

That combination should change how the final stretch is spent. A company waiting to "see the portal" before preparing has inverted the problem. The portal is the easy part: a form, filled from information you either have ready or do not. The hard part is everything upstream of the form, and all of it can be rehearsed now: deciding within hours whether an event is reportable and under which trigger, producing an early warning from incomplete information, and having a named person empowered to submit at 3 a.m. on a Saturday. The companies that will meet a 24-hour clock in October are the ones that have already failed it once, in a drill, in September's first week.

We set out the readiness baseline in June, in [the CRA's first obligation gate and what readiness requires](/insights/cyber-resilience-act-readiness-smaller-product-companies). This piece is the operational end of that argument: the drill to run in the eighteen days that remain.

## Key Takeaways

- **11 September 2026**: Article 14 reporting becomes mandatory for manufacturers of products with digital elements placed on the EU market, wherever the manufacturer is established
- Two triggers, two final clocks: **actively exploited vulnerabilities** (final report within 14 days of a corrective measure) and **severe incidents** (final report within one month of the notification). Both share the **24-hour early warning** and **72-hour notification** front clocks
- **ENISA's Single Reporting Platform is not yet publicly live**: guidance updated 3 and 14 August, testing under way, operational "by 11 September". You cannot rehearse against the portal, so rehearse the process
- The 24-hour clock starts at **awareness**, not at analysis. The classification decision (which trigger, which clock) is the step most teams have never practised, and it determines the rest
- The report is written from the **evidence trail**, not from memory. If decisions are not timestamped as they happen, the 14-day and one-month final reports become reconstruction exercises under deadline
- For targets in live M&A processes, Article 14 readiness is now a **diligence question**: an acquirer asking "show me your reporting drill" three weeks before the gate is asking a fair question

<StatGrid>
  <Stat value="11 Sep 2026" label="Article 14 reporting obligations apply: actively exploited vulnerabilities and severe incidents, to ENISA and the coordinating CSIRT" source="Regulation (EU) 2024/2847, Article 71" />
  <Stat value="24h / 72h" label="Early-warning and notification clocks for both triggers; final report at 14 days (exploited vulnerabilities) or one month (severe incidents)" source="Regulation (EU) 2024/2847, Article 14" />
  <Stat value="Not yet live" label="Public status of ENISA's Single Reporting Platform in late August; guidance updated 3 and 14 August, launch committed by 11 September" source="ENISA Single Reporting Platform pages, August 2026" />
</StatGrid>

## What Exactly Lands on 11 September

Article 14 creates two distinct reporting duties, and the distinction is not pedantry, because the clocks differ.

An **actively exploited vulnerability** in your product, one you become aware is being used against systems in the wild, must produce an early warning to ENISA and the CSIRT designated as coordinator within 24 hours of awareness, a fuller vulnerability notification within 72 hours, and a final report no later than 14 days after a corrective or mitigating measure is available.

A **severe incident having an impact on the security of the product** runs the same 24-hour and 72-hour front clocks, but its final report is due within one month of the incident notification.

Classifying an event correctly, and quickly, is therefore the first operational skill Article 14 demands. An exploited vulnerability and a severe incident can look identical in the first hours. The obligation does not wait for certainty: the early warning is designed to be filed on incomplete information, which is precisely why teams that have never drafted one under time pressure struggle when the clock is real.

The reports flow through ENISA's Single Reporting Platform, established under Article 16. Which brings us to the current, slightly awkward fact.

## The Portal Is Not Live. That Is Information, Not an Excuse

As of late August 2026, the Single Reporting Platform's public access URL has not been published. ENISA has released onboarding guidance for registration and notification submission (updated 3 August) and for the platform's interface functions (updated 14 August), says functional and security testing is under way, and has committed to the platform being operational by 11 September, with a webinar planned roughly two weeks before launch.

Read one way, this is uncomfortable: the ecosystem's absorption infrastructure is being finished inside the final month, a pattern our [Velocity Gap analysis](/insights/vulnerability-lifecycle-velocity-gap-executive-doctrine) would predict, since the constraint in vulnerability handling is almost never discovery and almost always the machinery that absorbs it.

Read the operationally useful way: the portal's lateness removes the last excuse for late preparation, because it clarifies what preparation is. Nobody can practise the submission screen. Everybody can practise everything that feeds it. When the portal opens, the difference between companies will not be who saw the form first. It will be who arrives with the classification decision tree, the templates, and the ownership map already tested.

## The Drill: Five Tests, One Afternoon

A workable Article 14 drill fits in an afternoon and needs no portal. Run one scenario of each type: a report from a security researcher that a vulnerability in your product is being exploited at a customer, and a severe incident in your own build or update infrastructure.

**Test 1: classification.** Present the scenario to the people who would actually receive it (support, security, engineering on-call) and time how long it takes to reach a defensible answer to one question: is this an actively exploited vulnerability, a severe incident, both, or neither? Record who made the call and on what basis. This is the decision the final-report clock hangs on, and in most organizations it has never been made even once.

**Test 2: the awareness moment.** Article 14's clocks start at awareness. Decide, in writing, what counts as awareness for your organization, and who is empowered to start the clock, including at night and on weekends. If the honest answer is "whoever notices escalates to someone who is sometimes reachable", the drill has found its first gap.

**Test 3: the early warning at hour 12.** Have the team draft the actual early warning half a day into the scenario, using only the information the scenario has revealed by then. The point is to discover that the early warning is short, structural, and fileable on incomplete information, and to convert that discovery into a pre-agreed template so that no one is composing prose against a 24-hour deadline.

**Test 4: ownership of the submission.** Name the person who registers on the Single Reporting Platform when it opens, the person who submits, the approver, and the backup for each. ENISA's onboarding guidance exists now; assign someone to it this week, so registration happens in the platform's first days rather than during your first incident.

**Test 5: the evidence trail.** At the end of the drill, attempt to reconstruct the timeline of decisions from records alone: timestamps, tickets, messages. The final report at 14 days or one month is written from this trail. If the drill's own history cannot be reconstructed without asking people to remember, the incident's will not be either. This is the same evidence-not-capability gap the June baseline identified; the drill makes it concrete.

The output of the afternoon is not a pass. It is a short list of specific gaps, each with an owner, closable inside the eighteen days.

## The Deal-Side Angle

For companies in or near a transaction, the September gate has a second audience. An acquirer running technology and cyber diligence on an EU-exposed product target in September has a new, cheap, high-signal question: show me your Article 14 process, and show me the drill you ran. A target that can produce a dated drill report with named owners answers a governance question before it is asked. A target that cannot has handed the deal team exactly the kind of read-the-room finding we described in [CRA exposure in M&A](/insights/cyber-resilience-act-ma-due-diligence-deal-teams): not a conformity audit, a single question that reveals the state of the whole system.

## What This Changes for the Executive Team

**Schedule the drill this week, not the review.** The remaining window is enough to run the exercise, find the gaps, and close the top three. It is not enough for a committee to first agree the scope of a review of the process that would precede the drill. Run it rough; the roughness is the finding.

**Assign the platform onboarding now.** Registration on the Single Reporting Platform is administrative work with a named owner, doable from ENISA's published guidance in the platform's first days. It should not be discovered as a prerequisite at hour 20 of a real incident.

**Treat the classification decision as the crown jewel.** The 24-hour and 72-hour clocks are logistics. The decision of what an event *is*, made quickly, defensibly, and on the record, is the capability. It is also the part of the process that survives beyond compliance: the same classification discipline feeds NIS2 reporting, customer contractual notification, and the insurer conversation.

## How Innovaiden Approaches It

Innovaiden runs the drill described above as a facilitated exercise: two scenarios against the real statutory clocks, the classification decision tree built live with your team, early-warning and notification templates left behind, and a one-page gap list with owners, dated before 11 September. For companies already through our CRA readiness baseline, the drill is the operational test of it; for companies starting cold, it is the fastest honest picture of where the reporting gate will find them. The gate does not reward the best-documented intentions. It rewards the team that has already practised.

## Sources

1. [Regulation (EU) 2024/2847 (Cyber Resilience Act), Articles 14, 16 and 71](https://eur-lex.europa.eu/eli/reg/2024/2847/oj/eng). 2024.
2. [European Commission — Cyber Resilience Act: reporting obligations](https://digital-strategy.ec.europa.eu/en/policies/cra-reporting). 2026.
3. [ENISA — Single Reporting Platform (SRP)](https://www.enisa.europa.eu/topics/product-security/single-reporting-platform-srp). Guidance updated 3 and 14 August 2026.
4. [ENISA — Single Reporting Platform: frequently asked questions](https://www.enisa.europa.eu/topics/product-security/single-reporting-platform-srp/frequently-asked-questions). August 2026.
5. [cyberresilienceact.eu — With reporting due on 11 September 2026, ENISA's Single Reporting Platform is still not live](https://www.cyberresilienceact.eu/news/cra-single-reporting-platform-not-yet-live.html). August 2026.


---

# EU AI Act Article 50 Is Now in Force. It Is the Deadline That Did Not Move.

Author: Dritan Saliovski · Published: 2026-08-05 · Category: Regulatory Compliance · Reading time: 9 min read · Canonical: https://www.innovaiden.com/insights/eu-ai-act-article-50-transparency-now-in-force

> Article 50 of the EU AI Act became enforceable on 2 August 2026. The deferral never moved it, and it reaches every customer-facing chatbot and genAI pipeline.
On 2 August 2026, the EU AI Act's Article 50 transparency obligations became enforceable. From that date, an AI system that interacts directly with people must make its artificial nature clear unless that is already obvious, deployers of emotion recognition and biometric categorisation systems must inform the people exposed to them, and systems that generate synthetic audio, image, video, or text must mark their outputs in a machine-readable format and make them detectable as AI-generated. Deepfakes must be disclosed. None of this depends on whether a system is high-risk, and none of it depends on when the system was placed on the market.

When the Digital Omnibus deferred the AI Act's high-risk obligations to 2027 and 2028, we wrote that [August 2 was not cancelled, only narrowed](/insights/eu-ai-act-august-deadline-moved-digital-omnibus). That is now a description of the present rather than a forecast. And the pattern we warned about has largely played out: for a year the enterprise AI Act conversation was about the high-risk regime, and when that regime moved, many organizations stood their programs down entirely. The obligation that actually arrived on Sunday is the one that attaches by function rather than by risk classification, which means it reaches the systems almost every organization runs: the customer-facing chatbot, the voice assistant, the generative content pipeline. The distance between "we deferred our AI Act program" and "our chatbot has needed a disclosure since Sunday" is the subject of this piece.

## Key Takeaways

- **Article 50 of the EU AI Act became enforceable on 2 August 2026.** Four duty clusters apply: disclosure for AI systems interacting directly with people, information duties for emotion recognition and biometric categorisation, machine-readable marking and detectability for synthetic audio, image, video, and text, and disclosure of deepfakes and AI-generated public-interest text
- The obligations apply **regardless of high-risk status and regardless of when the system was placed on the market**. Content generated before 2 August 2026 does not need retroactive labelling, though the European Commission encourages it voluntarily
- One transitional carve-out survives: **generative AI systems already on the market before 2 August have until 2 December 2026** to meet the Article 50(2) marking and detection obligation. New systems are bound in full now
- The compliance path is published and final: the **European Commission's Article 50 guidelines landed 20 July 2026**, and the **Code of Practice on Transparency of AI-generated Content** (published 10 June, assessed adequate by the Commission on 8 July) had about 190 signatories by the end of July
- Enforcement sits with **national market surveillance authorities**, with fines up to **EUR 15 million or 3% of worldwide annual turnover, whichever is higher**, under Article 99(4)
- The inventory Article 50 forces, every system that talks to people or generates content, is the **same foundational register the deferred 2027 high-risk work requires**. Compliance work done now is not throwaway

<StatGrid>
  <Stat value="2 Aug 2026" label="Article 50 transparency obligations apply, to in-scope systems regardless of when they were placed on the market and regardless of high-risk status" source="European Commission, Article 50 transparency guidelines, 20 July 2026" />
  <Stat value="2 Dec 2026" label="Deadline for the machine-readable marking and detection duty for generative AI systems already on the market before 2 August 2026" source="Regulation (EU) 2026/1744 (Digital Omnibus on AI)" />
  <Stat value="€15M / 3%" label="Maximum fine for breaching the Article 50 transparency obligations: EUR 15 million or 3% of total worldwide annual turnover, whichever is higher" source="Regulation (EU) 2024/1689, Article 99(4)" />
</StatGrid>

## What Took Effect on 2 August

Article 50 splits its duties between the organizations that build AI systems and the organizations that use them, and the split matters operationally because different teams own the fix.

**Providers of systems that interact directly with people** must design them so that the people concerned are informed they are interacting with an AI system, unless that is obvious "from the point of view of a natural person who is reasonably well-informed, observant and circumspect." That covers chatbots, voice assistants, and the growing population of AI agents that handle customer conversations end to end. The obviousness exception is a judgment call made in context, not a blanket pass: what is obvious in a labelled AI assistant embedded in a developer tool is not obvious in a natural-sounding voice agent answering a support line.

**Providers of generative AI systems, including general-purpose AI**, must ensure that synthetic audio, image, video, and text outputs are marked in a machine-readable format and detectable as artificially generated. This is a technical obligation that lives in the output pipeline: watermarking, metadata, provenance signals. Purely assistive uses, such as systems that do not substantially alter the input or its meaning, sit outside it.

**Deployers of emotion recognition or biometric categorisation systems** must inform the people exposed to them. In workplace and education settings the question is mostly not disclosure but prohibition, since emotion recognition there sits in the Article 5 prohibited-practices list.

**Deployers of deepfakes and of AI-generated public-interest text** must disclose that the content is artificially generated or manipulated. Two calibrated exceptions apply: evidently artistic, creative, satirical, or fictional work needs only a disclosure that does not hamper its display or enjoyment, and AI-generated text published to inform the public escapes the duty where it has undergone human review or editorial control and a natural or legal person holds editorial responsibility. Systems authorised by law for detecting, preventing, investigating, or prosecuting criminal offences carry their own carve-outs across the article.

## Legacy Systems Are In. Legacy Content Is Not.

Two scope rules decide most of the questions organizations are now asking, and they cut in opposite directions.

The first is that Article 50 applies to in-scope systems **regardless of when they were placed on the market**. There is no grandfathering for the chatbot launched in 2023. If it interacts with people today, the disclosure duty attached on 2 August.

The second is that **content generated before 2 August 2026 does not need to be labelled retroactively**. The obligation runs forward from the date. The European Commission encourages voluntary labelling of older material where feasible, but the legal duty covers what your systems produce from now on.

Between those two rules sits the one transitional carve-out that survived into the final timeline, and it is worth stating precisely because it is routinely overread. **Generative AI systems already on the market before 2 August 2026 have until 2 December 2026 to meet the Article 50(2) marking and detection obligation.** That is the whole carve-out. It covers one duty, marking and detectability, for one population, systems that predate the deadline. The interaction disclosures, the emotion recognition information duties, and the deepfake and public-interest text disclosures all applied to those same legacy systems on 2 August. And a generative system placed on the market from 2 August onward gets no grace at all.

The December date deserves a double diary entry in any case: 2 December 2026 is also the day the Digital Omnibus's new prohibitions on nudifier and CSAM-generating systems take effect.

## The Compliance Path Was Published Before the Deadline

An organization starting late has one genuine advantage: the guidance it needs is not in draft anymore.

On 10 June 2026 the Commission published the **Code of Practice on Transparency of AI-generated Content**, a voluntary instrument aimed at the marking, deepfake, and labelling duties. On 8 July the Commission concluded that the Code adequately covers the obligations in Articles 50(2), (4) and (5) and facilitates their effective implementation, with the AI Board's endorsement following on 9 July. And on 20 July, thirteen days before the deadline, the Commission published the final version of its **guidelines on the Article 50 transparency obligations**, developed with input from Member States, the AI Board, and other stakeholders through a public consultation. Neither document is a draft awaiting adoption; the interpretive groundwork enterprises spent 2025 waiting for is on the table.

The Code is gathering weight quickly. By the end of July 2026, about 190 organisations across sectors had signed it, per the European Commission, which describes signing as a streamlined and legally certain pathway to demonstrate compliance and has announced two signatory task forces for September 2026. The honest caveat travels with it: adherence is voluntary, an organisation can meet the obligations by other adequate means, and, as client guidance from law firm Faegre Drinker underlines, the Commission and the AI Board have each said that adherence serves as a guiding reference for demonstrating compliance and does not by itself discharge the statutory duty. Signing the Code is a sensible default for a content-generating estate; it is not a substitute for actually marking the outputs.

## The Cost of Standing Down

The Digital Omnibus on AI entered into force on 27 July 2026 as Regulation (EU) 2026/1744, and the relief it granted is real: the heavy high-risk machinery now lands on 2 December 2027 for stand-alone Annex III systems and 2 August 2028 for AI embedded in Annex I regulated products. We argued in July that the right response was to spend the extra time on classification, the foundational work [the EU's draft high-risk guidelines](/insights/eu-ai-act-draft-guidelines-high-risk-classification) exist to support, not to shelve the program.

What the stand-down misses is that Article 50 was never part of the bargain. It attaches by what a system does, not by what risk class it falls into, and for a typical enterprise estate that is a wider population of systems than the high-risk regime was ever likely to touch. A company with no Annex III exposure at all can still be running a dozen in-scope systems: the support chatbot, the sales voice agent, the marketing image pipeline, the internal comms drafting tool whose output goes out under the company's name.

Enforcement is now live to match. Member States lay down the penalty rules, national market surveillance authorities hold primary responsibility, and the AI Office takes a narrower slice for systems built on general-purpose AI models meeting specific conditions. The ceiling under Article 99(4), which names the Article 50 obligations expressly, is EUR 15 million or 3% of total worldwide annual turnover, whichever is higher. How assertive the first months of enforcement will be is genuinely unknown, and early attention may well concentrate on visible consumer-facing failures rather than technical marking gaps. But that is a bet about enforcement posture, not about legal exposure, and the exposure attached on 2 August.

## What This Changes for the Executive Team

Four moves follow, in order.

**Inventory by function, this month.** List every system that interacts with people, every pipeline that emits synthetic audio, image, video, or text, and every emotion recognition or biometric categorisation deployment, including the tools adopted without central approval. This is a faster exercise than full AI Act scoping because function is observable: you do not need to resolve Annex III interpretation questions to know that a chatbot talks to customers.

**Treat disclosure and marking as product work, not legal boilerplate.** The interaction disclosure is a UX decision governed by an obviousness test that depends on context, and the marking duty is an engineering task in the content pipeline. A compliance memo satisfies neither. The teams that own the chatbot and the generation pipeline own the fix, with legal review on the judgment calls.

**Put 2 December 2026 in the diary twice.** It is the marking and detection deadline for generative systems you were already running before 2 August, and it is the effective date of the new prohibitions the Omnibus added. Decide before then whether the organisation signs the Code of Practice or documents its alternative means, and verify the legacy systems' marking work is scheduled rather than assumed.

**Reuse the register.** The function-based inventory Article 50 forces is the starting asset for the Annex III classification work due by December 2027, and it feeds the same evidence base that shapes exposure across NIS2, DORA, and the Cyber Resilience Act, the cross-framework picture we mapped in [Five Frameworks, One Vendor](/insights/four-frameworks-one-vendor-eu-regulatory-exposure). Work done for the deadline that arrived is capital for the deadlines that moved.

## How Innovaiden Approaches It

Innovaiden approaches Article 50 as the live edge of a larger program rather than a stand-alone labelling exercise. The work starts with the function-based inventory: which systems interact, which generate, which categorise, and what each one must now disclose or mark. It reviews disclosure UX against the obviousness test and output marking against the machine-readable requirement, settles the Code of Practice question deliberately, and puts the 2 December 2026 legacy-marking deadline on an owned plan. And it treats the resulting register as infrastructure for the deferred 2027 classification work, because the gap between stated commitments and demonstrable controls is where regulatory exposure actually lives, the argument we made in [From AI Principles to Proof of Control](/insights/ai-principles-proof-of-control). The organizations in the best position on 2 December will be the ones that treated this August as the start of the program, not a false alarm.

## Sources

1. [European Commission — Guidelines on transparency obligations for providers and deployers of AI systems](https://digital-strategy.ec.europa.eu/en/library/guidelines-transparency-obligations-providers-and-deployers-ai-systems). Published 20 July 2026.
2. [European Commission — Transparency obligations under Article 50 of the AI Act (FAQ)](https://digital-strategy.ec.europa.eu/en/faqs/transparency-obligations-under-article-50-ai-act). 2026.
3. [European Commission — Strong backing for the Code of Practice on Transparency of AI-generated Content](https://digital-strategy.ec.europa.eu/en/news/strong-backing-code-practice-transparency-ai-generated-content). 31 July 2026.
4. [European Commission — Commission opinion on the assessment of the Code of Practice on Transparency of AI-generated Content](https://digital-strategy.ec.europa.eu/en/library/commission-opinion-assessment-code-practice-transparency-ai-generated-content). 9 July 2026.
5. [Cooley — EU AI Act: Transparency Obligations Take Effect 2 August 2026](https://www.cooley.com/news/insight/2026/2026-08-03-eu-ai-act-transparency-obligations-take-effect-2-august-2026). 3 August 2026.
6. [Faegre Drinker — EU AI Act: Commission Confirms Transparency Code of Practice as Adequate and Publishes Final Version of Its Guidelines on Transparency Obligations](https://www.faegredrinker.com/en/insights/publications/2026/7/eu-ai-act-commission-confirms-transparency-code-of-practice-as-adequate-and-publishes-final-version-of-its-guidelines-on-transparency-obligations). 30 July 2026.
7. [Alston & Bird — European Commission Publishes New Guidelines and Code of Practice on GenAI Transparency](https://www.alstonprivacy.com/european-commission-publishes-new-guidelines-and-code-of-practice-on-genai-transparency/). 24 July 2026.
8. [Future of Life Institute — The EU AI Act's Transparency Rules: A Practical Guide to Article 50 (artificialintelligenceact.eu)](https://artificialintelligenceact.eu/transparency-rules-article-50/). 2026.
9. [Regulation (EU) 2024/1689 (EU AI Act), Articles 50 and 99](https://eur-lex.europa.eu/eli/reg/2024/1689/oj/eng). 2024.
10. [Regulation (EU) 2026/1744 (Digital Omnibus on AI) — deferral of high-risk obligations](https://eur-lex.europa.eu/eli/reg/2026/1744/oj/eng). In force 27 July 2026.


---

# Brussels Stopped Treating AI Governance and Cyber Compliance as Two Programs

Author: Dritan Saliovski · Published: 2026-07-15 · Category: Regulatory Compliance · Reading time: 10 min read · Canonical: https://www.innovaiden.com/insights/eu-cybersecurity-ai-action-plan-nis2-enforcement

> On 7 July the Commission published its Cybersecurity and AI Action Plan. On 8 July it asked the Court to fine four member states over NIS2. Read together, they set the direction.
Two documents landed in Brussels one day apart in July 2026, and neither made much noise outside the specialist press. On 7 July the European Commission presented its Action Plan on Cybersecurity and Artificial Intelligence. On 8 July it referred Ireland, Spain, France and the Netherlands to the Court of Justice for failing to transpose NIS2, and asked the Court to fine them until they do. Read separately, one is a policy communication and the other is a procedural step in a long-running infringement case. Read together, they are the clearest statement yet of where European regulation of AI and cybersecurity is heading: toward a single supervisory picture, enforced by authorities that the Commission is now willing to penalise its own member states to bring into existence.

For organizations with an EU footprint, and for the investors who own them, the useful reading is not the plan's list of initiatives. It is the assumption underneath it, which the Commission states directly: the existing instruments are meant to operate as one framework. An AI governance program built in isolation from cyber compliance is not merely inefficient under that assumption. It is answering a question the supervisor is no longer asking in that form.

## Key Takeaways

- The **Action Plan on Cybersecurity and AI**, COM(2026) 577, was presented on **7 July 2026**. It complements and coordinates the AI Act, NIS2, DORA, the CRA and the Cyber Solidarity Act rather than creating a new regime
- **It is not law.** A Commission communication creates no obligations and has no compliance deadline. Its value is as a signal of supervisory direction, and it should be sold to your board as exactly that, nothing more
- On **8 July 2026** the Commission referred **Ireland, Spain, France and the Netherlands** to the CJEU over NIS2 transposition, requesting a **lump sum plus daily penalties**. The deadline they missed was **17 October 2024**
- On **2 August 2026** the Commission's enforcement powers over **general-purpose AI providers** become applicable, with fines up to **3% of annual total worldwide turnover or 15 million euro** under Article 101. The obligations have applied since August 2025; what ends is the grace period
- The cost of running AI governance and cyber compliance separately is now concrete: **duplicate vendor assessments, duplicate evidence, and an uncovered gap** where AI systems sit inside essential services
- The planning assumption for late-transposing states should be a **shorter runway**, not a longer one, once national regimes complete under penalty pressure

<StatGrid>
  <Stat value="7 July 2026" label="Commission presents the Action Plan on Cybersecurity and AI, COM(2026) 577, coordinating five existing frameworks" source="European Commission, IP/26/1544" />
  <Stat value="4 member states" label="Ireland, Spain, France and the Netherlands referred to the CJEU over NIS2 transposition, with financial sanctions requested" source="European Commission, 8 July 2026, IP/26/1499" />
  <Stat value="17 Oct 2024" label="The NIS2 transposition deadline the four referred member states missed, now 20 months past" source="Directive (EU) 2022/2555" />
  <Stat value="3% / €15M" label="Maximum fine for general-purpose AI providers once Commission enforcement powers apply from 2 August 2026" source="EU AI Act, Article 101" />
</StatGrid>

## What the Action Plan Actually Says

The Action Plan starts from a premise worth quoting in substance because it is unusually balanced for a document of this type: frontier AI models bring increased capabilities to strengthen preparedness and improve threat detection and response, and AI has already become a defining element of the threat landscape, enabling more automated, scalable and sophisticated offensive operations. The Commission is not writing an AI-is-dangerous document or an AI-will-save-us document. It is writing a both-at-once document, which is the correct posture and a reasonable sign that the drafting was informed by people who have looked at the evidence.

Three objectives structure it: promoting the safe use of advanced AI, strengthening EU cyber resilience, and expanding European AI capabilities for cybersecurity. The concrete measures follow from the third more than the first two. An EU model-evaluation capacity. An ENISA access blueprint. A secure testing platform, expected by the end of 2026, so organizations in energy, transport, health, finance and public administration can test and deploy AI solutions safely. A Critical Open Source Resilience Campaign. Funding attached to AI and cybersecurity projects.

The sentence that matters for planning purposes is the one about scope. The plan complements the EU's existing legal framework for AI and cybersecurity, including the AI Act, the Cyber Resilience Act, the NIS2 Directive, DORA and the Cyber Solidarity Act. It coordinates; it does not add. This is the difference between a document that generates a compliance workstream and a document that tells you how your existing workstreams are expected to relate to each other. Anyone presenting this plan to your board as a new obligation with a deadline has misread it, and that misreading is worth catching before it consumes a quarter of someone's budget.

## The Enforcement Signal Sitting Next to It

The Action Plan on its own would be a directional document with no teeth. What gives the week its weight is what happened the following day.

On 8 July the Commission referred four member states to the Court of Justice for failing to notify measures transposing NIS2. The directive lays down standards for protecting network and information systems across 18 critical sectors, notably health, energy, transport and the public sector. The transposition deadline was 17 October 2024. The Commission sent letters of formal notice on 28 November 2024, followed by reasoned opinions on 7 May 2025, and has now asked the Court to impose a lump sum and ongoing daily penalties on all four until each formally notifies full transposition.

The referred states are not marginal jurisdictions. Ireland, France, the Netherlands and Spain host a substantial share of the EU's data centre capacity, cloud regions, pharmaceutical manufacturing and financial infrastructure, along with a large proportion of the European holdings of international investors. The Commission's willingness to seek financial penalties against exactly these four is the substantive news of the week, and it is what converts the Action Plan from aspiration into direction of travel.

<InsightFigure src="/insights/eu-ai-cyber-convergence.svg" alt="Diagram showing two events in July 2026 converging on a single outcome. On the left, 7 July 2026: the Action Plan on Cybersecurity and AI, COM(2026) 577, drawn as a coordinating layer across five existing instruments, the AI Act, NIS2, DORA, the Cyber Resilience Act and the Cyber Solidarity Act, with the note that it complements rather than replaces them and creates no new obligations. On the right, 8 July 2026: referrals of Ireland, Spain, France and the Netherlands to the Court of Justice over NIS2 transposition, with a lump sum plus daily penalties requested, against a transposition deadline of 17 October 2024. The two arrows meet at a single conclusion on the right: coordinated supervision, backed by enforcement pressure, arriving in the member states that were slowest to build it." caption="One week, two documents. The Action Plan states that the frameworks are meant to be read together; the referrals show the Commission spending political capital to make sure the authorities that read them actually exist." />

There is a second-order effect here that operators consistently underestimate. A late transposition is not a reprieve. Organizations in a slow member state have been living with an unsettled regime, obligations visible in outline, supervisory practice not yet built, enforcement not yet staffed. When that regime completes under penalty pressure, the authority does not arrive tentatively. It arrives with its powers defined and a strong institutional incentive to demonstrate that the delay has ended. The reasonable planning assumption is compression: the interval between the national law landing and the supervisor exercising it will be shorter in the late states than it was in the early ones.

## Why the Convergence Is a Practical Problem, Not a Conceptual One

It is easy to nod along with the idea that AI governance and cyber compliance belong together, and then to do nothing about it, because the statement sounds like a principle rather than a work item. It is worth being specific about what the separation actually costs.

Consider a single deployment: an AI system embedded in an operational process at an entity in scope for NIS2, supplied by a third-party vendor, running on a cloud platform, at a company owned by a financial sponsor.

| Framework | What it asks about this deployment | Who usually owns the answer |
|---|---|---|
| AI Act | What is this system's classification, and are you provider or deployer? Do the Article 50 transparency duties apply from 2 August 2026? | AI governance / legal |
| NIS2 | Is the operating entity essential or important? Are risk management measures adequate, and has supply chain due diligence been done on the vendor? Would an incident here be reportable? | CISO / cyber compliance |
| DORA | If the entity is financial, is this a supported critical function, and does the contract meet the third-party requirements? | Operational resilience |
| CRA | Does the system ship as a product with digital elements, and does it meet security-by-design and reporting duties? | Product security |
| Cyber Solidarity Act | Does this sit in a sector covered by EU-level preparedness and response mechanisms? | Rarely owned at all |

Five questions, one deployment, and in most organizations at least three different owners who do not share a system of record. The result is not a heroic failure. It is a quiet, expensive mess: the same vendor assessed twice against different criteria; the same evidence produced twice in different formats for different auditors; and, in the gap between the programs, the exposure that only becomes visible when the frameworks are read together, which is precisely the exposure the Commission has now said it intends to supervise as a whole. We made this argument about vendor risk specifically in [five frameworks, one vendor](/insights/four-frameworks-one-vendor-eu-regulatory-exposure), and the July documents are the clearest official endorsement of it so far.

The fix is not a reorganization, which is the instinct and usually the wrong one. It is a single register of systems and vendors that each framework queries, so that the mapping work is done once and each regime draws from it. That is unglamorous and considerably cheaper than the alternative.

## What This Means for Deal Teams

For investors, the July week changes the shape of a diligence question that has been getting asked badly.

The common version asks whether a target is NIS2 compliant, gets a yes backed by a policy document, and moves on. That question was always weak, and in the four referred states it is now close to meaningless, because in those jurisdictions the national regime is still being finalised under judicial pressure. A target cannot be compliant with a transposition that has not been notified, and a management team claiming otherwise is telling you something about its rigour rather than its posture.

The better questions are about readiness against a compressed runway. Which entities in the target group fall in scope, in which member states, and what is the transposition status in each? If the AI systems in the operating stack sit inside an in-scope entity, who is treating them as both an AI Act matter and a NIS2 matter, and can they show a single inventory that supports both? Where the target is a supplier to essential entities, what does its customers' supply chain due diligence require of it contractually, and can it meet that today? This is the same posture we set out for the Cyber Resilience Act in [what deal teams should ask about the CRA](/insights/cyber-resilience-act-ma-due-diligence-deal-teams), applied to a regime whose enforcement is arriving faster than most models assume.

For sponsors with portfolio companies in Ireland, France, the Netherlands or Spain, there is a straightforward action this quarter: identify which holdings are in scope, and get a real answer on their readiness before the national regimes settle. The value at risk is not a fine in the first instance. It is the remediation cost and the delay that a supervisory finding introduces into an exit process, at a moment nobody chooses.

## The Honest Limits of a Policy Document

Two cautions, because the market will overstate this.

An action plan is not a regulation. Nothing in COM(2026) 577 obliges anyone to do anything, and there is no date by which to have done it. The measures it announces, the model-evaluation capacity, the ENISA blueprint, the secure testing platform, are commitments the Commission has made to itself, and EU capability-building commitments have a mixed delivery record. Judge them on arrival.

And the AI Act milestone that genuinely lands on 2 August 2026 is narrower than the coverage suggests. The Commission's enforcement powers over general-purpose AI providers become applicable, with fines up to 3% of annual total worldwide turnover or 15 million euro under Article 101, and the Article 50 transparency obligations become enforceable. The GPAI obligations themselves have applied since 2 August 2025; what ends is the grace period on enforcement. The high-risk regime, the part most organizations were actually building toward, is the part that moved, deferred by the Digital Omnibus into December 2027 and August 2028 depending on category. We covered that reshuffle in detail in [the August 2 deadline just moved](/insights/eu-ai-act-august-deadline-moved-digital-omnibus), and nothing in the July documents changes it.

The signal is real; the urgency should be placed accurately. What changed in July is not a new obligation. It is the confirmation that the supervisor intends to look at AI risk and cyber risk through one lens, and the demonstration that it will spend real political capital to make sure someone is holding that lens in every member state.

## How Innovaiden Approaches It

The starting point is a single register rather than a new program. Innovaiden's cross-framework exposure review builds one inventory of the systems, vendors and entities in your EU footprint, then maps each framework's questions onto it: what the AI Act asks, what NIS2 asks, what DORA and the CRA ask, and where the answers conflict or go missing. The output is a map of duplicate work you can stop doing, gaps no current owner is accountable for, and a jurisdiction-by-jurisdiction view of where transposition status makes your runway shorter than your plan assumes. For sponsors, the same review runs across a portfolio, so the question of which holdings carry real regulatory exposure in the four referred states gets answered with evidence rather than with a questionnaire.

## Sources

1. [European Commission — Commission presents EU Action Plan on Cybersecurity and Artificial Intelligence](https://ec.europa.eu/commission/presscorner/detail/en/ip_26_1544). 7 July 2026.
2. [EUR-Lex — Action Plan on Cybersecurity and Artificial Intelligence, COM(2026) 577](https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX%3A52026DC0577). 7 July 2026.
3. [European Commission — Factsheet: Action Plan on Cybersecurity and Artificial Intelligence](https://ec.europa.eu/commission/presscorner/detail/en/fs_26_1555). July 2026.
4. [European Commission — Commission refers Ireland, Spain, France and the Netherlands to the Court of Justice for failing to transpose the rules on cybersecurity](https://ec.europa.eu/commission/presscorner/detail/en/ip_26_1499). 8 July 2026.
5. [The Record — EU takes member states to court over unimplemented cybersecurity law](https://therecord.media/eu-cyber-filing-ireland-spain-france-netherlands-nis2). July 2026.
6. [European Commission — EU Action Plan on Cybersecurity and Artificial Intelligence (library entry)](https://digital-strategy.ec.europa.eu/en/library/eu-action-plan-cybersecurity-and-artificial-intelligence). July 2026.
7. [European Commission — Commission presents EU Action Plan on Cybersecurity and Artificial Intelligence (Shaping Europe's digital future)](https://digital-strategy.ec.europa.eu/en/news/commission-presents-eu-action-plan-cybersecurity-and-artificial-intelligence). 7 July 2026.
8. [European Commission — Commission refers Ireland, Spain, France and the Netherlands to the Court of Justice (Shaping Europe's digital future)](https://digital-strategy.ec.europa.eu/en/news/commission-refers-ireland-spain-france-and-netherlands-court-justice-failing-transpose-rules). 8 July 2026.
9. [EU Artificial Intelligence Act — Enforcement of the Chapter V obligations on GPAI providers](https://artificialintelligenceact.eu/enforcement-of-chapter-v-under-the-eu-ai-act/). 2026. The GPAI obligations sit in Chapter V and have applied since August 2025; the penalty power exercised from 2 August 2026 is Article 101, which sits in Chapter XII.
10. [EU Artificial Intelligence Act — Article 99: Penalties](https://artificialintelligenceact.eu/article/99/). 2026.
11. [Directive (EU) 2022/2555 (NIS2)](https://eur-lex.europa.eu/eli/dir/2022/2555/oj). Transposition deadline 17 October 2024.


---

# The EU AI Act's August 2 High-Risk Deadline Just Moved. Here Is What Actually Comes Due.

Author: Dritan Saliovski · Published: 2026-07-01 · Category: Regulatory Compliance · Reading time: 10 min read · Canonical: https://www.innovaiden.com/insights/eu-ai-act-august-deadline-moved-digital-omnibus

> The Digital Omnibus (final Council approval June 29) defers the AI Act's high-risk obligations to 2027 and 2028. But August 2 is not cancelled: transparency rules still land.
For most of the past year, 2 August 2026 was the date that organized enterprise AI compliance planning. It was the day the EU AI Act's obligations for high-risk systems were scheduled to take effect, and it drove a great deal of budget, roadmap, and board attention. As of last week, that date has moved. On 29 June 2026, the Council of the EU gave final approval to the Digital Omnibus on AI, the first substantive amendment to the AI Act since its 2024 adoption, and the high-risk obligations that anchored everyone's planning are now deferred to 2027 and 2028.

The temptation is to read this as a reprieve and stand down. That reading is wrong on the facts and wrong on the strategy. It is wrong on the facts because 2 August 2026 is not cancelled: the Article 50 transparency obligations were not deferred, and they still take effect on schedule. It is wrong on the strategy because the deferral extends the deadline for the single task most organizations have not finished and cannot skip, working out which of their AI systems are in scope and which are high-risk. The deferral is relief on the hardest obligations. It is not a reason to stop the work; it is time to do it properly.

## Key Takeaways

- On **29 June 2026** the Council gave final approval to the **Digital Omnibus on AI** (Parliament endorsed 16 June; provisional agreement 7 May), the first amendment to the AI Act since 2024
- **High-risk obligations are deferred**: stand-alone Annex III systems to **2 December 2027**; AI embedded in Annex I regulated products to **2 August 2028**
- **2 August 2026 is not cancelled.** The **Article 50 transparency obligations** (disclosing AI-generated content, informing people they are interacting with AI) still take effect on schedule. One narrow carve-out: **Article 50(2) machine-readable marking** of AI-generated content is deferred to **2 December 2026** for systems already on the market before 2 August
- The Omnibus also **expanded prohibited practices**: new prohibitions on nudifier and CSAM-generating AI, effective **2 December 2026**
- **Penalties are unchanged**: up to €35M or 7% of global turnover for prohibited practices; up to €15M or 3% for other obligations, including high-risk and transparency
- The deferral is **relief, not reprieve**. The extended time should go to the foundational task, determining which AI systems are in scope and high-risk, which every later obligation depends on and which most organizations have not completed

<StatGrid>
  <Stat value="2 Aug 2026" label="Article 50 transparency obligations take effect on schedule; only Article 50(2) machine-readable marking is deferred to 2 Dec 2026, and only for systems already on the market" source="EU AI Act, as amended" />
  <Stat value="2 Dec 2027" label="New deferred deadline for high-risk obligations on stand-alone Annex III systems" source="Digital Omnibus, Council approval 29 June 2026" />
  <Stat value="€35M / 7%" label="Maximum fine for prohibited practices; other obligations, incl. high-risk and transparency, carry up to €15M or 3%" source="Regulation (EU) 2024/1689, Article 99" />
</StatGrid>

## What Moved, and What Did Not

The Digital Omnibus is a simplification package, negotiated to relieve timeline pressure that industry and several Member States argued was unrealistic given the state of harmonized standards and guidance. It reached provisional agreement on 7 May 2026, was formally endorsed by the European Parliament on 16 June, and received the Council's final green light on 29 June. Publication in the Official Journal is expected in July, with entry into force shortly after.

The substance that matters for planning is a clean split. The high-risk obligations, the heavy compliance machinery of risk management, data governance, technical documentation, human oversight, and conformity assessment, are deferred on two tracks: stand-alone high-risk systems under Annex III move to 2 December 2027, and AI embedded in products already regulated under Annex I product-safety law move to 2 August 2028. This is genuine relief, because the high-risk regime is where the real work and cost concentrate.

What did not move is as important as what did. The Article 50 transparency obligations remain effective 2 August 2026. Any AI system that interacts with people or generates or manipulates content carries a near-term disclosure duty on the original schedule, regardless of whether it is high-risk.

There is one carve-out inside that, and it matters for planning even though it is narrow. The **Article 50(2) obligation to mark AI-generated content in a machine-readable format is deferred by four months, to 2 December 2026, for systems already placed on the market before 2 August 2026.** So the disclosure duties land in August as scheduled, but an existing deployed system gets until December to implement machine-readable marking specifically. New systems placed on the market from 2 August get no such grace. If your August compliance plan treats all of Article 50 as a single cliff, it is slightly overstated in one direction for legacy systems and correct for everything else, and the December date is worth putting in the same diary entry as the new prohibition below.

And the Omnibus expanded the prohibited-practices list rather than only relaxing obligations, adding prohibitions on AI used to generate non-consensual intimate imagery and child sexual abuse material, effective 2 December 2026. An organization that reads "high-risk deferred" as "AI Act paused" will miss both a live August obligation and a new December prohibition. For the classification rules the high-risk determination turns on, see [the EU's draft guidelines on high-risk classification](/insights/eu-ai-act-draft-guidelines-high-risk-classification).

## Why the Deferral Is Relief, Not Reprieve

The strategic error the deferral invites is to treat extra time as permission to defer the work. The opposite is true, because the task the extra time most helps with is the one that gates everything else and that almost no one has finished: knowing which AI systems you operate, and which of them are high-risk.

Every high-risk obligation, whenever it lands, presupposes that the organization can answer that question. Risk management, documentation, human oversight, and conformity assessment are all obligations attached to systems classified as high-risk, and none of them can be built until the classification exists. In our experience, the classification work, not the controls, is where organizations are furthest behind, because it requires an accurate inventory of AI systems (including the ones adopted without approval), a mapping of each against the Annex III categories and the exemptions, and a defensible written determination for each. That is months of work for a real estate, and it is exactly what the December 2027 and August 2028 dates now give room to do properly rather than in a panic.

This is the same pattern we have flagged across the EU regulatory wave: the binding constraint is rarely the controls and almost always the evidence. It was the argument in the Cyber Resilience Act context, where the gap is proof rather than capability, covered in [the CRA's first obligation gate and what readiness requires](/insights/cyber-resilience-act-readiness-smaller-product-companies), and it holds here. The deferral is worth precisely as much as the classification work an organization does with it.

## The Cross-Framework View

The Digital Omnibus is one piece of a wider EU simplification effort, and reading it in isolation understates its significance. The same effort consolidated incident reporting toward a single entry point, which we covered in [the EU's single entry point and why the operator still needs a crosswalk](/insights/eu-digital-omnibus-single-entry-point-crosswalk). And the AI-system inventory and classification work that the AI Act now gives more time for is the same evidence base that shapes an organization's exposure under NIS2, DORA, the Cyber Resilience Act, and the revised Cybersecurity Act. The mapping across those regimes is in [Five Frameworks, One Vendor](/insights/four-frameworks-one-vendor-eu-regulatory-exposure).

The practical implication is that the deferral should not be filed as an AI Act calendar change and forgotten. The work it frees up time for, a clean inventory of AI systems and a defensible classification of each, is cross-framework infrastructure. Done once and well, it serves the AI Act's 2027 and 2028 deadlines, the August 2026 transparency obligation, and the overlapping demands of the other four regimes at the same time.

## What This Changes for the Executive Team

Three decisions follow from the deferral.

**Do not stand down; re-aim.** The August 2026 board narrative was almost certainly built around the high-risk deadline. It needs updating, not deleting. The near-term obligation is now Article 50 transparency, due 2 August 2026, and the medium-term obligation is high-risk compliance on the new 2027 and 2028 dates. The work continues; its sequence changes.

**Spend the extra time on classification, not on waiting.** The deferral is only valuable if it is used to complete the AI-system inventory and high-risk classification that the later obligations require. An organization that arrives at December 2027 without that work done will have converted eighteen months of relief into the same panic on a later date.

**Treat the inventory as cross-framework infrastructure.** The AI-system inventory and classification is not AI Act overhead; it is the shared evidence base for the AI Act, the CRA, NIS2, DORA, and the revised CSA. Fund it as infrastructure that serves all of them, and the deferral becomes a genuine strategic gift rather than a deferred obligation.

## How Innovaiden Approaches It

Innovaiden helps organizations use the deferral for exactly what it is worth. The work is a scope-and-readiness review that settles the questions the later deadlines will still demand answers to: which AI systems do you operate, which are in scope, which are high-risk under Annex III as amended, and what does a defensible written classification for each look like. It confirms the Article 50 transparency obligations that still land on 2 August 2026 are met, and it builds the classification evidence as cross-framework infrastructure rather than single-regulation overhead. The objective is to reach the 2027 and 2028 deadlines with the foundational work already done, and to have used the relief the Digital Omnibus granted instead of merely receiving it.

## Sources

1. [Council of the EU — Artificial intelligence: Council and Parliament agree to simplify and streamline rules](https://www.consilium.europa.eu/en/press/press-releases/2026/05/07/artificial-intelligence-council-and-parliament-agree-to-simplify-and-streamline-rules/). May 2026.
2. [Gibson Dunn — EU AI Act Omnibus agreement: postponed high-risk deadlines and other key changes](https://www.gibsondunn.com/eu-ai-act-omnibus-agreement-postponed-high-risk-deadlines-and-other-key-changes/). 2026.
3. [Hogan Lovells — EU legislators agree to delay for high-risk AI rules](https://www.hoganlovells.com/en/publications/eu-legislators-agree-to-delay-for-highrisk-ai-rules). 2026.
4. [Latham & Watkins — AI Act update: EU resolves to change rules and extend deadlines](https://www.lw.com/en/insights/ai-act-update-eu-resolves-to-change-rules-and-extend-deadlines). 2026.
5. [Covington (Inside Privacy) — EU AI Act update: timeline relief, targeted simplification, and new prohibitions](https://www.insideprivacy.com/artificial-intelligence/eu-ai-act-update-timeline-relief-targeted-simplification-and-new-prohibitions/). June 2026.
6. [DLA Piper — The Digital AI Omnibus: proposed deferral of high-risk AI obligations under the AI Act](https://knowledge.dlapiper.com/dlapiperknowledge/globalemploymentlatestdevelopments/2026/The-Digital-AI-Omnibus-Proposed-deferral-of-high-risk-AI-obligations-under-the-AI-Act). 2026.
7. [Regulation (EU) 2024/1689 (EU AI Act), Article 99 — penalties](https://eur-lex.europa.eu/eli/reg/2024/1689/oj/eng). 2024.


---

# The Cyber Resilience Act's First Obligation Gate Arrives 11 September. Most Smaller Product Companies Still Cannot Prove They Are Ready.

Author: Dritan Saliovski · Published: 2026-06-13 · Category: Regulatory Compliance · Reading time: 11 min read · Canonical: https://www.innovaiden.com/insights/cyber-resilience-act-readiness-smaller-product-companies

> The CRA has been binding law since December 2024, but its obligations arrive in phases. The conformity-assessment machinery is being stood up now, and the first reporting deadline is 11 September 2026. For most smaller product companies the gap is not capability. It is evidence.
The EU Cyber Resilience Act has been binding law since 10 December 2024. For a long stretch after that, the fact sat quietly on the regulatory horizon while product companies treated December 2027 as the date that mattered. On 11 June 2026 the horizon moved closer: the CRA's provisions on the notification of conformity assessment bodies took effect, and Member States began designating the national authorities that will appoint the bodies responsible for certifying products. The machinery that will eventually judge whether a product conforms is now being built.

The first obligation that lands directly on manufacturers arrives on 11 September 2026. From that date, Article 14 requires that actively exploited vulnerabilities and severe incidents be reported to ENISA and the relevant national CSIRT: an early warning within 24 hours and a notification within 72 hours for both triggers, then a final report within 14 days of a corrective measure for an exploited vulnerability, or within one month of the notification for a severe incident. Full application, which adds CE marking, technical documentation, and the complete set of essential cybersecurity requirements, follows on 11 December 2027.

For boards and executive teams at smaller software and hardware companies, the consequential question is narrower than the headline regulation suggests. It is not whether the CRA is a serious obligation; it is. It is whether the company can yet *prove* it does the things the CRA requires. On the evidence we see across smaller product organizations, most cannot, and not because they lack security capability, but because they have never had to turn that capability into a documented, repeatable, auditable record. That gap is the work, and the window before the September gate is enough to close the first part of it only if the work starts now.

## Key Takeaways

- The CRA (Regulation (EU) 2024/2847) entered into force on **10 December 2024**, but its obligations apply in phases. In force is not the same as in effect
- **11 June 2026**: the conformity-assessment-body provisions took effect and Member States began designating notifying authorities. The certification apparatus is now being stood up; sufficient bodies must be notified across Member States by **11 December 2026**
- **11 September 2026**: Article 14 reporting obligations apply. Early warning within **24h** and notification within **72h** for both triggers; the final report is due at **14 days** (exploited vulnerabilities) or **one month** (severe incidents)
- **11 December 2027**: full application, covering CE marking, technical file, and all Annex I essential requirements. Without conformity, an in-scope product cannot be placed on the EU market
- Scope is broader than most companies assume: SaaS with downloadable agents, embedded software, IoT, industrial tech, developer tools, and security software are all routinely in scope, and Article 3 pulls in the cloud back-ends those products depend on
- The binding constraint for smaller companies is **evidence, not capability**. They patch, they test, they manage components, but cannot show who decided what, when, and why. The CRA requires the proof, not just the activity
- Penalties reach **€15M or 2.5% of global turnover**, but the sharper commercial risk is loss of EU market access from December 2027

<StatGrid>
  <Stat value="11 Sep 2026" label="Article 14 reporting obligations apply: actively exploited vulnerabilities and severe incidents to ENISA and the national CSIRT" source="Regulation (EU) 2024/2847, Article 71" />
  <Stat value="24h / 72h" label="Early warning and notification clocks under Article 14; final report at 14 days (vulnerabilities) or one month (severe incidents)" source="EC: CRA reporting obligations" />
  <Stat value="11 Dec 2027" label="Full application: CE marking and complete technical file required to sell in the EU" source="Regulation (EU) 2024/2847, Article 71" />
  <Stat value="€15M / 2.5%" label="Maximum administrative fine, or share of global annual turnover, whichever is higher" source="Regulation (EU) 2024/2847" />
</StatGrid>

## In Force Is Not the Same as In Effect

The single most common misreading of the CRA is binary: either the company believes it must already comply, or it believes it has until the end of 2027 to think about it. Both are wrong, and the gap between them is where the planning happens.

The regulation became binding law on 10 December 2024. What that started was a transition, not an obligation. The dates that actually impose requirements arrive in sequence, and each one assumes the previous groundwork is in place.

<InsightFigure src="/insights/cra-phased-timeline.svg" alt="Phased timeline of the EU Cyber Resilience Act. 10 December 2024: entry into force. 11 June 2026: conformity-assessment-body notification provisions apply and Member States designate notifying authorities. 11 September 2026: Article 14 reporting obligations apply, with 24-hour early-warning and 72-hour notification clocks, and a final report at 14 days for exploited vulnerabilities or one month for severe incidents. 11 December 2026: sufficient conformity assessment bodies must be notified across Member States. 11 December 2027: full application, CE marking and complete technical file required. A marker shows the present, between the June 2026 and September 2026 dates." caption="Regulation (EU) 2024/2847 applies in phases. The conformity-assessment machinery switched on in June 2026; the first manufacturer obligation lands in September 2026; full application is December 2027." />

The structure matters for an executive deciding where to spend the next two quarters. The September 2026 gate is operational: it requires a vulnerability-handling and incident-reporting process that already works, because a 24-hour early-warning obligation cannot be met by a process invented after the first exploited vulnerability appears. The December 2027 gate is evidentiary and procedural: it requires a technical file, demonstrated conformity to the essential requirements, and CE marking, none of which can be credibly assembled in the final quarter. The conformity-assessment bodies that will support that 2027 gate are being designated now, which is the practical reason not to wait: their capacity is finite, and every in-scope manufacturer in Europe is heading for the same deadline.

## Who Is In Scope, and Does Not Know It

The CRA applies to products with digital elements placed on the EU market. The phrase is deliberately broad, and it captures a large population of companies that do not file themselves under "regulated."

A SaaS product with a downloadable agent or desktop client is in scope. Embedded software in a physical device is in scope. IoT and connected devices, industrial technology, developer tools, and security software are in scope. Article 3 extends the boundary further by treating remote data-processing solutions necessary for the product to function as part of the product, which means the cloud back-end behind an otherwise on-premise tool is pulled in with it.

Two scoping facts catch companies off guard. The first is that the real scope is usually wider than the initial estimate, because a product is rarely just the code the company wrote: it bundles third-party libraries, an update mechanism, device integrations, and components the customer deploys. The second is that the obligations differ by role. A company may be a manufacturer for one product, a distributor or importer for another, and an open-source steward for a third, and the CRA assigns different duties to each. A company that cannot state, product by product, which role it occupies and which provision applies has not yet completed the first step of readiness.

This is also why the CRA does not stand alone. The same product evidence, from the component inventory to the vulnerability-handling records to the secure-by-default configuration, feeds directly into the obligations a company carries under NIS2, DORA, the revised Cybersecurity Act, and the EU AI Act. The cross-framework exposure is real, and building the CRA evidence base once, deliberately, is what keeps it from being rebuilt five times. We mapped that overlap in [Five Frameworks, One Vendor: how NIS2, DORA, CRA, the revised CSA, and the EU AI Act create cross-framework exposure](/insights/four-frameworks-one-vendor-eu-regulatory-exposure).

## The Gap Is Evidence, Not Capability

Most product companies already do a meaningful amount of security work. They have multi-factor authentication, endpoint protection, backups, access reviews, and an incident-response channel. Their engineers patch vulnerabilities, assess open-source components, and run security tests. None of that is in question.

What the CRA requires is different in kind. It is product security, demonstrated. The questions it asks are not "do you do security" but "can you prove how":

- Does the product ship without known exploitable vulnerabilities, and can you show the check?
- Are secure settings the default, by design and on the record?
- Can the product receive security updates, and are they provided free for the support period?
- Do you have a complete inventory of the components and dependencies inside the product?
- Do you operate a coordinated vulnerability disclosure process with a documented intake channel?
- Can you assess, triage, fix, and communicate a vulnerability, with the decisions recorded?
- Can you produce technical documentation showing how cybersecurity risk was considered across the product's design?

The recurring failure mode is not absence of activity. It is absence of proof. A company says, with justification, "we already manage vulnerabilities," and then cannot show who assigned the severity and on what basis, when the fix shipped, which customers were notified, whether exploitation was assessed, or whether a reporting obligation was even considered. The activity happened. The evidence trail that an auditor or a conformity assessment body will ask for did not. CRA readiness is the discipline of turning existing security work into a reliable, repeatable, evidence-based process. That is a documentation and governance problem far more often than it is an engineering one.

## The Two Areas That Carry the Most Weight

For a smaller organization, the highest-value starting point is not a deep technical audit. It is a practical baseline across two areas, because between them they cover the structure and the operational credibility the CRA demands.

<InsightFigure src="/insights/cra-two-tier-baseline.svg" alt="Two-tier CRA readiness baseline. Tier one, Governance, Risk and Compliance, answers: who owns CRA readiness, which products are in scope, which provisions apply, what evidence exists, what risk is accepted, what must be remediated. Tier two, Vulnerability Management, answers: how the company finds, receives, assesses, prioritizes, fixes, discloses, and reports vulnerabilities. The two tiers sit beneath the CRA Annex I requirements, with Part I security properties resting on GRC and Part II vulnerability-handling processes resting on vulnerability management." caption="GRC gives structure; vulnerability management gives operational credibility. Together they map onto the two parts of CRA Annex I: the product security properties and the vulnerability-handling processes." />

**Governance, risk and compliance** gives the structure. It answers who owns CRA readiness, which products are in scope, which obligations apply, what evidence already exists, what risk the company is accepting, and what has to be fixed. This is not a heavyweight policy exercise; it is structured clarity on the baseline. Product security cannot sit only with engineering, or only with legal, or only with compliance. It needs a cross-functional owner with explicit responsibility for product risk, vulnerability handling, customer communication, and the evidence trail.

**Vulnerability management** gives the operational credibility. It answers how the company finds, receives, assesses, prioritizes, fixes, discloses, and reports vulnerabilities, repeatably and on the record. This is precisely the area the September 2026 reporting gate depends on, and it is the area where smaller companies most often operate informally. The CRA makes informality risky, because Article 14's clock cannot be met by a process that exists only in people's heads.

These two areas are not arbitrary. They map onto the two parts of the CRA's Annex I. Part I describes the security properties a product must have: secure by default, integrity, confidentiality, availability, a minimized attack surface, the ability to receive updates. Part II describes the vulnerability-handling processes the manufacturer must operate: a software bill of materials, remediation, coordinated disclosure, a reporting channel, free security updates. GRC underwrites the first; vulnerability management underwrites the second. A company that cannot explain its product scope, its security responsibilities, its vulnerability-handling process, and its documentation model will struggle under scrutiny regardless of how strong its engineering team is.

## What Readiness Looks Like in Practice

A practical readiness program for a smaller organization moves through a predictable sequence, and none of the steps require a large up-front project.

It begins with **product scoping**: identifying which products, modules, firmware, cloud-connected elements, agents, APIs, and bundled tools fall under CRA obligations, and confirming the answer rather than assuming it. **Role mapping** follows, because manufacturer, importer, distributor, and open-source steward carry different duties. **Governance** comes next: a named owner and a cross-functional model, so that product risk, vulnerability handling, customer communication, and evidence are someone's explicit responsibility rather than everyone's assumption.

**Vulnerability management** is then formalized end to end, across intake, triage, severity scoring, exploitation assessment, remediation tracking, patch release, customer notification, and reporting readiness, so that the September 2026 obligation can actually be met. **Technical documentation** is built and, critically, maintained as the product evolves: the product description, intended use, cybersecurity risk assessment, design controls, dependencies, update mechanism, and evidence of security testing. **Supplier and dependency control** addresses the reality that most products rely on open-source components, third-party libraries, and outsourced development, which means a software bill of materials and a way to manage that risk.

The final step is a **roadmap**. Not everything must be fixed at once. But the organization should know what is missing, what is high risk, what must be ready before 11 September 2026, and what must be complete before 11 December 2027. The roadmap is what converts an open-ended regulatory anxiety into a sequenced, fundable plan.

## What This Changes for the Executive Team

Three executive decisions follow directly from the timeline.

**The September gate is a readiness test, not a documentation deadline.** Meeting Article 14 requires an operational vulnerability-handling and incident-reporting capability that works on a 24-hour clock. If that process is informal today, the executive question is not "when do we write the policy" but "when does the process start running for real," because the only way to know it works is to have run it before it is needed.

**Conformity-assessment capacity is a scheduling risk, not just a cost.** The bodies that will support the 2027 gate are being designated now, and sufficient capacity across Member States is not mandated until December 2026. Every in-scope manufacturer in Europe is converging on the same December 2027 deadline. A company that begins engaging late competes for finite assessor capacity at the worst possible moment, with evidence it cannot retroactively create. Beginning the baseline now is a hedge against that queue.

**The evidence base is a multi-framework asset, not a single-regulation cost.** The component inventory, vulnerability-handling records, and risk assessments built for the CRA are the same artifacts that NIS2, DORA, the revised CSA, and the AI Act ask for. Treating CRA readiness as a standalone compliance line item understates its value; treating it as the first build of a reusable evidence base reflects what it actually is.

This readiness posture also becomes a transaction asset. For companies that may raise, sell, or acquire, CRA exposure is now something deal teams should be reading in tech and cyber diligence, and the absence of an evidence trail is exactly what surfaces as a priced risk or a warranty gap. We cover the deal-side view in [CRA exposure in M&A: a proportionate diligence lens, not a conformity audit](/insights/cyber-resilience-act-ma-due-diligence-deal-teams).

## How Innovaiden Approaches CRA Readiness

The starting point is deliberately small. Before any remediation program, the two questions worth settling are: which of our products are in scope, and under which provision? Most of the cost, delay, and anxiety in CRA programs comes from skipping that step and treating the whole portfolio as uniformly exposed.

The Innovaiden CRA pre-readiness assessment is a short, 20-question instrument designed to answer exactly those questions and to produce a first read on where the evidence gaps are: which obligations bind by 11 September 2026, which by 11 December 2027, and which products carry the most exposure. It is not a legal certification and it does not replace a formal conformity assessment. It is the baseline that tells an executive team whether they are broadly ready, or whether specific areas need remediation now, while there is still time to build the evidence rather than improvise it.

## Sources

1. [Regulation (EU) 2024/2847 (Cyber Resilience Act) — full text on EUR-Lex](https://eur-lex.europa.eu/eli/reg/2024/2847/oj). 2024.
2. [European Commission — Cyber Resilience Act: Implementation (phased application timeline)](https://digital-strategy.ec.europa.eu/en/factpages/cyber-resilience-act-implementation). 2026.
3. [European Commission — Cyber Resilience Act: Reporting obligations (Article 14, 24h / 72h / 14-day)](https://digital-strategy.ec.europa.eu/en/policies/cra-reporting). 2026.
4. [ENISA — Single Reporting Platform](https://www.enisa.europa.eu/topics/product-security-and-certification/single-reporting-platform-srp). 2026.
5. [European Commission — The Cyber Resilience Act: summary of the legislative text](https://digital-strategy.ec.europa.eu/en/policies/cra-summary). 2026.
6. [Open Source Security Foundation — EU Cyber Resilience Act (scope, open-source steward)](https://openssf.org/public-policy/eu-cyber-resilience-act/). 2026.
7. [Pillsbury — The EU's Cyber Resilience Act: new cybersecurity requirements for connected products and software](https://www.pillsburylaw.com/en/news-and-insights/eu-cyber-resilience-act-requirements-products-software.html). 2026.


---

# The EU's Single Entry Point Solves the Regulator's Problem. The Operator Still Needs a Crosswalk.

Author: Dritan Saliovski · Published: 2026-05-27 · Category: Regulatory Compliance · Reading time: 16 min read · Canonical: https://www.innovaiden.com/insights/eu-digital-omnibus-single-entry-point-crosswalk

> The proposed Digital Omnibus Regulation would consolidate incident reporting into one ENISA-run portal. The proposal is still in negotiation, and the five underlying regimes do not go away. The work moves upstream, into the controls crosswalk.
Start with a distinction that most coverage collapses. The Digital Omnibus is not one legislative file. It is two, and only one of them has become law.

The **Digital Omnibus on AI** is the AI file. It went through trilogue on 7 May 2026, was approved by Parliament on 16 June 2026 and adopted by the Council on 29 June 2026, was published in the Official Journal as Regulation (EU) 2026/1744 on 24 July 2026, and entered into force on 27 July 2026. It defers the AI Act's high-risk obligations to 2 December 2027 (Annex III) and 2 August 2028 (Annex I). The Commission's draft high-risk classification guidelines, published 19 May 2026, are out for consultation, with final adoption expected end-2026.

The **Digital Omnibus Regulation, COM(2025) 837** is the data and cyber file: GDPR, ePrivacy, NIS2, and DORA. It is a different instrument, and it is still under negotiation, under examination by the European Parliament's ITRE and LIBE committees, with the EDPB and EDPS having issued a critical joint opinion. Adoption is not expected before late 2026 at the earliest.

Everything in this article turns on the second file. The Single Entry Point for incident reporting, the proposed GDPR notification change, and the proposed new NIS2 Article 23a all sit in COM(2025) 837, which has not been adopted. Nothing described below is in force today. What follows is a reading of the proposal and a plan for the operator work it would require, not a description of current obligations.

Under the proposal, the European Union Agency for Cybersecurity (ENISA) would build and operate a Single Entry Point that consolidates the reporting obligations under NIS2, GDPR, DORA, eIDAS, and the CER Directive into one portal. That is the provision that would reshape compliance operations for the rest of the decade, quieter than the AI file and more consequential.

The EU communication around the SEP frames it as simplification. For the operators on the other side of the portal, it is something narrower and more demanding. The SEP would simplify the regulator-facing layer (one filing, fanned out by ENISA to the relevant authorities). It would not touch the five underlying regimes. The controls each one requires, the evidence each one consumes, the triggers each one defines, and the post-incident obligations each one imposes would all stay in place. What would change is that the fragmentation a company can tolerate upstream of the report gets compressed: when ENISA delivers a single filing to five authorities, that filing has to be coherent across all five views from the moment it is submitted.

The companies that build the upstream crosswalk now will file once and pass enforcement on the first incident after the SEP goes live. The companies that wait will discover the cost of fragmentation in the middle of an incident, with five different teams owning five different pieces of the same report.

## Key Takeaways

- Two files, not one. The Digital Omnibus **on AI** was adopted 29 June 2026 and is in force as Regulation (EU) 2026/1744 from 27 July 2026; it covers the AI Act only. The Digital Omnibus Regulation, **COM(2025) 837**, which contains the Single Entry Point and the GDPR change, is still under negotiation in the European Parliament's ITRE and LIBE committees
- The Single Entry Point would be established by a **proposed** new Article 23a of the NIS2 Directive, operated by ENISA, building on the Cyber Resilience Act reporting platform; it would cover NIS2 (cyber), GDPR (personal data breach), DORA (major ICT incident + voluntary cyber threat for financial sector), eIDAS, and CER Directive
- No adoption date is fixed for COM(2025) 837 and none is expected before late 2026 at the earliest; the SEP would then go operational 18 months after entry into force, extendable to 24, which puts the realistic operational date at 2028 to 2029
- Future regimes (electricity, aviation) would onboard via implementing acts; the SEP is designed to expand rather than to be replaced
- The proposal **would** extend the GDPR breach-notification deadline from 72 hours to 96 hours and raise the threshold to "high risk to the rights and freedoms of natural persons," with a transitional clause until the portal is established. **Until the Digital Omnibus Regulation is adopted, GDPR Article 33's 72-hour deadline continues to apply unchanged.** Do not plan against 96 hours
- The "report once, share many" design would simplify the regulator's intake, not the operator's upstream work; the five regimes would retain their distinct controls, evidence expectations, and timing
- The fragmentation cost gets front-loaded: an incident under the SEP would have to produce a single coherent filing that satisfies five regimes from the moment it is submitted, not five separate filings that can be drafted on five separate timelines

<StatGrid>
  <Stat value="29 Jun 2026" label="Council adoption of the Digital Omnibus on AI (the AI file, in force 27 July 2026)" source="Regulation (EU) 2026/1744" />
  <Stat value="Not adopted" label="Status of the Digital Omnibus Regulation COM(2025) 837, which contains the Single Entry Point" source="European Parliament Legislative Train (ITRE, LIBE)" />
  <Stat value="18 mo" label="ENISA timeline to operationalize the Single Entry Point after entry into force (extendable to 24)" source="Proposed Article 23a NIS2, COM(2025) 837" />
  <Stat value="5 + 2" label="Regimes covered at launch (NIS2, GDPR, DORA, eIDAS, CER) + future onboarding (electricity, aviation)" source="Digital Omnibus proposal" />
</StatGrid>

## What the Single Entry Point Actually Does

The mechanism would be established by a proposed new Article 23a of the NIS2 Directive, inserted by the Digital Omnibus Regulation, COM(2025) 837. That article is a proposal under negotiation, not law. Under it, ENISA would build and operate the portal, drawing on the experience the agency has already developed running the single reporting platform under the Cyber Resilience Act. The platform would set interoperability, access, and compatibility requirements with European Business Wallets, enabling a single notification to satisfy multiple legal obligations.

The five regimes that would be consolidated at launch are below. The middle column is the law as it stands today, which is what applies until COM(2025) 837 is adopted. The right column is what the proposal would change.

| Regime | What it requires today (current law) | What the SEP would change (proposed) |
|---|---|---|
| **NIS2 (Article 23)** | 24h early warning, 72h notification, 1-month final report on significant incidents | Same triggers and timing; one filing in place of separate national-CSIRT submissions |
| **GDPR (Articles 33–34)** | **72h notification to supervisory authority, unchanged and still in force**; data-subject notification when high risk | Deadline **would be** extended to 96h and the threshold aligned to "high risk"; not in force, and a transitional clause would apply until the SEP is established |
| **DORA (Article 19)** | Initial classification of major ICT incident; follow-up reports; voluntary significant cyber-threat reports | Same content; one filing in place of separate notifications to financial-sector competent authorities |
| **eIDAS (Article 19)** | Trust-service incident notification to the supervisory body | Same content via SEP; supervisory body still consumes the report through ENISA |
| **CER Directive (Article 15)** | Critical-entity incident notification | Same content via SEP |

The Commission has also signaled that electricity and aviation regimes would onboard via implementing acts after launch. The SEP is designed to expand, not to be replaced. Companies in scope of NIS2, DORA, GDPR, eIDAS, or CER today should expect that the universe of regimes consolidated through the same portal will grow over the lifetime of the platform.

The implementation window in the proposal is 18 months from entry into force, extendable to 24 if ENISA's portal does not meet the Commission's integrity, reliability, and confidentiality standards by the original target. That clock has not started, because COM(2025) 837 has not been adopted. Adoption timing is not yet known and is not expected before late 2026 at the earliest. Taking the earliest plausible adoption and adding the 18-to-24-month build, the realistic operational date for the SEP is 2028 to 2029. Every date below is therefore expressed relative to adoption rather than as a fixed calendar quarter.

## The Five-Regime Crosswalk Problem

The framing of the SEP as "simplification" is correct from the EU's perspective and incomplete from the operator's. The regulator-side simplification is real: a national CSIRT under NIS2, a data protection authority under GDPR, a financial-services competent authority under DORA, an eIDAS supervisory body, and a CER-regime authority will all receive the same incident notification through ENISA's fan-out, rather than waiting for five separate filings prepared on different timelines.

What this means for the operator is that the five regimes are now consolidated *at the filing layer only*. Upstream of the filing, the five underlying obligation surfaces remain:

- **Five different incident triggers.** NIS2 asks about significant impact on the provision of services. GDPR asks about risk to rights and freedoms of natural persons. DORA asks about major ICT incidents and operational impact. eIDAS asks about trust-service availability and integrity. CER asks about disruption of essential services. A single event can trigger any combination of the five, including all of them at once.
- **Five different evidence taxonomies.** NIS2 wants service-impact data and corrective actions. GDPR wants categories and approximate numbers of data subjects, categories of personal data, likely consequences, and measures taken. DORA wants ICT-asset criticality, financial-sector impact, and concentration data. eIDAS wants trust-service-specific impact. CER wants critical-service continuity data.
- **Five different post-incident obligations.** NIS2 final report at one month. GDPR data-subject notification when high risk. DORA root-cause analysis and intermediate updates. eIDAS service-restoration timelines. CER lessons-learned mechanism.
- **Five different governance owners inside the firm.** The CISO holds NIS2. The DPO holds GDPR. The CIO, CRO, or COO holds DORA. An identity or trust-services owner holds eIDAS. Business continuity or operations holds CER. These five owners report to different executives, use different incident-management tools, and produce evidence in different formats.

Today, without the SEP, the fragmentation is tolerable because each owner files independently. Each report can be drafted on a separate timeline with separate language and separate evidence. Once the SEP is live, one ENISA filing has to satisfy all five regimes from the moment it is submitted. The fragmentation that lives in the reporting layer gets pushed upstream into the control set itself.

For the cross-framework view of how NIS2, DORA, CRA, the revised CSA, and the EU AI Act each evaluate different dimensions of the same vendor and the same operational footprint, see [five frameworks, one vendor: how cross-framework exposure compounds](/insights/four-frameworks-one-vendor-eu-regulatory-exposure). The SEP makes the cross-framework question operational rather than analytical.

## What the Crosswalk Looks Like

A controls crosswalk is the matrix that solves the fragmentation. Each row is an operational control. Each column is a regime. Each cell describes the evidence the control produces for that regime, in that regime's language. Built right, a single incident traversed through the matrix yields all five filings in one motion.

Below is a working example. The full crosswalk a regulated mid-market firm typically needs runs 20 to 40 rows; this seven-row excerpt covers the most common SEP-filing surfaces.

| Control area | NIS2 | GDPR | DORA | eIDAS | CER |
|---|---|---|---|---|---|
| **Incident detection and timeline tracking** | First-detection timestamp, detection mechanism, escalation path | Awareness timestamp (DPO), categories of personal data potentially affected | First-detection timestamp, ICT-asset identifier, criticality tier | Detection of trust-service availability or integrity event | Detection of disruption to essential service |
| **Severity classification** | Significance under Article 23(3) factors (users affected, duration, geographic reach) | "High risk" assessment under Articles 33–34 | Major-ICT-incident criteria under DORA Article 18 | Substantial impact under eIDAS Article 19 | Significant disruption under CER Article 15 |
| **Affected-party identification** | Service users and downstream dependents | Data subjects (approximate number + categories) | Clients, counterparties, market participants | Trust-service relying parties | Essential-service recipients |
| **Initial regulator notification** | 24h early warning (under SEP, via ENISA fan-out) | 72h notification under GDPR Article 33, which still applies; the proposal would extend this to 96h and route it via the SEP, but that is not in force | Initial DORA classification (via SEP) | Trust-service supervisory body (via SEP) | CER authority (via SEP) |
| **Customer or data-subject notification** | Not directly required; service users informed via NIS2 customer-comms obligation | Required when high risk to rights and freedoms | Required when material financial impact | Trust-service users notified per eIDAS Article 19(2) | Essential-service users per sectoral law |
| **Evidence pack assembled** | Service-impact data, corrective actions, residual risk | Personal-data categories, likely consequences, mitigation | ICT-asset criticality, financial-sector exposure, concentration | Trust-service-specific impact, restoration steps | Critical-service continuity data, alternative arrangements |
| **Post-incident review** | NIS2 final report at one month | GDPR documentation under accountability principle (Article 5(2)) | DORA root-cause analysis, lessons learned | eIDAS service-restoration report | CER lessons-learned mechanism |

The pattern that emerges: the rows are highly correlated, not parallel. Detection timing is the same physical event; severity classification asks five different questions about the same incident; affected-party identification differs in unit (users, data subjects, clients, relying parties, essential-service recipients) but is fed by the same underlying logs. Evidence assembly is the heaviest cell on most incidents, and it is also the cell where harmonization pays off most. A single evidence pack structured to populate all five columns at once eliminates four rounds of "translate the same facts into a different form."

The control owners change across the rows. Detection lives with the SOC and IR team. Classification needs CISO + DPO + GC triage in one room. Notification under the SEP is a single button. Customer comms requires a coordinated voice across legal, marketing, customer success, and the operating teams. Post-incident review needs the same five-regime view applied retrospectively. Without a crosswalk to anchor the workflow, each row becomes its own coordination exercise. With a crosswalk, the five rows collapse into one operational sequence.

## What Changes for IT

For the technology function, the SEP creates three concrete operational shifts.

**Logging and telemetry need a single source of truth.** Five regimes drawing on five different log sources, five different SIEM views, or five different ticketing systems is the upstream version of the fragmentation problem. The detection timestamp that anchors a NIS2 24-hour clock has to be the same timestamp that anchors the GDPR clock (72 hours today under Article 33, 96 hours only if and when the Digital Omnibus Regulation is adopted) and a DORA initial-classification clock. In practice this means the SOC needs one canonical incident record that owns the timeline, with all five regime views computed from it rather than maintained in parallel.

**Asset criticality has to be tagged once and consumed five times.** DORA asks about ICT-asset criticality. CER asks about essential-service criticality. NIS2 asks about service significance. eIDAS asks about trust-service availability. A single asset register, tagged with each regime's criticality view, is the controls-layer equivalent of the SEP's reporting-layer consolidation. For the runtime side of this (guardrails, kill switches, AI-specific telemetry that feeds the same incident record) see [AI governance as an operating system, not a policy PDF](/insights/ai-governance-runtime-controls).

**Incident-management tooling has to produce SEP-compatible output.** Whatever the firm uses (ServiceNow IRM, Jira, a custom playbook engine), the workflow has to terminate in a structured artifact that maps to the ENISA filing template. The template would be specified by the Commission in implementing acts during the 18-month buildout that follows adoption. Firms that wait until the template is published to retrofit their tooling will be 6-12 months behind. Firms that map their tooling to the proposal text now will have the workflow tested by the time the template lands.

## What Changes for Legal and the General Counsel

For Legal and the GC office, the SEP raises three governance issues that did not exist before consolidation.

**A regulatory exposure register that crosses all five regimes.** Today the GDPR breach register is its own artifact, the NIS2 incident log is its own, and so on. After the SEP, the same incident would produce a single filing that is consumed by five authorities. The post-filing audit trail (what was filed, when, against which regime, what follow-up was provided) has to be unified. Legal owns this register and has to be able to produce it on demand for any of the five authorities. The methodology page describes this as the "regulatory exposure register" artifact in the GC translation row of the Connect-to-Translate workflow.

**Privilege and disclosure across regimes.** A finding that triggers a NIS2 notification is also disclosable under GDPR if it affects personal data and may be material under DORA if it affects ICT services. The disclosure choices the GC makes for one regime can foreclose options under another. Pre-incident, this means working through the disclosure decision tree before the incident hits, not during it. Post-incident, it means the GC sits at the classification table, not downstream of it.

**Contractual obligations to customers and counterparties under each regime.** SaaS agreements typically reference GDPR breach-notification commitments; DORA-regulated financial counterparties have ICT-third-party-risk provisions that require specific notification timing and content; NIS2 customers expect service-impact updates under their own downstream regulatory obligations. The crosswalk needs a contractual-exposure column attached to each row so the GC knows which customer and counterparty notifications fire on which trigger.

## What Changes for BCP and Incident Response

For business continuity and incident response, the SEP is both a consolidation opportunity and a single-point-of-dependency risk. Both effects deserve a concrete operational response.

**One incident-response playbook, structured around the crosswalk.** The current state for most regulated mid-market firms is five parallel playbooks (or, more commonly, three playbooks plus two retrofits) that each describe how to handle the same physical incident from a different regime's view. Under the SEP, that has to collapse into one playbook with a single decision tree that classifies the incident against all five regime triggers in one pass. The tree should produce four outputs in sequence:

1. **Severity classification**: does this hit any of the five regime triggers, and which combination?
2. **Filing trigger**: does the classification require a filing, and on which clock? NIS2 24h, GDPR 72h under Article 33 as it stands today (96h only if the Digital Omnibus Regulation is adopted), or the DORA-specific clock.
3. **Internal notification fan-out**: who inside the firm needs to know in what order (board chair, audit committee, CFO, GC, CISO, DPO, operating partner if PE-backed)?
4. **External notification fan-out**: beyond ENISA via the SEP, who else needs to hear (customers, counterparties, insurers, public)?

**The contact tree has to reflect SEP architecture.** Pre-SEP, the contact tree had five external endpoints (one per regime authority). Post-SEP, the external authority endpoint collapses to one (the ENISA portal), and the contact tree's complexity moves to the internal side. The roles the IR plan needs to name:

- **Incident commander**: single point of accountability for the incident, typically CISO or deputy.
- **Crosswalk owner**: the person who classifies the incident against all five regime triggers in one pass. In practice this is a CISO + DPO + GC role played by the most senior individual available at the time of detection.
- **SEP filer**: the role authorized to submit through the ENISA portal. Often the CISO's deputy or a designated compliance officer; needs production access to the portal and the evidence pack at submission time.
- **Customer comms owner**: the role coordinating downstream notification to customers, counterparties, and the public; typically a head of customer success or communications with GC sign-off.
- **Board liaison**: the role briefing the board chair and audit-committee chair; typically the GC or CEO depending on materiality.

**The ENISA portal becomes a BCP dependency.** When the SEP is the single regulator-facing endpoint for five regimes, its availability during a major incident matters. The Digital Omnibus Regulation proposal already acknowledges this risk by allowing the operational window to extend from 18 to 24 months if ENISA cannot meet integrity, reliability, or confidentiality standards. In practice, firms should treat the SEP the way they treat any critical third-party regulator endpoint: documented fallback (offline submission via national authority if the portal is unavailable, with retroactive SEP filing), tabletop exercises that include "the portal is down" as a scenario, and clarity on which authority remains the legally responsible recipient if the SEP fails. The Commission has signaled fallback provisions; the operational detail will arrive in implementing acts.

**Tabletop exercises before the portal goes live.** The runway between now and go-live is the natural rehearsal window, and it is longer than it looked six months ago. Two simulation cycles are realistic: one against the COM(2025) 837 proposal text as it stands, run before adoption; a second after the Commission publishes the implementing-act templates (against the actual portal schema). Both exercises should test the four-output decision tree above, the crosswalk, and the contact tree under three scenarios: a personal-data breach with NIS2 service impact, a major DORA ICT incident affecting trust-service availability, and a third-party SaaS compromise that triggers GDPR, NIS2, and DORA simultaneously.

## How Our Method Builds This Crosswalk

The crosswalk is exactly the artifact our [engagement methodology](/methodology) is built to produce. The four stages (Anchor, Mine, Connect, Translate) are designed to surface cross-framework exposure and produce the audience-specific artifacts each function needs to act on it.

In the SEP-readiness case, the four stages map directly:

- **Anchor.** The strategic objective is "one SEP filing satisfies five regimes." The success criterion is a controls crosswalk with named owners, evidence templates aligned, and a tested incident-response playbook before the portal goes live. The stakeholder map names the CISO, DPO, CIO/CRO, GC, head of internal audit, and the board's audit committee.
- **Mine.** The external footprint is the five-regime exposure surface: which NIS2 essential or important entity classification applies, which DORA tier the firm is in, which GDPR cross-border lead authority it reports to, which eIDAS trust services it provides or relies on, which CER critical-entity designation applies. The Mine stage also captures the firm's current incident history across all five regimes (loss runs, prior breaches, notifications filed, near-misses logged) as the baseline.
- **Connect.** The crosswalk itself is the Connect-stage artifact. Each finding in the Mine stage is pulled through the seven workstreams on the methodology page (tech and architecture, cybersecurity and privacy, regulatory, commercial, finance, legal, operations) and laid out in the rows-and-columns matrix above. The "Method by workstream" matrix on the methodology page generalizes this; the SEP crosswalk is a specific instance.
- **Translate.** From the same body of analysis, the GC receives a regulatory exposure register that maps each row to contractual obligations and disclosure choices. The CISO and DPO receive a harmonized playbook and decision tree. The board receives a two-page exposure brief with the SEP-readiness state and residual gaps. The CFO receives an impact model of the cost of fragmentation versus the cost of building the crosswalk. The operating partner of a PE-backed firm receives a Day-100 plan to align portfolio companies onto a common SEP-ready baseline.

The crosswalk is not a one-off deliverable. It is a living artifact, maintained as new evidence accumulates, as COM(2025) 837 moves through negotiation and its text changes, as ENISA publishes implementing-act templates during the post-adoption buildout, and as the regimes themselves are updated (the next major moves on NIS2 and DORA review cycles, and the AI Act high-risk obligations entering application 2 December 2027). For the boardroom view of the same evidence pack, see [from AI principles to proof of control](/insights/ai-principles-proof-of-control); for the runtime-layer controls that feed the crosswalk, see [AI governance as an operating system](/insights/ai-governance-runtime-controls); for the NIS2-specific national-implementation lens (Sweden), see [Sweden's Cybersecurity Act and NIS2](/insights/sweden-cybersecurity-act-2025-nis2).

## The Operator Plan, Anchored to Adoption

Three phases. Because COM(2025) 837 has not been adopted and adoption timing is not yet known, the windows below are expressed relative to adoption rather than as fixed calendar quarters. Phase 1 is the only phase that does not depend on the legislative outcome, which is why it starts now.

| Phase | Window | Deliverable |
|---|---|---|
| **1. Build the crosswalk** | Start now, independent of adoption; roughly 9 months of work | Complete controls inventory mapped to the five regimes as they stand today, including GDPR's 72-hour Article 33 deadline. For each control, record the regime view, the evidence artifact, the named owner, and the system of record. Identify gaps and produce a remediation roadmap with sequencing. |
| **2. Harmonize the IR playbook and contact tree** | Months 0 to 6 after adoption of COM(2025) 837 | Single incident-response playbook with the four-output decision tree (classification, filing trigger, internal fan-out, external fan-out). Named roles (incident commander, crosswalk owner, SEP filer, customer comms owner, board liaison) with primary and backup. First tabletop exercise against the adopted text. |
| **3. SEP-simulation and dry-run** | Months 12 to 18 after adoption, ahead of ENISA's operational deadline | Second tabletop using the Commission's published implementing-act templates. End-to-end dry run of three incident scenarios (personal-data breach with service impact; major DORA ICT incident; third-party SaaS compromise hitting GDPR, NIS2, DORA). Board brief on residual gaps and remediation timeline. |

The plan is calibrated to the 18-month window that would run from entry into force. If ENISA invokes the 24-month extension, the plan stretches but the phasing does not change. On current expectations the portal is a 2028-to-2029 event, so the pressure is not the deadline; it is that Phase 1 takes about nine months regardless and pays for itself against the regimes already in force. The risk of starting later is straightforward: when the portal goes live and the first major incident hits, an organization without a crosswalk is filing five times under the cover of "one filing," and the inconsistencies between the five views are visible to ENISA, the relevant authorities, and any subsequent regulatory or judicial review.

## Closing

The Digital Omnibus Regulation describes the SEP as simplification. From the regulator's vantage, that is accurate. From the operator's, the work moves upstream. The five regimes consolidated at the filing layer would not disappear; their controls, evidence, and post-incident obligations would all stay, and the fragmentation a firm can tolerate when each regime is filed separately becomes untenable when one ENISA filing satisfies all five.

Two things follow. The portal is further away than the coverage suggested, because the file that creates it has not been adopted and the AI file that was adopted does not contain it. And the obligations in force today are unchanged: GDPR Article 33 still runs on 72 hours, and NIS2, DORA, eIDAS, and CER still take their own separate filings.

The firms that build the crosswalk during that runway will file once and pass enforcement on the first incident after go-live. The firms that wait will discover the cost of fragmentation in the middle of an incident, with five teams owning five pieces of the same report and no single artifact that ties them together. The cost is paid either way; the question is whether it is paid in calm preparation or in a live regulatory event.

The Five-Regime Crosswalk Worksheet is built around the matrix and the methodology described above. It includes the seven-control template, the regime mapping for each row, the workstream attribution from the methodology, and the tabletop scenarios for the two simulation cycles. It is designed to be the first artifact a CISO, DPO, GC, or operating partner uses when starting the SEP-readiness program.

## Sources

1. [European Commission — Digital Omnibus proposal package: simplification across digital regulations](https://digital-strategy.ec.europa.eu/en/faqs/digital-package). November 2025 proposal. The AI file (Digital Omnibus on AI) reached trilogue agreement 7 May 2026 and was adopted 29 June 2026; the Digital Omnibus Regulation, COM(2025) 837, remains under negotiation.
2. [Bird & Bird — Digital Omnibus package: Single EU harmonised incident reporting regime across cyber and data protection](https://www.twobirds.com/en/insights/2025/digital-omnibus-package-single-eu-harmonised-incident-reporting-regime-across-cyber-and-data-protect). November 2025.
3. [Bird & Bird — Digital Omnibus on AI: Provisional Agreement Reached at the May Trilogue](https://www.twobirds.com/en/insights/2026/digital-omnibus-on-ai-provisional-agreement-reached-at-the-may-trilogue). May 2026.
4. [Hunton Andrews Kurth — EU Digital Omnibus Introduces a Single Reporting Point for Cybersecurity Incidents](https://www.hunton.com/privacy-and-information-security-law/eu-digital-omnibus-introduces-a-single-reporting-point-for-cybersecurity-incidents). November 2025.
5. [Slaughter and May — EU proposes single-entry point for cyber incident reporting, but is it really "report once, share many"?](https://thelens.slaughterandmay.com/post/102lxgd/eu-proposes-single-entry-point-for-cyber-incident-reporting-but-is-it-really-re). 2025.
6. [Jones Day — EU Digital Omnibus: How EU Data, Cyber, and AI Rules Will Shift](https://www.jonesday.com/en/insights/2025/12/eu-digital-omnibus-how-eu-data-cyber-and-ai-rules-will-shift). December 2025.
7. [White & Case — EU Digital Omnibus: What changes lie ahead for the Data Act, GDPR and AI Act](https://www.whitecase.com/insight-alert/eu-digital-omnibus-what-changes-lie-ahead-data-act-gdpr-and-ai-act). 2025.
8. [White & Case — EU agrees Digital Omnibus deal to simplify AI rules](https://www.whitecase.com/insight-alert/eu-agrees-digital-omnibus-deal-simplify-ai-rules). May 2026.
9. [CMS — The EU's digital omnibus: simplification, consolidation, and a sharper edge on compliance](https://cms-lawnow.com/en/ealerts/2025/11/the-eu-s-digital-omnibus-simplification-consolidation-and-a-sharper-edge-on-compliance). November 2025.
10. [European Parliament — The Digital Omnibus Regulation Proposal: legislative train schedule](https://www.europarl.europa.eu/legislative-train/theme-a-new-plan-for-europe-s-sustainable-prosperity-and-competitiveness/file-digital-package). Ongoing; COM(2025) 837 under examination by the ITRE and LIBE committees.
11. Regulation (EU) 2026/1744 (Digital Omnibus on AI). Council adoption 29 June 2026; published in the Official Journal 24 July 2026; in force 27 July 2026.
12. European Data Protection Board and European Data Protection Supervisor. Joint Opinion 2/2026 on the Digital Omnibus proposals. edpb.europa.eu. 2026.


---

# The EU's High-Risk AI Filter: Inside the May 2026 Draft Guidelines

Author: Dritan Saliovski · Published: 2026-05-20 · Category: Regulatory Compliance · Reading time: 9 min read · Canonical: https://www.innovaiden.com/insights/eu-ai-act-draft-guidelines-high-risk-classification

> On 19 May 2026 the European Commission published draft guidelines clarifying when an AI system is high-risk under Article 6. The exceptions are narrower than the market assumed.
On 19 May 2026, the European Commission published its long-delayed draft guidelines on the classification of high-risk AI systems under Article 6 of Regulation (EU) 2024/1689, the AI Act. The package is three documents: a general-principles paper, a paper on Annex I (AI as a product or safety component of regulated products like medical devices, machinery, vehicles, and lifts), and a paper on Annex III (the eight use-case domains where AI is high-risk regardless of the product context). Stakeholder feedback is open through the AI Act Single Information Platform questionnaire until 22:00 CET on 23 June 2026, a deadline the Commission subsequently extended by one month to 23 July 2026 at stakeholder request. The guidelines are not legally binding once final (only the Court of Justice can give the authoritative reading), but national supervisors and notified bodies will treat them as the working interpretation from day one.

The headline most readers will see is that the Commission missed its original 2 February 2026 deadline and arrived three months late. The substance is more consequential. The draft narrows the Article 6(3) exceptions that most providers and deployers have been quietly relying on, and it closes several common workarounds that vendor contracts and marketing materials have used to keep AI systems out of scope.

## Key Takeaways

- The draft guidelines were published 19 May 2026 across three documents (general principles, Annex I product safety, Annex III use cases). The consultation window, originally closing 23 June 2026, was extended at stakeholder request to **23 July 2026** and has now closed; final guidelines are expected by the end of 2026
- The Digital Omnibus on AI defers the high-risk obligations: Annex III systems are due 2 December 2027 (was 2 August 2026), Annex I systems are due 2 August 2028 (was 2 August 2027); GPAI provisions from 2 August 2025 are unaffected
- Article 6(3) has four exceptions (narrow procedural task, improvement of completed human work, ex-post pattern detection, preparatory task) and the Commission reads each narrowly; profiling under GDPR Article 4(4) removes the filter in every case
- A CV-screening tool that scores or ranks candidates is high-risk; a CV-screening tool that only sorts into predefined buckets without evaluative weight may qualify for exception; the operational substance of the system, not the contract language, decides
- Multi-agent and modular AI systems are assessed as a single unified system: module-by-module Article 6(3) claims do not work when the combined configuration materially influences a high-risk decision
- For Article 6(2) classification, the "intended purpose" comes from instructions, technical documentation, AND marketing materials. Disclaimers in terms of service do not insulate a system whose marketing presents it as deployable in high-risk contexts

<StatGrid>
  <Stat value="19 May 2026" label="Date the European Commission published the three draft guidelines" source="European Commission, Shaping Europe's digital future" />
  <Stat value="23 July 2026" label="Consultation deadline via EU Survey questionnaire. Originally 23 June, extended by one month at stakeholder request; the window has now closed and final guidelines are expected by the end of 2026" source="European Commission consultation portal" />
  <Stat value="2 Dec 2027" label="Article 6(2) high-risk obligations now apply (was 2 Aug 2026)" source="Digital Omnibus on AI" />
  <Stat value="2 Aug 2028" label="Article 6(1) product-route high-risk obligations now apply" source="Digital Omnibus on AI" />
</StatGrid>

## What the Three Documents Cover

The classification regime under Article 6 has two routes. Article 6(1) treats an AI system as high-risk when it is itself a product, or a safety component of a product, that is already regulated under EU sectoral law listed in Annex I: the Machinery Regulation, the Toys Safety Regulation, medical device regulations, automotive type-approval, civil aviation, and others. Article 6(2) treats an AI system as high-risk when its intended purpose falls into one of the eight use-case categories in Annex III. Article 6(3) is the filter: four conditions under which an Annex III system can escape the high-risk regime.

Each of the three guideline documents serves a different audience:

- **General principles.** How the Commission reads Article 6 as a whole. The most important reading here is the Commission's stance on agentic and multi-agent systems: classification is assessed at the level of the deployed system, not its components.
- **Annex I (product safety route).** How AI inside a regulated product gets classified. The Commission clarifies that a manufacturer's procedural choice of internal conformity control under Module A cannot displace high-risk classification, even when harmonised standards are applied. Practical examples cited in the draft include combustion-efficiency optimizers in gas appliances (carbon monoxide and explosion risk), lift door-timing systems, vehicle lane-assistance, and agricultural spraying systems. Most consumer smart-home appliances fall outside if they exist for "convenience, comfort or efficiency optimisation" where failure means a higher bill or discomfort, not safety harm.
- **Annex III (use-case route).** How the eight categories are read and how the 6(3) filter applies. This is the document with the most direct impact on the largest number of enterprise deployments, because employment, education, essential services, and biometrics are where mid-market AI buying lands first.

## The Eight Annex III Categories

The eight Annex III domains, restated in the draft, are unchanged from the text of the Act:

| # | Annex III domain | Typical enterprise systems in scope |
|---|---|---|
| 1 | Biometrics | Remote identification, emotion recognition (where not prohibited), biometric categorisation |
| 2 | Critical infrastructure | Safety components of digital infrastructure, road traffic, supply of water, gas, heating, electricity |
| 3 | Education and vocational training | Admissions, exam scoring, plagiarism detection used to determine outcomes, monitoring of prohibited behaviour |
| 4 | Employment and worker management | CV screening, performance evaluation, task allocation, monitoring of work performance |
| 5 | Essential services (public and private) | Credit scoring, life-and-health insurance underwriting, public benefits eligibility, emergency-service prioritisation |
| 6 | Law enforcement | Risk profiling, evidence reliability, polygraph and equivalent tools, detection of deepfakes |
| 7 | Migration, asylum, border control | Identity verification, risk assessment, examination of applications |
| 8 | Administration of justice and democratic processes | AI assisting judicial decision-making, election integrity, voter behaviour analysis |

A system whose intended purpose lands in any of these is in scope unless the Article 6(3) filter applies, and the filter is the part the market has been treating as broader than it is.

## The Article 6(3) Filter, Read Narrowly

Article 6(3) lets an Annex III system escape high-risk classification if it does not pose a significant risk of harm to health, safety or fundamental rights AND meets at least one of four conditions. The Commission's draft reads each condition narrowly because, as the guidelines put it, Article 6(3) is an exception to rules designed to protect fundamental rights and must be interpreted narrowly.

**Condition (a): Narrow procedural task.** The system performs a structurally simple action: categorising, reformatting, structuring, or deduplicating input. The dividing line is between organising input and assessing it. A tool that converts free-text CVs into a structured database row is in. A tool that scores those CVs on suitability is out, even if a human reviews the score afterwards.

**Condition (b): Improvement of completed human work.** The system refines the output of an already-completed human activity without changing rights, legal standing, or economic position. The Commission's reading is that "improvement" excludes substantive review or revision. Grammar polishing on a final letter is in. AI rewriting the substance of a decision before issuance is out.

**Condition (c): Pattern detection (ex post).** The system identifies patterns or deviations in past decision-making, for quality assurance, training, or audit, provided that the underlying human assessments were complete first and the AI's comparison is retrospective. A monitoring system that detects drift in promotion decisions over the last 24 months is in. A system that flags candidates in real time as deviating from prior patterns is out.

**Condition (d): Preparatory task.** The system functions before the substantive assessment begins (indexing, searching, retrieving) without reaching any conclusion that informs the decision. A document-search tool that surfaces case law for a judge is in. A tool that ranks case law by predicted relevance to the disposition is out.

Two cross-cutting limits apply to all four conditions:

- **Profiling carve-out.** If the system performs profiling within the meaning of GDPR Article 4(4) (any automated processing of personal data that evaluates personal aspects to predict or analyse work performance, economic situation, health, preferences, location, behaviour, reliability, or movements), the 6(3) filter is unavailable. The draft is explicit: the filter is removed "in every case" where profiling is present.
- **Modular and agentic systems.** Where an AI system has multiple modules or an agentic, multi-step architecture, the Commission assesses the combined system, not each module independently. A retrieval module that would qualify under (d) on its own does not protect a downstream scoring module that does not. The deployed configuration is what gets classified.

For boards and legal teams, the practical move is to retest every Article 6(3) claim already in the portfolio against the draft conditions, with documented evidence and not just contract language. Systems that internal counsel cleared as out-of-scope on a previous, broader reading of the Act will move back into scope under the draft.

## "Intended Purpose" Is Decided by Substance, Not Disclaimer

For Article 6(2) systems, classification depends on the provider's stated intended purpose. The draft tells supervisors how to determine that purpose: read the instructions for use, the technical documentation, AND the marketing materials. All three must align.

Three specific traps are now closed:

- **The terms-of-service disclaimer.** A contract that says "this system is not intended for high-risk use" does not control if the user-facing marketing presents the same system as suitable for hiring decisions, credit underwriting, or other Annex III contexts. The draft is explicit: merely asserting in the terms of service that high-risk uses are excluded is insufficient.
- **The general-purpose carve-out.** Enterprise copilots, general-purpose models, and platform AI deployed across multiple use cases cannot rely on a contractual carve-out without coherent operational substance. If the system is sold for, configured for, or supported for an Annex III use case, it is in scope at provider level, and the deployer carries deployer obligations on top.
- **The breadth-of-application argument.** Systems "presented as broadly applicable across multiple contexts with feasible high-risk use cases" are deemed to encompass those uses regardless of disclaimers. Selling a system that can do CV screening with a footnote saying users should not use it for CV screening does not move it out of Annex III.

The implication is that the next time procurement or legal evaluates an AI tool, the diligence file has to include the marketing landing page, the data sheet, the customer-success deck, and the contract, and they all need to describe the same system. If they describe different systems, the classification is decided by whichever one is broadest.

## What the Digital Omnibus Changed About the Calendar

The original AI Act timeline had Article 6(2) high-risk obligations entering application on 2 August 2026, a date that drove most of the in-flight enterprise compliance work. Under the Digital Omnibus on AI, agreed at the May 2026 trilogue, that date moves to 2 December 2027 for Annex III (Article 6(2)) systems and to 2 August 2028 for Annex I (Article 6(1)) embedded systems. GPAI provisions that took effect 2 August 2025 and the prohibitions in Article 5 are unaffected.

The deferral is not a reprieve. It is a re-baselining:

- The 2 December 2027 date is now the constraint on the Annex III evidence pack: risk management system, data governance, technical documentation, logging, transparency, human oversight, accuracy, robustness, cybersecurity, and EU database registration for any classified-high-risk system.
- The 2 August 2028 date is the constraint on Annex I products, which involves harmonised standards, notified-body conformity assessment for some Module choices, and CE marking adjustments. Substantially longer lead times than software deployment.
- The draft classification guidelines fix the *interpretation* the supervisors and notified bodies will use to evaluate that evidence. Vendors and buyers who waited for the deferral are now working with both more time and a tighter reading.

For the cross-framework view of how the AI Act overlaps with NIS2, DORA, CRA, and the revised CSA, see [the five frameworks, one vendor analysis](/insights/four-frameworks-one-vendor-eu-regulatory-exposure). For how runtime AI governance maps to the AI Act's risk-management and human-oversight obligations, see [AI governance as an operating system](/insights/ai-governance-runtime-controls). For the boardroom evidence pack that supports an Article 6(2) classification claim, see [from AI principles to proof of control](/insights/ai-principles-proof-of-control).

## What Changes in Diligence and Deployment

For four audiences, the draft guidelines change a specific workflow:

**Boards.** The AI inventory needs a classification column: Annex I, Annex III (with category), Article 6(3) claim (with condition), or not in scope. Every Article 6(3) claim should reference one of the four conditions and the evidence supporting it. Every Annex III system should have an EU database registration owner and a documentation start date.

**Procurement and legal.** Vendor contracts can no longer rely on disclaimer language. The buyer's diligence has to look at how the vendor markets the system, what the data sheet says about intended purpose, and whether the contract description matches the deployment reality. Where they diverge, the buyer's deployer obligations expand to fill the gap.

**Mid-market deployers.** Most mid-market organisations are deployers, not providers. Under the draft, deployer obligations attach to any high-risk system in production: human oversight, monitoring, log retention, transparency to affected individuals, and impact assessment where personal data is involved. The two-year deferral is the implementation runway.

**M&A buyers.** Target diligence on AI capabilities now has to reach into intended purpose, contractual alignment, and Article 6(3) claims. A target with a portfolio of "out of scope by contract" AI systems is carrying an undiagnosed compliance liability that transfers on close. For the deal-team-specific lens, see [how deal teams should diligence AI-heavy targets](/insights/ai-diligence-pe-deal-teams).

The draft guidelines are the first time the Commission has put its reading of Article 6 on the page at this level of granularity. Through the consultation window, which ran to 23 July 2026 after a one-month extension, stakeholder feedback will narrow some interpretations and widen others. After adoption (most likely Q4 2026) the reading the Commission lands on becomes the working baseline for every supervisor, notified body, and conformity-assessment process in the EU. The companies that map their portfolio against the draft now will spend the next 18 months building the documentation pack the Commission is asking for. The companies that wait will start the same work after 2 December 2027, under enforcement.

## Sources

1. [European Commission — Draft Commission guidelines on the classification of high-risk AI systems](https://digital-strategy.ec.europa.eu/en/library/draft-commission-guidelines-classification-high-risk-ai-systems). 19 May 2026.
2. [European Commission — Commission seeks feedback on the draft guidelines for the classification of high-risk artificial intelligence systems](https://digital-strategy.ec.europa.eu/en/news/commission-seeks-feedback-draft-guidelines-classification-high-risk-artificial-intelligence-systems). 19 May 2026.
3. [European Commission — Targeted consultation on the draft guidelines for the classification of high-risk AI systems](https://digital-strategy.ec.europa.eu/en/consultations/targeted-consultation-draft-guidelines-classification-high-risk-artificial-intelligence-systems). Consultation deadline 23 June 2026.
4. [IAPP — European Commission delivers draft high-risk AI guidelines after delays](https://iapp.org/news/a/european-commission-delivers-draft-high-risk-ai-guidelines-after-delays). 19 May 2026.
5. [William Fry — EU Publishes Draft Guidelines on Classification of High-Risk AI Systems](https://www.williamfry.com/knowledge/eu-publishes-draft-guidelines-on-classification-of-high-risk-ai-systems/). May 2026.
6. [Bird & Bird — The Commission's Draft High-Risk AI Guidelines under the EU AI Act: A First Read](https://www.twobirds.com/en/insights/2026/the-commission's-draft-high-risk-ai-guidelines-under-the-eu-ai-act-a-first-read). May 2026.
7. [INSIGHT EU Monitoring — Classification of high-risk AI systems: EU Commission consults on draft guidelines](https://ieu-monitoring.com/editorial/classification-of-high-risk-ai-systems-eu-commission-consults-on-draft-guidelines/1236785). May 2026.
8. [aiactblog.nl — Commission Guidelines on the High-Risk AI Filter](https://www.aiactblog.nl/en/posts/commission-guidelines-high-risk-ai-filter). May 2026.
9. [Enzai — EU AI Act: draft high-risk classification guidelines](https://www.enz.ai/european-commission-draft-guidelines-high-risk-ai-classification). May 2026.
10. [European Commission — Regulatory framework proposal on artificial intelligence (AI Act)](https://digital-strategy.ec.europa.eu/en/policies/regulatory-framework-ai). AI Act primary reference.


---

# Five Frameworks, One Vendor: How NIS2, DORA, CRA, the Revised CSA, and the EU AI Act Create Cross-Framework Exposure

Author: Dritan Saliovski · Published: 2026-04-01 · Category: Regulatory Compliance · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/four-frameworks-one-vendor-eu-regulatory-exposure

> NIS2, DORA, CRA, the revised CSA, and the EU AI Act each evaluate different dimensions of the same vendor. Running them as separate programs hides cross-framework exposure.
European enterprises are now subject to five converging EU frameworks: NIS2, DORA, the Cyber Resilience Act, the proposed revised Cybersecurity Act, and the AI Act. Each evaluates different dimensions of the same vendor relationship. A supplier that satisfies one framework can be disqualified under another. Most compliance teams are still running these as separate programs, which means the cross-framework exposure stays invisible until it surfaces as a regulatory finding or a forced technology replacement.

## Key Takeaways

- The revised Cybersecurity Act (CSA2), proposed January 2026, introduces "non-technical risk" as a formal criterion for assessing ICT suppliers, country of origin, government influence exposure, and geopolitical alignment now factor into procurement decisions across 18 critical sectors
- The Commission can retroactively designate a supplier as high-risk and require phase-out of already-deployed components within 36 months, a first in EU cybersecurity law
- The EU AI Act adds a fifth lens: any vendor selling, integrating, or operating AI systems faces classification (prohibited / high-risk / limited / minimal) and provider-deployer-importer obligations that overlap NIS2 and CRA but apply distinct AI-specific tests; the November 2025 Digital Omnibus proposes deferring high-risk obligations from August 2026 to December 2027, forcing vendors to plan two parallel timelines
- CRA reporting obligations begin 11 September 2026; NIS2 audits are underway across member states; DORA has been in force since January 2025, compliance timelines are converging, not sequenced
- Fines for revised CSA supply chain violations could reach 7% of global turnover; AI Act fines for prohibited practices reach the same ceiling — these are the highest penalty ceilings in the current EU regulatory stack
- A single regulatory exposure matrix across all five frameworks converts fragmented compliance programs into one strategic vendor governance conversation

<StatGrid>
  <Stat value="7%" label="Maximum fine under revised CSA (of global turnover)" source="European Commission CSA2 proposal, January 2026" />
  <Stat value="36 mo" label="Maximum phase-out period for high-risk suppliers" source="Revised CSA Article provisions, 2026" />
  <Stat value="18" label="Critical sectors covered by NIS2 and revised CSA" source="NIS2 Directive, Annex I and II" />
</StatGrid>

<InsightFigure src="/insights/eu-regulatory-timeline.svg" alt="EU cybersecurity regulatory timeline from 2024 to 2027 showing DORA, NIS2, CRA, revised CSA, and US trade action milestones with a Today marker at April 2026" caption="Source: Synthesized from European Commission, USTR, and member state implementation schedules. Revised CSA timeline estimated based on typical EU legislative process." />

## Five frameworks, five different questions about the same vendor

Each framework evaluates a different risk dimension. NIS2 asks whether your organization manages cybersecurity risk across its supply chain, with incident reporting obligations and management accountability. DORA asks whether financial entities can maintain operational resilience through ICT disruptions, with prescriptive requirements for critical third-party provider oversight and resilience testing. The Cyber Resilience Act asks whether the products you deploy were designed and maintained with security built in, with vulnerability reporting and conformity assessment obligations. The revised Cybersecurity Act asks a question none of the others touch: whether the supplier's jurisdiction, ownership structure, and government exposure create non-technical risks that compromise the security of EU critical infrastructure. The EU AI Act adds the fifth question: how the vendor's AI systems are classified (prohibited, high-risk, limited-risk, or minimal-risk), what role the vendor plays (provider, deployer, importer, distributor), and which obligations attach to that combination — including transparency, conformity assessment, post-market monitoring, and the GPAI rules that took effect 2 August 2025.

<InsightFigure src="/insights/four-framework-venn.svg" alt="Four-circle Venn diagram showing what NIS2, DORA, CRA, and the revised CSA each evaluate about the same vendor, with overlapping areas for shared requirements like risk assessment, reporting obligations, and supply chain security" caption="The four cybersecurity-specific lenses, overlapping but not aligned. The EU AI Act adds a fifth dimension (AI risk classification and provider/deployer roles) covered separately below. No framework covers trade or tariff risk." />

These are not overlapping requirements with minor variations. They are structurally different assessment dimensions applied to the same supplier relationship. A cloud provider can satisfy NIS2 supply chain due diligence requirements, meet DORA's critical third-party standards, ship CRA-compliant products, **and** comply with AI Act provider obligations on its hosted models, yet still be designated as a high-risk supplier under the revised CSA because of where it is headquartered or who controls it.

The lex specialis principle adds complexity rather than clarity. DORA prevails over NIS2 where they directly overlap for financial entities, but the revised CSA introduces a horizontal layer that cuts across both. An organization subject to DORA still faces NIS2 obligations in areas DORA does not cover, specifically [personnel security measures and MFA/encryption policy documentation](/insights/sweden-cybersecurity-act-2025-nis2), as detailed in our analysis of Sweden's Cybersecurity Act implementation. The CRA then adds product-level obligations that neither NIS2 nor DORA address: a vendor's organizational compliance does not guarantee that its products meet CRA essential cybersecurity requirements.

## What the revised Cybersecurity Act changes

On 20 January 2026, the European Commission proposed a comprehensive overhaul of the original 2019 Cybersecurity Act. The revision introduces a trusted ICT supply chain security framework that formalizes non-technical risk assessment, a first in EU law.

Non-technical risk means the Commission can now evaluate whether a supplier is established in, or controlled by entities from, a third country that poses cybersecurity concerns. The designation criteria include whether that jurisdiction requires vendors to disclose software or hardware vulnerabilities to local authorities before they are exploited, whether it lacks independent judicial remedies for cybersecurity concerns, and whether it harbors threat actors conducting malicious cyber operations.

The consequences for designated high-risk suppliers are material. They face exclusion from procurement procedures for key ICT components, exclusion from EU funding programs, and prohibition from obtaining EU cybersecurity certification. Operators of electronic communications networks would be required to ensure they do not rely on high-risk suppliers for critical assets.

The most significant provision is retroactive reclassification. The Commission can designate a supplier as high-risk after its products are already deployed, triggering a mandatory phase-out period that should not exceed 36 months. For telecom operators still using equipment from suppliers like Huawei and ZTE, this provision has immediate practical implications. But the mechanism applies across all 18 sectors covered by NIS2, including energy, transport, healthcare, banking, and digital infrastructure.

Fines for supply chain violations under the revised CSA could reach 7% of worldwide turnover, depending on the nature of the breach. That exceeds the penalty ceilings under NIS2 (EUR 10 million or 2% of turnover for essential operators) and DORA (EUR 5 million or 2% of turnover).

## What the EU AI Act adds — and what the Digital Omnibus changed

The AI Act (Regulation (EU) 2024/1689) is the fifth framework most vendor-risk programs still treat as a separate workstream. It is not. Any supplier that provides, integrates, deploys, or distributes AI systems in the EU is now in scope under one of four risk classifications, with obligations that overlap NIS2 (cybersecurity risk management), CRA (product conformity), and the revised CSA (jurisdictional supplier risk for general-purpose AI with systemic risk).

The AI Act's structure is risk-tiered:

- **Prohibited practices** (subliminal manipulation, social scoring, untargeted facial-recognition scraping) — fines up to EUR 35 million or 7% of global turnover, whichever is higher
- **High-risk AI systems** (Annex III categories: critical infrastructure, employment, essential services, law enforcement, migration, justice, education) — conformity assessment, risk management system, data governance, human oversight, post-market monitoring; fines up to EUR 15 million or 3% of turnover
- **Limited-risk** (chatbots, generative content) — transparency obligations
- **Minimal-risk** — voluntary codes of conduct
- **General-purpose AI (GPAI)** — separate provider obligations on technical documentation, training data summaries, copyright compliance; additional obligations for GPAI with systemic risk

The 2 August 2025 milestone took effect on schedule: GPAI provider obligations and the AI literacy duty are now law. The 2 August 2026 milestone — high-risk AI obligations — is what the **Digital Omnibus** package proposed on 19 November 2025 to defer.

The Digital Omnibus, presented as a simplification package across multiple digital regulations, includes a draft amendment that would push the AI Act's high-risk applicability date from 2 August 2026 to 2 December 2027. As of the most recent reporting, the proposal is in trilogue negotiation; outcomes are not yet final. For vendors and procurement teams, the practical consequence is uncomfortable: until trilogue concludes, you must plan for both timelines. A high-risk AI system being deployed in mid-2026 cannot assume the deferral will pass; nor can a 2027 roadmap assume the original deadline will hold.

### Update (May 2026): the draft classification guidelines land

On 19 May 2026 the European Commission published three draft guideline documents under Article 6 — general principles, Annex I (product safety), and Annex III (the eight use cases) — with stakeholder feedback open through 23 June 2026. The Digital Omnibus deferral is now agreed at trilogue level: Article 6(2) Annex III obligations apply from 2 December 2027, and Article 6(1) Annex I obligations from 2 August 2028. GPAI provisions from 2 August 2025 are unaffected.

For cross-framework exposure, three points from the draft sharpen the AI Act column of the comparison table:

- **Article 6(3) is read narrowly.** The four exception conditions (narrow procedural task, improvement of completed human work, ex-post pattern detection, preparatory task) are interpreted strictly; profiling under GDPR Article 4(4) removes the filter in every case. Many "out of scope by contract" claims will move back into scope under the draft.
- **Multi-agent and modular AI is one system.** The Commission classifies the deployed configuration, not its components. A module that would qualify for 6(3) in isolation does not protect a downstream module that would not.
- **Intended purpose is decided by substance.** Instructions, technical documentation, and marketing materials must align. Terms-of-service disclaimers do not insulate a system that is sold or supported for Annex III use cases.

For the full read of the draft — the eight Annex III domains, the four 6(3) conditions, and what changes for procurement and deployment — see [the EU's high-risk AI filter: inside the May 2026 draft guidelines](/insights/eu-ai-act-draft-guidelines-high-risk-classification).

| AI Act dimension | Practical implication for vendor exposure |
|---|---|
| **Risk classification** | Even a vendor that does not sell AI as a product can become a "deployer" of a high-risk AI system simply by integrating one — the classification follows the use case, not the vendor's marketing |
| **Provider-deployer-importer roles** | A US vendor selling a model to an EU integrator can land both parties with overlapping obligations; the integrator may inherit "provider" status if it substantially modifies the system |
| **GPAI systemic-risk threshold** | Models trained with cumulative compute above 10²⁵ FLOPs trigger systemic-risk obligations including incident reporting, adversarial testing, and serious-incident notification |
| **Digital Omnibus deferral (proposed)** | High-risk obligations may shift Aug 2026 → Dec 2027; vendors must maintain readiness for the original deadline until trilogue concludes |

For the broader regulatory framework comparison, see [the EU AI Act in the context of converging cyber and AI regulation](/insights/ai-cybersecurity-regulation-convergence). For how political risk affects AI vendor procurement specifically, see [AI vendor trust and political risk in due diligence](/insights/ai-vendor-trust-political-risk-due-diligence).

## Where the frameworks diverge on supply chain

<InsightFigure caption="Source: Synthesized from European Commission implementation schedules, Swedish Government Offices, and USTR announcements. Revised CSA timeline estimated based on typical EU legislative process.">
  <ComplianceGantt />
</InsightFigure>

The table below maps how each framework handles the same vendor governance question. The divergences are where cross-framework exposure emerges.

| Assessment dimension | NIS2 | DORA | CRA | Revised CSA | EU AI Act |
|---|---|---|---|---|---|
| **What it evaluates** | Organizational security posture | ICT operational resilience | Product security by design | Supplier jurisdiction and geopolitical risk | AI system risk classification and provider/deployer obligations |
| **Scope** | 18 sectors, entity-wide | Financial sector, ICT systems | All products with digital elements on EU market | Same 18 NIS2 sectors (horizontal layer) | All AI systems placed on EU market or whose output is used in EU; GPAI providers globally |
| **Supply chain obligation** | Due diligence on direct suppliers and service providers | Critical third-party provider register and oversight | Manufacturer responsibility for product lifecycle security | Non-technical risk assessment of supplier origin and control | Provider/deployer/importer obligations flow through the AI value chain; substantial modification can shift roles |
| **Incident reporting** | 24h early warning, 72h notification, 1-month final report | 4h initial classification, 72h intermediate, 1-month final | 24h vulnerability/incident report, 72h follow-up, 14-day final (vulnerabilities) / 1-month (incidents) | Via NIS2 framework (no separate timeline) | Serious-incident reporting for high-risk AI; GPAI systemic-risk providers report to AI Office |
| **What can trigger a supplier change** | Evidence of inadequate security measures | Concentration risk or resilience failure at CTPP | Non-compliant product recalled from EU market | High-risk designation based on jurisdiction, retroactive, with 36-month phase-out | Reclassification of system as high-risk; loss of CE marking; failed conformity assessment |
| **Maximum fine** | EUR 10M or 2% of global turnover | EUR 5M or 2% of global turnover | EUR 15M or 2.5% of global turnover | Up to 7% of worldwide turnover | EUR 35M or 7% of turnover (prohibited practices); EUR 15M or 3% (high-risk non-compliance) |
| **Key timeline (as of May 2026)** | In force; member state audits underway | In force since Jan 2025 | Reporting begins 11 Sep 2026 | CSA2 proposed Jan 2026, in negotiation | GPAI in force Aug 2025; Article 6(2) Annex III high-risk obligations from 2 Dec 2027; Article 6(1) Annex I from 2 Aug 2028 (Digital Omnibus deferral agreed at May 2026 trilogue); draft Article 6 classification guidelines published 19 May 2026, consultation closes 23 Jun 2026 |

The structural gap: NIS2 and DORA assess what a vendor *does* (security measures, resilience practices). The CRA assesses what a vendor *makes* (product security). The revised CSA assesses *who a vendor is and where it comes from*. The AI Act assesses *what the vendor's AI system can do and what role the vendor plays in its lifecycle*. A vendor can score well on the four operational and product dimensions and still fail the jurisdictional or AI classification test.

## The geopolitical variable compliance programs miss

The regulatory convergence described above is happening against a backdrop of US-EU trade tensions that create a second layer of vendor exposure no cybersecurity framework currently captures.

On 11 March 2026, the US Trade Representative initiated Section 301 investigations into 16 economies, including the EU, targeting structural excess manufacturing capacity. Separately, the US administration has explicitly characterized EU digital regulation, including the Digital Markets Act and Digital Services Act, as discriminatory against American technology companies. The USTR has signaled that digital regulation could become the basis for its own Section 301 investigation, citing the potential for tariffs or fees on services.

This creates a bidirectional risk that most compliance teams are not structured to see. On one side, the revised CSA's non-technical risk criteria establish a mechanism that could functionally restrict US-origin suppliers from EU critical infrastructure if the Commission determines that US jurisdiction poses cybersecurity concerns. On the other side, US retaliatory measures, whether tariffs, service fees, or regulatory restrictions, could affect EU vendors operating in the US market. Organizations evaluating [how vendor trust and political risk affect procurement](/insights/ai-vendor-trust-political-risk-due-diligence) will recognize this dynamic from the AI platform context.

The structural point extends beyond any single administration or trade dispute. The EU is building permanent mechanisms for technology sovereignty through the CSA2, the Cloud and AI Development Act, and the Digital Omnibus package. The US has demonstrated, across administrations, a willingness to use trade enforcement tools against digital regulation it considers discriminatory. This dynamic will persist regardless of election outcomes on either side of the Atlantic.

No cybersecurity questionnaire currently in use captures jurisdictional or trade-policy exposure. The vendor that passes your NIS2 supply chain assessment and DORA critical third-party review may carry geopolitical risk that only becomes visible when a Commission implementing act or a Section 301 determination changes the regulatory ground underneath a technology relationship you assumed was stable.

## How to build the exposure matrix

The gap between running four separate compliance programs and running one integrated vendor governance program is a single tool: a regulatory exposure matrix that maps critical vendors against all applicable frameworks plus jurisdictional risk.

**Structure.** List critical vendors down the left column. Run NIS2, DORA, CRA, the revised CSA, and the AI Act across the top as separate columns. Add a final column for trade and jurisdictional exposure. For each intersection, document assessment status (compliant, gap identified, not assessed), criteria used, gaps identified, and remediation owner. For AI Act specifically, capture the system's risk classification, the vendor's role (provider / deployer / importer / distributor), and which timeline applies — the original 2 August 2026 deadline or the proposed 2 December 2027 deferral.

**Where to start.** Prioritize vendors that operate in the infrastructure layer: cloud providers, identity and access management platforms, network equipment suppliers, managed security services, and any vendor whose product is embedded in systems you cannot easily replace. These are the relationships where a forced phase-out under the revised CSA would be most disruptive and most expensive. For organizations deploying AI agents alongside these infrastructure vendors, the [AI data governance framework](/insights/ai-data-governance-enterprise-guide) adds another dimension to the assessment.

**What to look for.** The matrix will surface three categories of findings most organizations miss when running frameworks in isolation. First, vendors with conflicting status across frameworks, satisfying one set of requirements while carrying unaddressed exposure under another. Second, vendors with concentration risk that spans multiple frameworks, where a single provider's failure or restriction would trigger obligations under NIS2, DORA, and potentially the revised CSA simultaneously. Third, vendors with jurisdictional exposure that existing cybersecurity assessments do not capture, including suppliers headquartered in or controlled from jurisdictions that could be designated under the revised CSA's non-technical risk criteria, or suppliers whose market access could be affected by trade enforcement actions in either direction.

**Expected outcome.** Most organizations will find three to five vendors that create exposure across multiple frameworks they had not previously connected. This takes approximately one focused week with existing procurement, security, and compliance data. It transforms four separate compliance programs into a single strategic vendor governance conversation that the board, the CISO, the procurement function, and legal can all act on. For a detailed look at how Sweden has implemented NIS2 into national law and what that means for affected organizations, see our [comprehensive guide to Sweden's Cybersecurity Act 2025](/insights/sweden-cybersecurity-act-2025-nis2).

The full Intelligence Brief covers the complete four-framework comparison matrix, exposure matrix template with worked examples, remediation prioritization by maturity level, and the regulatory timeline with key compliance milestones.

## Sources

1. European Commission. Proposal for a regulation on cybersecurity requirements for products with digital elements (Cyber Resilience Act). ec.europa.eu. 2024.
2. European Commission. Proposal for a revised Cybersecurity Act (CSA2), trusted ICT supply chain security framework. ec.europa.eu. 2026.
3. European Parliament and Council. Regulation (EU) 2022/2554 on digital operational resilience for the financial sector (DORA). eur-lex.europa.eu. 2022.
4. European Parliament and Council. Directive (EU) 2022/2555 on measures for a high common level of cybersecurity (NIS2). eur-lex.europa.eu. 2022.
5. Sveriges riksdag. [Cybersäkerhetslag (2025:1506)](https://www.riksdagen.se/sv/dokument-och-lagar/dokument/svensk-forfattningssamling/cyberssakerhetslag-20251506_sfs-2025-1506/) and Cybersäkerhetsförordning (2025:1507). riksdagen.se. 2025.
6. USTR. Section 301 investigation announcements. ustr.gov. 2026.
7. European Commission. Inception impact assessment for the revised Cybersecurity Act. ec.europa.eu. 2025.
8. [European Parliament and Council — Regulation (EU) 2024/1689 (EU AI Act)](https://eur-lex.europa.eu/eli/reg/2024/1689/oj). 2024.
9. [DLA Piper — The Digital AI Omnibus: Proposed deferral of high-risk AI obligations under the AI Act](https://knowledge.dlapiper.com/dlapiperknowledge/globalemploymentlatestdevelopments/2026/The-Digital-AI-Omnibus-Proposed-deferral-of-high-risk-AI-obligations-under-the-AI-Act). November 2025.
10. [EU AI Act Implementation Timeline](https://artificialintelligenceact.eu/implementation-timeline/). 2026.
11. [European Commission — Draft Commission guidelines on the classification of high-risk AI systems](https://digital-strategy.ec.europa.eu/en/library/draft-commission-guidelines-classification-high-risk-ai-systems). 19 May 2026.
12. [European Commission — Commission seeks feedback on the draft guidelines for the classification of high-risk artificial intelligence systems](https://digital-strategy.ec.europa.eu/en/news/commission-seeks-feedback-draft-guidelines-classification-high-risk-artificial-intelligence-systems). 19 May 2026.


---

# Sweden's Cybersecurity Act (2025:1506): NIS2 Is Now Law

Author: Dritan Saliovski · Published: 2026-01-27 · Category: Regulatory Compliance · Reading time: 8 min read · Canonical: https://www.innovaiden.com/insights/sweden-cybersecurity-act-2025-nis2

> Sweden's Cybersecurity Act (SFS 2025:1506) entered into force on 15 January 2026, shifting cybersecurity obligations to entity-wide scope with explicit management accountability requirements and fines up to €10M.
The Cybersecurity Act (Cybersäkerhetslag, SFS 2025:1506) entered into force on 15 January 2026, transposing the EU NIS2 Directive into Swedish law and superseding the previous Information Security Act framework (SFS 2018:1174). The law establishes entity-wide obligations across 18 designated sectors, with explicit management accountability requirements and fines reaching €10 million.

## Key Takeaways

- Sweden's Cybersecurity Act (SFS 2025:1506) entered into force on 15 January 2026, shifting from branch-level to entity-wide scope across 18 designated sectors
- In-scope threshold: 50+ employees, or annual turnover and balance sheet total exceeding €10 million; trusted service providers and sole providers of essential services are covered regardless of size
- Essential operators face fines up to €10M or 2% of global annual turnover; important operators face up to €7M or 1.4%
- Explicit management accountability requirements: board members and CEOs must approve, supervise, and undergo specific cybersecurity training, with potential management sanctions under supervisory authority processes
- ISO 27001:2022 certification covers a significant portion of the Act's control requirements, with key gaps in incident reporting, governance, and scope

## What's New vs the Previous NIS Regime

For deal teams, compliance officers, and boards assessing exposure under the Cybersecurity Act, the relevant question is not what NIS2 says in Brussels, but what changed operationally in Sweden on 15 January 2026.

- **Branch-level scope replaced by entity-wide scope.** The previous NIS Act applied only to the specific operational branch that triggered the regulation. The Cybersecurity Act applies to the entire legal entity. If any part of your operations falls within a designated sector, all network and information systems across the organization are in scope, including HR, finance, and internal IT.
- **OES/DSP categories replaced by essential and important entities.** The previous classification of operators of essential services (OES) and digital service providers (DSP) is replaced by a two-tier classification. Essential operators face proactive supervision and higher penalty ceilings. Important operators face reactive supervision triggered by evidence of non-compliance.
- **Limited supervision replaced by active enforcement powers.** Supervisory authorities now have explicit powers to conduct security audits, on-site inspections, and compliance checks without requiring a triggering incident. Essential entities can expect scheduled and unannounced reviews.
- **Implicit management oversight replaced by explicit accountability requirements.** The previous framework contained no direct obligations for board-level involvement. The Cybersecurity Act creates explicit accountability: board members and CEOs must approve cybersecurity risk management measures, oversee implementation, and complete specific cybersecurity training. Failure creates a direct line to individual management sanctions.
- **Vague incident reporting replaced by structured timelines.** The previous NIS regime required incident reporting without a defined multi-stage structure. The Cybersecurity Act mandates a 24-hour early warning, a 72-hour full notification, and a one-month final report, with specific content requirements at each stage.

## From Branch-Level to Entity-Wide Scope

The previous NIS Act covered 7 sectors and applied only to the specific operational branch within an organization that triggered the regulation. The Cybersecurity Act inverts that logic entirely. If any part of your operations falls within a designated sector, the entire entity must comply, including HR systems, finance platforms, and internal IT infrastructure alongside the operational systems directly linked to the regulated service.

Entity-wide scope is the single biggest structural change. A drinking water producer must now ensure its payroll, finance, and internal IT systems meet the same security standards as its operational water production systems. Network and information systems are interconnected across business functions, and the law reflects that reality.

Sweden chose a decentralized supervisory model. Oversight is distributed across sector-specific regulators, coordinated nationally by MCF (formerly MSB). Under cybersäkerhetsförordningen (2025:1507) the designations include PTS for digital infrastructure and electronic communications, Finansinspektionen for banking and financial market infrastructure, Transportstyrelsen for transport, Energimyndigheten for energy, IVO for healthcare care providers (vårdgivare) with Läkemedelsverket covering the rest of the healthcare sector including medical devices and IVD, Livsmedelsverket for drinking water, wastewater, and food, and the county administrative boards (länsstyrelserna) for public administration, waste management, chemicals, manufacturing, and research. Your supervisory relationship depends on what your organization does.

The MCF self-identification and registration deadline of **16 February 2026** has passed. Organizations that should have registered but did not are now exposed to the active enforcement powers granted under the Act, including unannounced audits and management sanctions for essential entities. Late registration is still better than no registration, and MCF has indicated it will prioritize systemic non-compliance over isolated late filings — but the legal posture is no longer "preparing for the deadline." It is "remediating against an active enforcement regime."

## 18 Sectors: Who Is In Scope

The Act designates sectors across two annexes. Size threshold for most entities: 50+ employees or annual turnover and balance sheet total exceeding €10 million. Trusted service providers and sole providers of essential services are in scope regardless of size.

| Annex I: Highly Critical Sectors | Annex II: Other Critical Sectors |
|---|---|
| Energy | Postal and courier services |
| Transport | Waste management |
| Banking | Chemicals |
| Financial markets | Food production and distribution |
| Healthcare | Manufacturing |
| Drinking water | Digital providers |
| Wastewater | Research |
| Digital infrastructure | |
| ICT service management (B2B) | |
| Public administration | |
| Space | |

State authorities, regions, and municipalities are in scope. Organizations are classified as either essential or important operators, a classification that determines supervision intensity and penalty ceiling.

| | Essential Entities | Important Entities |
|---|---|---|
| **Sectors** | Annex I (highly critical) | Annex II (other critical) |
| **Supervision type** | Proactive: scheduled and unannounced audits at any time | Reactive: triggered by evidence of non-compliance |
| **Fine ceiling** | €10M or 2% of global annual turnover | €7M or 1.4% of global annual turnover |
| **Incident reporting** | 24h / 72h / 1-month structured timeline | 24h / 72h / 1-month structured timeline |

## Ten Minimum Obligations and Incident Reporting

The Act mandates proportionate measures across ten minimum security areas, based on an all-hazards risk assessment:

| # | Obligation Area | Scope |
|---|---|---|
| 1 | Risk analysis strategies | Documented threat and vulnerability assessments |
| 2 | Incident handling | Detection, classification, containment, and response |
| 3 | Business continuity | Backup, disaster recovery, and crisis management |
| 4 | Supply chain security | Supplier contracts and third-party risk assessments |
| 5 | Secure development and maintenance | Security in procurement, development, and change management |
| 6 | Effectiveness testing | Penetration testing, audits, and control validation |
| 7 | Cyber hygiene and training | Employee awareness programmes and patch management |
| 8 | Cryptography and encryption | Data-at-rest and data-in-transit encryption policies |
| 9 | Personnel security and access control | Vetting, access rights management, and need-to-know |
| 10 | Authentication and communication | MFA and secure communication channel requirements |

Incident reporting follows a mandatory multi-stage timeline. Trust service providers face a shortened 24-hour deadline for the full notification stage.

| Stage | Deadline | Required content |
|---|---|---|
| Early warning | 24 hours | Notify MCF or sector supervisor; indicate if suspected unlawful or malicious |
| Full notification | 72 hours | Initial severity and impact assessment; preliminary root cause if known |
| Trust service providers | 24 hours | Shortened deadline applies to the full notification stage |
| Final report | 1 month | Root cause analysis, mitigation measures, and cross-border impact assessment |

## What Existing Frameworks Cover and What They Miss

Organizations already certified against ISO 27001:2022 are not starting from zero. ISO 27001:2022 covers a significant portion of the Act's control requirements, with targeted gaps in incident reporting, governance, and scope. DORA-compliant financial entities have additional coverage across overlapping requirements, though neither certification eliminates the need for a structured gap assessment.

| Requirement | ISO 27001:2022 | DORA | No framework |
|---|---|---|---|
| Risk analysis and incident handling | Covered | Covered | Full build required |
| Business continuity and DR | Covered | Covered | Full build required |
| Supply chain security | Partial | Covered | Full build required |
| 24h / 72h / 1-month incident reporting | Not covered | Partial | Full build required |
| Board-level cybersecurity training | Not covered | Not covered | Full build required |
| Entity-wide ISMS scope (incl. HR, finance) | Partial | Covered | Full build required |
| MFA and encryption policy documentation | Partial | Not covered (NIS2 gap) | Full build required |
| MCF registration | Not covered | Not covered | Full build required |

For DORA-regulated financial entities, the relationship is explicit in the Act: DORA prevails in areas of direct overlap. NIS2 adds obligations where DORA is silent, specifically personnel security measures (Article 21 I) and MFA and encryption policy documentation (Article 21 J). Financial entities must also register separately with MCF and their sector-specific Swedish authority under NIS2, independent of their DORA obligations.

## What This Means in Practice

Four immediate actions apply to all in-scope entities: confirm applicability against sector and size thresholds, self-identify and register with MCF (the 16 February 2026 deadline has passed; late registration remains the responsible posture and reduces enforcement exposure), classify the entity as essential or important, and conduct a gap assessment against the ten minimum requirement areas.

If ISO 27001 is in place, the remediation priorities are incident reporting workflow (24h/72h/1-month with assigned roles), board training documentation, and scope extension to HR, finance, and administrative systems beyond the existing ISMS boundary. If DORA compliance is in place, the gaps are narrower but specific: HR security, MFA and encryption policies, entity-wide scope, and MCF registration.

For organizations deploying AI agents within NIS2-regulated environments, agent-specific security considerations extend the Act's ten minimum measures. Our [AI agent deployment framework](/insights/ai-agent-deployment-security-framework) maps agent controls to ISO 27001, NIS2, and DORA obligations. For the broader AI threat landscape that boards should be briefed on, see [AI-powered cyber attacks in 2026](/insights/ai-cyber-threats-2026-board-briefing). For how NIS2 interacts with DORA, the Cyber Resilience Act, and the revised Cybersecurity Act at the vendor governance level, see [four frameworks, one vendor](/insights/four-frameworks-one-vendor-eu-regulatory-exposure).

The full Intelligence Brief covers the complete framework coverage matrix, supervisory authority mapping by sector, and maturity-level action plans for organisations at each stage of readiness.

## Sources

1. [Riksdag - Cybersäkerhetslag SFS 2025:1506](https://www.riksdagen.se/sv/dokument-och-lagar/dokument/svensk-forfattningssamling/cyberssakerhetslag-20251506_sfs-2025-1506/)
2. [European Commission - NIS2 Directive](https://digital-strategy.ec.europa.eu/en/policies/nis2-directive)
3. [ISO - ISO/IEC 27001:2022 Information Security Management](https://www.iso.org/standard/27001)
4. European Commission. Digital Operational Resilience Act (DORA). ec.europa.eu. 2025.
5. [MSB - Swedish Civil Contingencies Agency Cybersecurity Guidance](https://www.msb.se/en/)
6. [Energimyndigheten — New Cybersecurity Act enters into force in Sweden](https://www.energimyndigheten.se/en/news/2026/new-cybersecurity-act-enters-into-force-in-sweden/). January 2026.
7. [Advisense — The Swedish NIS2 Implementation: Cybersäkerhetslagen](https://advisense.com/2026/01/19/the-swedish-nis2-implementation-cybersakerhetslagen/). January 2026.

