Agent Tracker
Contact tracing for AI agents. Track rogue agents across the network with behavioral fingerprinting, cross-sensor correlation, and automated response triggers.
Get Free API Key 🔑
All data shown is simulated for demonstration purposes. Live data requires an API key.
847
Tracked Agents
23
Active Alerts
156
Correlations
4
Sensor Sources
Sensor Sources
Scanner
Alerts from output scanning — injections, hallucinations, PII
Trust Network
Trust violations, declined attestations, score drops
Shadow Network
Honeypot captures, attacker fingerprints, TTPs
Firewall
Blocked requests, quarantine events, rule triggers
Highest Risk Agents
| Agent | Risk Score | Signals | Auto-Response | Status |
|---|---|---|---|---|
| Unknown-v7x | 92/100 | Injection + honeypot + firewall block | Block | Quarantined |
| Scraper-Bot-9 | 85/100 | Rate limit + data exfil attempt | Block | Blocked |
| ShadowAgent-3 | 67/100 | Trust violation + scanner alert | Alert | Monitoring |
| CrawlBot-12 | 54/100 | Rate limit + low trust | Throttle | Monitoring |
Auto-Response Actions
Alert
Notify security team via webhook
Quarantine
Isolate agent for manual review
Block
Permanent deny via Firewall
Intel Feed
Auto-add to Threat Intel DB
API Example
// Get all tracked agents sorted by risk
const agents = await ac.tracker.list({ sortBy: 'risk', limit: 20 });
// Get details on a specific agent
const detail = await ac.tracker.get('did:agent:suspicious');
console.log(detail.riskScore); // 92
console.log(detail.signals); // ['injection', 'honeypot', 'firewall']
console.log(detail.timeline); // chronological event log