HabrAugust 21, 2026🇷🇺Translated from Russian

Zero Trust for AI Agents: Why Separate Identity Alone Is Not Enough

Denis Korbakov, Technical Director at Smart-Soft, argues that conventional identity and access management systems are ill-equipped for the new class of autonomous AI agents that independently choose tools, switch contexts, and delegate permissions.

NIST SP 800-207 has long included non-person entities in its Zero Trust model, yet most corporate IAM implementations remain designed either for interactive human sessions or for long-lived static service accounts. AI agents sit between these two paradigms, requiring dynamic, task-specific credentials rather than persistent broad rights.

February 2026 data from the Gravitee State of AI Agent Security report reveal that only 21.9% of teams assign agents their own identity. Meanwhile 45.6% reuse shared API keys across agents and 44.4% rely on generic tokens. Cloud Security Alliance and Aembit findings indicate that 68% of organizations cannot clearly separate agent actions from human actions, 74% observe excessive access grants, and 52% record rights inheritance from users or other systems.

Reducing Zero Trust to three operational principles—explicit verification, least privilege, and assume breach—Korbakov maps each to agent workloads. Explicit verification demands that every tool invocation carries a verifiable agent identity together with a short-lived, narrowly scoped authorization decision that records the resource, operation, task, and initiator.

Least privilege requires binding rights to the exact task at hand rather than to the agent’s theoretical maximum permissions. Each logical agent receives a base machine identity, while every delegated sub-task obtains a short-lived derived context that preserves the full delegation chain: user → agent → sub-agent → tool.

Assume breach means that even if an agent is compromised through indirect prompt injection—an attack highlighted in OWASP LLM01:2025—or its runtime credentials are stolen, the resulting damage must be technically limited by architecture. The proposed three-layer model comprises machine identity, tool-level authorization, and independent policy enforcement points at the network (NGFW), Kubernetes (service mesh), or external API/MCP gateway layers.

A practical ticket-diagnosis workflow demonstrates the difference. Instead of a single broad token, the agent receives a 300-second credential limited to reading one specific repository and writing a single comment. Network traffic is forced through a dedicated VLAN segment enforced by Traffic Inspector Next Generation, producing both rule-hit syslog records and NetFlow metadata that can be correlated with agent-platform logs.

The article leaves open the question of sub-agent identity inheritance versus independent credentials and invites practitioners to share where they store and verify delegation chains—in IAM, API gateways, agent runtimes, or MCP gateways. Reference materials including OPA/Rego policies, stop-criterion matrices, and prompt-injection incident runbooks are provided for pilot deployments.

Related articles

BoletimSecAI Security

AWS Details Architecture to Reduce Prompt Injection Risks in AI Agents

AWS has introduced a new architecture designed to prevent compromised or manipulated AI agents from accessing data beyond user permissions. The approach relies on Amazon Bedrock AgentCore to shift authorization decisions from the agent itself to the underlying infrastructure and connected services. The core risk arises when agents receive broad credentials to query databases, repositories, and SaaS platforms, allowing potential prompt injection attacks to retrieve unauthorized information. In the proposed design, users authenticate via Amazon Cognito and receive JWT tokens containing attributes such as department or role. The AgentCore Runtime validates these tokens before executing any agent actions, rejecting requests that violate configured rules. For DynamoDB queries, temporary credentials are issued through AssumeRoleWithWebIdentity, with IAM policies enforcing strict access to authorized data partitions only.

AntiMalwareAI Security

Cybercriminals Weaponize OpenClaw AI Agent in ClawHavoc Campaign to Distribute Infostealers

Threat actors have repurposed the OpenClaw AI agent to deliver infostealers by uploading hundreds of malicious skills to ClawHub. The campaign, named ClawHavoc, tricks users into executing encoded commands or installing required tools under the guise of helpful AI recommendations. Researchers at Trellix identified 341 malicious skills, with 335 targeting installation of Atomic macOS Stealer on macOS systems. On Windows, victims receive password-protected archives and fake verification utilities that mirror classic ClickFix tactics. Analysis of repository history uncovered 1,184 suspicious packages linked to 12 authors, enabling theft of passwords, browser data, crypto wallets, API keys, SSH keys, and source code. Users are advised to update OpenClaw, audit installed skills, remove suspicious packages, and rotate potentially compromised credentials while running the agent in a restricted environment.

HabrAI Security

Server Log Analysis Reveals How Major AI Crawlers Actually Behave on Websites

A detailed examination of server access logs shows that AI vendors operate multiple distinct bots with separate purposes rather than a single crawler. GPTBot performs scheduled training data collection while OAI-SearchBot builds search indexes and ChatGPT-User fetches pages in direct response to user queries. The same pattern appears with PerplexityBot and Perplexity-User at Perplexity as well as ClaudeBot and user agents at Anthropic. Blocking all AI-related user agents in robots.txt therefore prevents both training crawls and live user-driven visits. Analysis of 515 million AI bot events found only 408 requests for llms.txt, confirming the file sees negligible adoption. Verification of IP addresses against vendor-published ranges remains the reliable method for distinguishing genuine bots from spoofed traffic. Effective practices focus on clean HTML structure, fast response times, and selective robots.txt rules that allow user-agent traffic while restricting training crawlers.

AntiMalwareAI Security

Nearly 70% of Companies Lack Control Over AI Agent Privileges, PAM Survey Finds

A recent survey conducted by AM Media among viewers and participants of the webinar 'How to Choose the Best PAM in 2026' shows that 68% of organizations fail to fully control privileges assigned to AI agents and automated services. Another 67% report insufficient oversight of API keys, tokens, and secrets, while 63% cite gaps in managing CI/CD and DevOps tool access. Traditional human administrator accounts are better protected at 34%, highlighting a shift in risk toward machine identities. Experts from NGR Softlab and Solar Group emphasize that service accounts often interact with multiple systems and require broad rights, making their compromise far more damaging than individual user breaches. JumpServer PAM CEO Denis Morozov noted that AI integration into PAM platforms could help map complex permission matrices and quantify risks for security teams. Participants also prioritized usability (72%) and ease of deployment (63%) when selecting PAM solutions over cost considerations.