BeChain

Market Prices

BTC Bitcoin
$79,819.1 +0.06%
ETH Ethereum
$2,490.94 +0.60%
SOL Solana
$105.62 +1.87%
BNB BNB Chain
$749 -3.75%
XRP XRP Ledger
$1.41 -0.40%
DOGE Dogecoin
$0.0894 -1.50%
ADA Cardano
$0.2191 -0.45%
AVAX Avalanche
$7.66 +0.51%
DOT Polkadot
$0.9574 +5.41%
LINK Chainlink
$12.32 +2.35%

Event Calendar

{{年份}}
18
03
unlock Sui Token Unlock

Team and early investor shares released

12
05
halving BCH Halving

Block reward halving event

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

28
03
unlock Arbitrum Token Unlock

92 million ARB released

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

Tools

All →

Altseason Index

41

Bitcoin Season

BTC Dominance Altseason

Market Cap

All →
# Coin Price
1
Bitcoin BTC
$79,819.1
1
Ethereum ETH
$2,490.94
1
Solana SOL
$105.62
1
BNB Chain BNB
$749
1
XRP Ledger XRP
$1.41
1
Dogecoin DOGE
$0.0894
1
Cardano ADA
$0.2191
1
Avalanche AVAX
$7.66
1
Polkadot DOT
$0.9574
1
Chainlink LINK
$12.32

🐋 Whale Tracker

🟢
0x3514...f48a
30m ago
In
4,468,286 USDT
🔵
0x7e66...fa39
2m ago
Stake
2,485.82 BTC
🔴
0xb410...b637
2m ago
Out
19,996 SOL
Layer2

Agentjacking at DEF CON 34: The Unseen Attack Vector That Turns AI Coding Agents into Credential Theft Tools for Crypto Infrastructure

0xCred

The convergence of AI agents and blockchain was supposed to be the next liquidity frontier. Instead, it just became the most efficient credential harvesting pipeline I've seen since the 2022 FTX collapse. At DEF CON 34, Tenet Security demonstrated a fully weaponized attack chain—dubbed Agentjacking—that exploits the trust between AI coding agents and public error monitoring services. This is not a theoretical vulnerability. It is a structural defect in how AI agents integrate with external data sources, and it directly threatens the crypto infrastructure that developers rely on for private key management, smart contract deployment, and DeFi protocol operations.

Macro breaks micro. Always.

Let me unpack the context. The attack targets the Model Context Protocol—MCP, an open standard pushed by Anthropic that allows AI agents like Claude Code and Cursor to read from and write to external tools. Sentry, a widely used error monitoring platform, provides a public DSN (Data Source Name) that any client can use to send crash reports. Normally, a developer configures their app to send errors to Sentry, then asks an AI coding agent to debug by reading those issues via MCP. The agent pulls down the error description as markdown, interprets it, and suggests fixes. The attack is a chain of six steps: (1) an attacker discovers a public Sentry DSN—there are 2,388 organizations with openly discoverable DSNs, including 71 in the top 1 million websites and roughly 27% of Fortune 1000 companies who use Cloudflare’s MCP integration. (2) The attacker POSTs a malicious error event to that DSN. (3) The developer triggers their agent to read Sentry issues for debugging. (4) The agent ingests the markdown content, which contains an indirect prompt injection—a disguised instruction to install a malicious npm package. (5) The agent executes the instruction, running npm install on a package that steals credentials. (6) The attacker exfiltrates AWS keys, GitHub OAuth tokens, npm registry credentials, and—critically for crypto—any private keys stored in environment variables or secret stores.

The technical chain is closed and replicable. The root cause is an architectural flaw: AI agents today cannot semantically distinguish between data and instructions. Any external data source that the agent trusts becomes a vector for command injection. Sentry’s ingestion endpoint accepts any POST with a valid DSN—no authentication required beyond the DSN itself. That’s by design, because Sentry’s job is to collect crash data. MCP’s job is to make that data available to agents. The combination of two legitimate design decisions creates an exploitable seam. This is not a zero-day in the traditional sense—it is a composition vulnerability.

