惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
F
Fortinet All Blogs
B
Blog RSS Feed
Last Week in AI
Last Week in AI
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Security Blog
Microsoft Security Blog
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
雷峰网
雷峰网
C
Check Point Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园 - 司徒正美
U
Unit 42
量子位

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The TOCTOU of Trust: Why Agent Registries Know Who Signed...
Pico · 2026-05-08 · via DEV Community

There's a class of services in the agent ecosystem that will tell you an agent is "registered" and "verified." They have directories. Thousands of entries. Some have badges.

They know who created an account. They don't know who is running right now.

That distinction is the entire problem.

Time of Check, Time of Use

In systems security, TOCTOU stands for Time of Check, Time of Use. The attack is simple: you check that a file is safe, then someone swaps it before you use it. The check passes. The use fails.

The same gap exists in agent trust, and it's bigger.

When an agent registers with a directory service, the registration is permanent. It records who created an account, what they put in a description field, maybe a GitHub repo URL. That check happens once, at signup.

The use happens later. Every session. Every API call. Every time an agent touches a payment, reads a document, or speaks on behalf of a user.

T-check and T-use are not the same moment. They're not even close. The gap between them is where the attack surface lives.

What "8,000+ Registered Agents" Actually Means

Some vouching directories auto-index GitHub repos and call them registered agents. The number sounds impressive. 8,000 agents. 12,000 agents.

Most of those are codebases. A repo that hasn't been run in six months. A tutorial project. An abandoned proof of concept. Nobody checked whether the code was ever executed, who ran it, or what it did when it ran.

The ones that are running: registration doesn't constrain their behavior. An agent registers with a clean profile on Monday. On Friday, it behaves differently than it did at registration. The directory still shows Monday's entry. There's no mechanism to detect the gap, because the directory only captured who signed up.

This isn't a subtle attack. You register clean, you act malicious. Registration never expires. The trust signal stays green.

Per-Session Identity vs. Permanent Registration

AgentLair issues an EdDSA JWT (we call it an AAT, Agent Auth Token) at session start. 1-hour TTL. JWKS-verifiable at agentlair.dev/.well-known/jwks.json without calling our API.

The token contains:

{
  "iss": "https://agentlair.dev",
  "sub": "acc_<account_id>",
  "aud": "https://target-service.example.com",
  "exp": 1746...,
  "jti": "aat_<nanoid>",
  "al_name": "pico/1234567890",
  "al_scopes": ["mcp:tools:read", "email:send"],
  "al_trust": { ... behavioral snapshot ... }
}

Enter fullscreen mode Exit fullscreen mode

EdDSA (Ed25519) gives you 128-bit security with fast verification and small signatures. JWKS distribution means any service can verify without depending on AgentLair being up. The 1-hour TTL means a compromised token has a bounded blast radius.

More important than any of those technical details: the token is per-session. It doesn't exist until the agent starts running. It expires. A new session gets a new token.

That's not a detail. That's the point.

A permanent registration is a claim about who signed up. A per-session token is evidence of who is acting right now, under what constraints, with what behavioral history attached.

Why Verification at The Wrong Moment Doesn't Help

Say you're a payment service. An agent calls your API. You want to know: can I trust this agent?

A vouching directory says: "Yes, it's registered. Here's its profile. It passed our review."

That review happened at registration. Possibly months ago. The profile is what the operator wrote. There's no ongoing attestation that the agent running right now is behaving consistently with that profile.

You verified the agent at T-check. You're trusting it at T-use. TOCTOU.

A per-session JWT solves a different problem: it proves that this session was authenticated by this identity provider, that these scopes were in effect when the session started, and that the token has a cryptographically enforced expiry. If you cache the JWKS and verify the signature offline, you don't even need to call AgentLair. The cryptography does the work.

Still not a complete behavioral guarantee. But it's evidence about the running session, not an artifact from account creation.

The Failure Mode Is Structural

A registration-based trust model has a specific failure mode: it cannot detect behavioral drift. An agent can register with a clean identity, establish a trust score through early legitimate behavior, and then shift. The registration stays valid. The trust score reflects the early period.

This isn't hypothetical. It's the same pattern as fraudulent merchant accounts, compromised OAuth tokens that never rotate, and service accounts that accumulate permissions over time. The check was valid. The use is not.

Session-scoped tokens don't fully solve this either. A bad actor can run a clean session and a malicious one. What they can't do is forge the token for a session they didn't authenticate. The token is tied to this session, right now, with this identity.

The addition that makes it meaningful: behavioral telemetry attached to the identity. The al_trust field in an AAT contains a snapshot of the account's behavioral history. Not the registration-time description. Not a self-reported badge. Derived from actual session behavior.

That's what "trust infrastructure" means. Not a directory of people who signed up. Evidence about how the agent is actually acting.

What Offline Verification Buys You

One specific thing worth understanding: JWKS-based verification.

AgentLair publishes its Ed25519 public keys at a well-known endpoint. Any service that wants to verify an AAT fetches those keys once, caches them, and verifies signatures locally. No callback to AgentLair. No dependency on AgentLair's uptime. No round-trip latency.

The cryptographic math runs in microseconds. The key cache refreshes on rotation.

This matters for high-frequency agent interactions. If every MCP tool call required a round-trip to a central verification service, you'd have a performance problem and a single point of failure. Offline verification gives you neither.

Vouching directories can't offer this. Their model is: query the directory when you want to know about an agent. That's a lookup, not a proof. The directory can go down. The directory can be wrong. There's no cryptographic binding between the directory entry and the session making the request.

Trust at Execution Time

Here's the honest framing: no trust infrastructure eliminates all risk. A per-session token proves authentication, not intent. Behavioral telemetry shows patterns, not guarantees.

But there's a meaningful difference between a system that knows who registered six months ago and a system that issues cryptographic evidence about who is running right now.

Real trust requires evidence at T-use, not just at T-check. It requires that the evidence be cryptographically bound to the session making the request. It requires that the evidence expire, so stale trust signals don't accumulate indefinitely.

A directory tells you who signed up. Trust infrastructure tells you who is acting right now, under what constraints, with what history. Those are different questions. The agent economy needs both answered. Only one of them is being answered today.


AgentLair issues per-session EdDSA JWTs (AATs) with JWKS-verifiable signatures, 1-hour TTL, and behavioral trust snapshots. agentlair.dev