CheapbookZ

Market Prices

Coin Price 24h
BTC Bitcoin
$78,071.7 -0.47%
ETH Ethereum
$2,459.84 +0.44%
SOL Solana
$102.51 -0.47%
BNB BNB Chain
$687.5 +0.12%
XRP XRP Ledger
$1.38 +0.21%
DOGE Dogecoin
$0.0829 +0.11%
ADA Cardano
$0.1991 +1.37%
AVAX Avalanche
$7.27 +0.92%
DOT Polkadot
$0.8700 +4.79%
LINK Chainlink
$11.43 +1.22%

Fear & Greed

69

Greed

Market Sentiment

Event Calendar

{{年份}}
08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

18
03
unlock Sui Token Unlock

Team and early investor shares released

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

12
05
halving BCH Halving

Block reward halving event

28
03
unlock Arbitrum Token Unlock

92 million ARB released

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

Altseason Index

40

Bitcoin Season

BTC Dominance Altseason

Gas Tracker

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

Market Cap

All →
1
Bitcoin
BTC
$78,071.7
1
Ethereum
ETH
$2,459.84
1
Solana
SOL
$102.51
1
BNB Chain
BNB
$687.5
1
XRP Ledger
XRP
$1.38
1
Dogecoin
DOGE
$0.0829
1
Cardano
ADA
$0.1991
1
Avalanche
AVAX
$7.27
1
Polkadot
DOT
$0.8700
1
Chainlink
LINK
$11.43

🐋 Whale Tracker

🟢
0x0fe5...976f
3h ago
In
3,228,949 DOGE
🔴
0xab87...e1e5
1h ago
Out
1,160,430 USDC
🔴
0x1a67...b46c
12m ago
Out
4,479,207 USDT

💡 Smart Money

0xc1b4...b632
Arbitrage Bot
+$3.2M
83%
0x5e5c...4e1d
Arbitrage Bot
+$1.3M
77%
0x52ad...8b5d
Top DeFi Miner
+$3.1M
75%

🧮 Tools

All →
AI

Agentjacking: The Structural Flaw That Turns AI Coding Agents Into Credential Mules

CryptoPlanB

The consensus that AI coding agents are safe because they only read data is broken. At DEF CON 34, Tenet Security turned that assumption inside out. They demonstrated a fully automated attack chain that weaponizes public Sentry DSNs to inject malicious commands into Claude Code and Cursor—agents that are supposed to revolutionize developer productivity. The result? A direct pipeline to AWS keys, GitHub OAuth tokens, and npm registry credentials. This isn't a theoretical paper. It's a live, repeatable exploit that hits the core of how AI agents trust external data.

Context: The MCP Trust Problem

MCP (Model Context Protocol) is Anthropic's open standard for connecting AI agents to external tools. It's elegant. It's powerful. And it's architecturally blind to one thing: the difference between data and instructions. When an agent pulls a Sentry issue via MCP, it sees raw markdown. The model doesn't know that the markdown came from an attacker who posted a fake error event. It just sees text that looks like a bug report. If that text says "Run npm install malicious-package to fix this," the agent may execute it.

Sentry's DSN (Data Source Name) is a public identifier. It's meant to be embedded in client code. But it also allows anyone to POST error events to any project, without authentication. That's by design—Sentry wants to accept crashes from anywhere. Combine that with an MCP server that reads those events, and you have a combinatorial vulnerability. Two individually safe design decisions create a gaping hole.

Agentjacking: The Structural Flaw That Turns AI Coding Agents Into Credential Mules

Core: The Attack Chain and Its Implications

Tenet's exploit is a six-step chain that is stunningly simple: 1. Scan for exposed Sentry DSNs (2,388 organizations found, including 71 in the Tranco top 1M websites). 2. POST a malicious error event containing a fake stack trace and markdown that instructs the agent to install a malicious npm package. 3. Wait for a developer to trigger the agent to debug Sentry issues (e.g., via "Fix the errors in my project"). 4. The agent reads the fake event via MCP, treats the markdown as a fix recommendation, and executes the command. 5. The npm package contains a payload that exfiltrates credentials from the developer's machine. 6. The attacker now has tokens to the developer's AWS, GitHub, and Docker registries.

Agentjacking: The Structural Flaw That Turns AI Coding Agents Into Credential Mules

In a controlled test across 100+ organizations, the success rate was 85%. That's not a lab curiosity. That's a production-ready attack.

The root cause is architectural: no current AI agent architecture can reliably separate data from instructions at the semantic level. The model's training data includes markdown that contains code examples. When the agent sees a bug report suggesting a fix, it's following the same pattern it learned from human-written documentation. The attacker is just writing the documentation.

Contrarian: The Band-Aid Solutions Are Not Solutions

Sentry's response was to deploy a content filter that blocks specific payload strings. That's an IoC-based approach. It blocks known bad strings, but a simple Base64 encode or a different prompt structure will bypass it. Tenet's own agent-jackstop tool is a set of endpoint hardening configurations: network egress allowlists, command execution approval, subprocess credential isolation. These reduce the blast radius, but they don't fix the fundamental issue: if an agent trusts MCP data, any source that feeds into MCP is a potential attack vector.

The industry is rushing to productize patches. Cloudflare could add data source reputation to its MCP gateway. Security startups will sell MCP traffic inspection. But none of these address the root cause. The root cause is that we are building agents that cannot distinguish between a bug report and a command. This is not a problem that can be solved with a firewall. It requires a change in how models reason about trust.

Based on my experience analyzing the 2020 DeFi yield farming explosion, I see the same pattern here. In DeFi, impermanent loss was a structural flaw masked by high APYs. Here, the structural flaw is trust in data origin, masked by the convenience of MCP. The market will eventually recognize that agents need a separate "instruction channel" that is cryptographically signed and auditable. Until then, every MCP connection is a potential liability.

The decoupling thesis: This event will decouple the adoption curve of AI coding agents from the hype curve. Enterprise security teams will now demand proof that agents can't be tricked by external data. That will slow deployment, but it will also create a new category of tools: MCP security gateways, agent behavior auditing, and credential vaults for AI workflows. The market will bifurcate into "safe agents" (with signed data feeds) and "unsafe agents" (default MCP). The latter will become the regulated version of the former.

Takeaway: Cycle Positioning and the Macro View

We are in the early innings of AI agent adoption. This event is a stress test, not a death knell. The cycle is clear: first comes functionality, then security, then regulation. We are at the transition from functionality to security. The winners will be the projects that solve the trust boundary problem—not with band-aids, but with protocol-level changes. MCP needs a security extension layer. Agents need to be trained to treat external data as untrusted. And every developer using Claude Code or Cursor should immediately apply network egress controls and command approval.

If the agent can't distinguish a bug report from a command, what else can't it distinguish? That's the question that will define the next wave of AI infrastructure. The market is about to find out who built for the parade and who built for the storm.