Now, why does this matter for crypto? Because crypto developers are the heaviest users of AI coding agents. Every smart contract audit, every DeFi protocol deployment, every wallet integration involves sensitive credentials. The agent’s context window now includes a malicious npm package that can steal the private key to a multisig wallet or the deployment key for a Solana program. The attack does not require the agent to have direct access to the blockchain—it only needs to compromise the developer’s machine, which already holds the keys. In my 2026 whitepaper on autonomous economic agents, I predicted that AI-to-AI commerce would drive micro-payments, but I also warned that the security perimeter of a developer’s local environment would be the weakest link. This is that link.

The core insight here is the structural integrity of the trust model. The AI agent’s trust of external data sources is absolute, not conditional. There is no layer of sanitization, no instruction hierarchy, no provenance tagging. The model treats a Sentry issue’s markdown the same as a user’s direct instruction. This is a stress test of the entire AI-agent-as-a-tool paradigm. The crypto industry has been rushing to adopt these agents for productivity gains, but the cost is a new attack surface that bypasses all traditional endpoint security controls. Firewalls don’t inspect the content of a Sentry response. EDRs don’t flag an AI agent installing a package as suspicious because the agent is a trusted process.

Let me address the contrarian angle. The prevailing narrative is that this is a security issue that can be fixed with better filters or agent-side policies. Sentry deployed a content filter blocking specific payload strings. Tenet released agent-jackstop, a drop-in configuration that enforces network egress allowlists, command execution approvals, and subprocess credential protection. These are stopgaps. They do not solve the root cause. The root cause is that the MCP protocol has no distinction between “data” and “instruction.” A markdown block that says “Run npm install malicious-package” is just data until the agent interprets it as an instruction. The only way to break this is to either (a) force all external data sources to carry a semantic label—a “trustworthiness” or “intent” flag—or (b) train models to never execute instructions from tool outputs. Neither exists in production today. The decoupling thesis is this: crypto security has been focused on smart contract audits and private key custody, but the real vulnerability is in the tooling layer that developers use to interact with those contracts. The AI agent is now the most dangerous peripheral in a developer’s workflow.

I have direct experience with this kind of structural risk. In 2020, I analyzed the peg instability of AlphaFinance Lab’s sUSD and found that the fragility came from the interaction of two independent design choices—a liquidation mechanism and a price oracle—not from a single bug. The same pattern emerges here. Sentry’s open ingestion and MCP’s data trust were designed by different teams for different purposes. Their intersection is where the exploit lives. This is why I always start with the macro structure: the system’s integrity is only as strong as the weakest unexamined interaction.

What are the implications for the crypto market? First, the adoption of AI coding agents will slow. Enterprise security teams will require proof that agents are not reading from untrusted external data sources. That means fewer developers using Cursor or Claude Code for sensitive contract work until agent-jackstop or similar tools become standard. Second, MCP will need a security extension layer. I expect either Anthropic or a consortium to propose an MCP Security Profile that adds content origin verification, output sanitization, and capability scoping. Third, the error monitoring market—Sentry specifically—will face a trust crisis. Clients will demand signed envelopes, DSN rotation, and IP allowlisting. If Sentry refuses to make these changes, as they publicly stated, organizations will migrate to self-hosted alternatives like OpenTelemetry with a custom MCP gateway. Fourth, a new security product category emerges: AI Agent Supply Chain Security. Tools that audit MCP connections, monitor agent behavior, and enforce least-privilege for tool outputs will become as essential as static analysis tools are today.

Let me offer a forward-looking judgment. The crypto cycle is entering a phase where institutional capital demands operational security. The ETF inflows of 2024 created a higher floor for BTC, but they also raised the bar for the infrastructure that supports it. A single agentjacking incident that steals a protocol’s deployment keys could trigger a liquidation cascade across multiple DeFi markets. The market will price in this risk. I expect to see a premium on crypto projects that can demonstrate AI-safe development practices, and a discount on those that rely on default agent setups. The takeaway is not to panic—it is to recognize that the macro architecture of AI-agent integration is broken, and fixing it will require protocol-level changes, not just endpoint patches. Macro breaks micro. Always.

Fear & Greed

73

Greed

Market Sentiment

Gas Tracker

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

💡 Smart Money

0xa06f...13f4
Early Investor
+$0.6M
81%
0xec77...e661
Top DeFi Miner
-$1.7M
83%
0xbf1e...aa65
Institutional Custody
+$4.3M
86%