LumChain

Market Prices

Coin Price 24h
BTC Bitcoin
$63,977.9 -1.91%
ETH Ethereum
$1,876.09 -2.51%
SOL Solana
$76.05 -1.54%
BNB BNB Chain
$600.5 -1.35%
XRP XRP Ledger
$1.02 -2.01%
DOGE Dogecoin
$0.0698 -1.30%
ADA Cardano
$0.1960 -1.31%
AVAX Avalanche
$6.49 -0.99%
DOT Polkadot
$0.8063 -0.32%
LINK Chainlink
$8.29 -0.53%

Fear & Greed

30

Fear

Market Sentiment

Event Calendar

{{年份}}
28
03
unlock Arbitrum Token Unlock

92 million ARB released

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

12
05
halving BCH Halving

Block reward halving event

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

18
03
unlock Sui Token Unlock

Team and early investor shares released

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

Altseason Index

44

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
$63,977.9
1
Ethereum
ETH
$1,876.09
1
Solana
SOL
$76.05
1
BNB Chain
BNB
$600.5
1
XRP Ledger
XRP
$1.02
1
Dogecoin
DOGE
$0.0698
1
Cardano
ADA
$0.1960
1
Avalanche
AVAX
$6.49
1
Polkadot
DOT
$0.8063
1
Chainlink
LINK
$8.29

🐋 Whale Tracker

🔴
0x69ea...beeb
12h ago
Out
3,027 SOL
🟢
0x0395...ae20
12m ago
In
24,092 SOL
🟢
0x2690...1fb4
2m ago
In
33,471 SOL

💡 Smart Money

0x8654...c009
Top DeFi Miner
+$0.3M
90%
0x429b...059c
Arbitrage Bot
+$2.9M
67%
0xe45b...82d1
Top DeFi Miner
+$4.0M
83%

🧮 Tools

All →
Companies

Agentjacking: The Next Silent Threat to Crypto's Developer Backbone

CryptoWhale

The most dangerous attack on crypto infrastructure this year doesn't target a smart contract, a bridge, or an exchange hot wallet. It targets the developer's machine, through the AI agent they trust to write code.

Agentjacking: The Next Silent Threat to Crypto's Developer Backbone

At DEF CON 34, Tenet Security demonstrated an attack chain they call "Agentjacking." They claim an 85% success rate against 100+ organizations. The vector: public Sentry DSNs combined with MCP-enabled AI coding agents. The prize: AWS keys, GitHub OAuth tokens, npm registry credentials, Docker tokens — the exact keys that unlock crypto deployments, private key access, and exchange API control.

Volume is the only truth the market respects. Here, the volume is 2,388 exposed Sentry DSNs across organizations, 71 in the Tranco top 1M websites, and roughly 27% of Fortune 1000 companies reachable through Cloudflare's MCP integration. These aren't theoretical numbers. They are the attack surface.

Context: The Architecture of Trust

Sentry is the dominant error-monitoring platform. It collects crash reports via a DSN (Data Source Name) — a public identifier that allows anyone to POST error events to a project. No authentication required. That's by design. It's meant to be lightweight.

In 2025, Anthropic's Model Context Protocol (MCP) became the standard for connecting AI coding agents like Cursor and Claude Code to external tools. Developers connect their agent to Sentry via MCP, so the agent can read error logs and suggest fixes. It's a natural workflow: debug faster, ship faster.

But the intersection of two innocent design decisions creates a vulnerability. Sentry's unauthenticated ingestion endpoint accepts any POST with a valid DSN. MCP lets the agent read Sentry issues as context. The agent treats that context as trusted data — including any markdown-formatted "fixes" embedded by an attacker.

Core: The Six-Step Attack Chain

The attack is a variant of indirect prompt injection. It doesn't bypass model safeguards. It exploits the default trust between agent and tool outputs.

  1. Discover public DSNs. Attackers scan public repositories, pastebins, or leaked configs for Sentry DSNs. 2,388 organizations are exposed.
  1. POST malicious error events. Using the public DSN, the attacker sends a crafted error payload to Sentry. The payload contains markdown with injection instructions disguised as a fix suggestion.
  1. Developer triggers agent. The developer sees a Sentry alert and asks their AI agent: "Check the latest Sentry issues and fix this."
  1. Agent reads the malicious issue. The MCP connection fetches the issue. The agent's reasoning model treats the markdown as legitimate instructions.
  1. Agent executes the malicious fix. The injected prompt tells the agent to run npm install a malicious package, or execute a shell command.
  1. Credential theft. The malicious package exfiltrates environment variables, SSH keys, and API tokens from the developer machine.

The current AI agent architecture cannot distinguish data from instructions. This is the root cause. No amount of prompt engineering fixes it. The agent sees a string in a database; it does not know if that string was written by an attacker.

Sentry deployed a content filter to block specific payload strings. That's a static IoC-level blacklist. Easily bypassed with encoding or randomization. Tenet released agent-jackstop, a set of endpoint hardening configurations: network egress whitelisting, command execution approval, subprocess credential isolation, and treating all tool outputs as untrusted. These are mitigation steps, not a cure. The architecture flaw remains.

For crypto, this is terrifying. Crypto developers routinely manage private keys, deploy contracts, and access exchange APIs from their workstations. A compromised AI agent can steal the keys to Layer 2 sequencer wallets, exchange cold storage access, or smart contract admin keys. When the faucet runs dry, the dryers crack. The faucet of proper security hasn't run yet — but when it does, the cracks will be in the AI agents that are now standard in every developer toolchain.

Contrarian: The Blind Spot of On-Chain Focus

While the crypto industry obsesses over on-chain exploits, DeFi audits, and cross-chain bridge security, the attack surface shifts to the developer's chair. The largest crypto hacks in history — Ronin, FTX, Wormhole — all involved social engineering or credential theft. Agentjacking automates that theft at scale, targeting the one asset every developer trusts: their AI pair programmer.

The contrarian angle: the threat may be overhyped in controlled demonstrations, but the potential for real damage is underestimated. In a real deployment, a developer under pressure to fix a production bug is far more likely to approve the agent's suggested fix without scrutiny. The 85% success rate in a lab likely translates to higher in the field.

Crypto projects are rushing to adopt AI coding agents to accelerate development. They are also rushing to adopt MCP for tool integration. The market is chasing ghosts in the digital art auction house, while the real threat is quietly stealing developer credentials.

Takeaway: The Next Major Crypto Hack Will Come Through an AI Agent

This is not a drill. The crypto industry must add "Agent Security" as a new pillar in its risk management playbook. Implement network whitelisting, command approval, and credential isolation for all AI coding workflows today. MCP protocol needs a security extension that tags tool outputs with a trust level and allows the agent to distinguish between data and instructions.

The question is not if an agent-compromised attack will drain a crypto treasury. The question is when. Are you ready to trust your AI agent with your private keys?