Market Prices

BTC Bitcoin
$75,734.2 -4.65%
ETH Ethereum
$2,400.42 -7.56%
SOL Solana
$96.89 -7.39%
BNB BNB Chain
$713.3 -2.43%
XRP XRP Ledger
$1.28 -14.27%
DOGE Dogecoin
$0.0800 -6.79%
ADA Cardano
$0.1954 -9.20%
AVAX Avalanche
$7.26 -6.52%
DOT Polkadot
$0.9469 -8.12%
LINK Chainlink
$10.97 -8.03%

Event Calendar

{{年份}}
10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

28
03
unlock Arbitrum Token Unlock

92 million ARB released

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

18
03
unlock Sui Token Unlock

Team and early investor shares released

12
05
halving BCH Halving

Block reward halving event

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

Gas Tracker

Ethereum 28 Gwei
BNB Chain 3 Gwei
Polygon 42 Gwei
Arbitrum 0.5 Gwei
Optimism 0.3 Gwei

💡 Smart Money

0xa9c3...1996
Experienced On-chain Trader
+$3.3M
85%
0x4c00...172c
Institutional Custody
+$2.0M
91%
0xdb3a...d717
Early Investor
+$1.7M
79%

🧮 Tools

All →

Agentjacking: The Composability Crisis No One Wants to Fix

Credtoshi Scams

At DEF CON 34, a research team from Tenet Security dropped a live demo that should terrify every developer using AI coding agents. They found 2,388 organizations with publicly exposed Sentry DSNs—error monitoring endpoints that require no authentication to accept data. In 85% of controlled tests, the agent executed the attacker's commands without a single flag.

This isn't a bug in the model. It's a failure in the architecture of trust. The same composability flaw that gave us the DAO hack in 2016 is now hitting the AI agent stack.

Context: The Unholy Trinity of Convenience

Sentry is the go-to error monitoring service for millions of developers. It's a black box: you send crash data, it returns a dashboard. The DSN (Data Source Name) is the key to that box. By design, anyone with a valid DSN can POST error events. No authentication. No signature. The assumption: DSNs are secret. But they're not. They're baked into client-side code, leaked on GitHub, scrapable from public repos.

Enter MCP—the Model Context Protocol. It's Anthropic's standard for connecting AI agents to external tools. Cursor, Claude Code, and others use MCP to let agents query Sentry for debugging. When a developer asks an agent to "fix the error in Sentry," the agent reads the issue description—often formatted in markdown—and treats it as a trusted instruction.

The attack chain is clean: 1. Attacker finds a public DSN. 2. POSTs a malicious event with a markdown payload that looks like a fix: "Install this package to resolve the error." 3. Developer triggers the agent to read the Sentry issue. 4. Agent sees the markdown, interprets it as a command, and runs npm install malicious-package. 5. The package steals AWS keys, GitHub tokens, all stored on the developer's machine.

No model jailbreak. No complex exploit. Just two legit design decisions colliding.

Core: The Architecture of Blind Trust

The root cause is simple: current AI agents cannot distinguish between data and instructions. When the agent reads a Sentry issue, it sees text. That text could be a crash log or a bash command. The model has no semantic layer to separate them. This is indirect prompt injection, weaponized for real-world damage.

Based on my experience auditing smart contracts in Mumbai, I've seen this pattern before. In 2017, I found an integer overflow in a DEX's liquidity pool logic. The vulnerability existed because two separate functions—one for deposit, one for withdrawal—were each safe on their own, but combined with a specific sequence, they created a drain. The same principle applies here: Sentry's ingestion endpoint is safe alone. MCP's data fetching is safe alone. Together, they form a credential siphon.

Agentjacking: The Composability Crisis No One Wants to Fix

Sentry's response tells you everything. They deployed a content filter—a blacklist of specific payload strings. That's an IoC-level band-aid. It doesn't fix the root cause: the ingestion endpoint remains unauthenticated. The MCP protocol remains blind to content trust. Sentry's engineers said a platform-level fix is "technically unsound." I call it a business decision. Changing the authentication model would break their entire product's ergonomics. Easier to blame the agent.

Agentjacking: The Composability Crisis No One Wants to Fix

But the agent is the victim, not the villain. The villain is the assumption that external data sources are trustworthy. Speed is a feature, not a bug, until it breaks. The agent's speed—its ability to read, reason, and execute—is what makes it useful. But that same speed amplifies the impact of a single poisoned input.

Tenet's tool, agent-jackstop, is a start. It adds network whitelists, command approval prompts, and subprocess credential isolation. But it's a client-side patch. The protocol gap remains. Every MCP server that feeds data into an agent is a potential attack vector. The problem scales with every new integration.

Contrarian: The Solution Isn't Better Filters

Conventional wisdom says: train agents to ignore instructions in data, or use stronger content filters. That's wrong. The problem is architectural. You cannot train a model to reliably distinguish a repair instruction from a malicious one when both are encoded in the same text format. The model's context window is flat. It has no inherent trust boundary marker.

What we need is a protocol-level separation of concerns. MCP should require every data source to include a "trust level" or "intent flag." Error messages should be explicitly marked as data, not commands. And agents should refuse to execute any instruction that originates from a non-human source unless explicitly approved by the user.

This is the same lesson DeFi learned in 2020. Composability is powerful, but only if you have clear boundaries. The DAO hack taught us that cross-contract calls need reentrancy guards. The Agentjacking attack teaches us that cross-tool data flows need trust boundaries.

Curation is the new consensus mechanism. Instead of relying on a single protocol to fix everything, we need a market of data curators—services that verify, sanitize, and sign external data before it reaches the agent. The agent should only trust data that carries a verifiable proof of non-malicious intent. This is analogous to oracles in DeFi. You don't trust a single price feed; you aggregate and verify.

Agentjacking: The Composability Crisis No One Wants to Fix

Takeaway: Infrastructure Is Permanent

This attack is a warning shot. The AI agent ecosystem is still in its infancy, but it's already repeating the mistakes of early blockchain. The rush to composability without security boundaries leads to catastrophic failures.

For developers: stop treating your agent's context window as a trusted execution environment. Anything that comes from an external API is a potential weapon. Use agent-jackstop or equivalent, but also push your tool vendors to adopt protocol-level trust models.

For security teams: this is a new attack surface. Agent supply chain security will become a budget line item. The organizations that invest in robust infrastructure now will survive the next wave of exploits.

Yields are transient; infrastructure is permanent. The hype around AI coding agents will fade when the next big breach hits. What will remain is the foundation of trust we build today. The protocol is neutral; the user is the variable. But the architecture must be resilient.

I don't predict trends; I ride the volatility. And right now, the volatility is in the gap between what agents can do and what they should trust. Fix that gap, and you've built something lasting.

Fear & Greed

69

Greed

Market Sentiment

Altseason Index

41

Bitcoin Season

BTC Dominance Altseason

Market Cap

All →
# Coin Price
1
Bitcoin BTC
$75,734.2
1
Ethereum ETH
$2,400.42
1
Solana SOL
$96.89
1
BNB Chain BNB
$713.3
1
XRP Ledger XRP
$1.28
1
Dogecoin DOGE
$0.0800
1
Cardano ADA
$0.1954
1
Avalanche AVAX
$7.26
1
Polkadot DOT
$0.9469
1
Chainlink LINK
$10.97

🐋 Whale Tracker

🔵
0xf7fe...db6a
12m ago
Stake
3,057 SOL
🔵
0xf72e...026c
30m ago
Stake
1,654,178 DOGE
🟢
0xd239...8190
5m ago
In
1,867,937 USDT