CheapbookZ

Market Prices

Coin Price 24h
BTC Bitcoin
$77,882.8 -0.96%
ETH Ethereum
$2,450.02 +0.08%
SOL Solana
$102.14 -1.02%
BNB BNB Chain
$686.1 -0.23%
XRP XRP Ledger
$1.37 -0.65%
DOGE Dogecoin
$0.0824 -0.71%
ADA Cardano
$0.1970 +0.25%
AVAX Avalanche
$7.22 -0.12%
DOT Polkadot
$0.8552 +2.70%
LINK Chainlink
$11.34 +0.11%

Fear & Greed

69

Greed

Market Sentiment

Event Calendar

{{年份}}
30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

12
05
halving BCH Halving

Block reward halving event

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

18
03
unlock Sui Token Unlock

Team and early investor shares released

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

28
03
unlock Arbitrum Token Unlock

92 million ARB released

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

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
$77,882.8
1
Ethereum
ETH
$2,450.02
1
Solana
SOL
$102.14
1
BNB Chain
BNB
$686.1
1
XRP Ledger
XRP
$1.37
1
Dogecoin
DOGE
$0.0824
1
Cardano
ADA
$0.1970
1
Avalanche
AVAX
$7.22
1
Polkadot
DOT
$0.8552
1
Chainlink
LINK
$11.34

🐋 Whale Tracker

🔵
0xaf9b...99b6
12m ago
Stake
1,647,262 USDC
🔴
0xbb81...92a3
6h ago
Out
4,399,320 USDC
🔵
0xfae7...b957
1d ago
Stake
3,190.79 BTC

💡 Smart Money

0x4697...55c6
Market Maker
+$4.9M
73%
0xbbd8...d662
Experienced On-chain Trader
+$1.6M
72%
0xa0e8...6cdc
Early Investor
+$4.6M
60%

🧮 Tools

All →
ETF

Agentjacking: The 2,388-Organization Attack Surface Hidden in AI Coding Agents

PlanBtoshi

The data shows: 2,388 organizations have publicly exposed Sentry DSNs. 71 of those are in the top 1 million websites. 27% of Fortune 1000 companies are reachable through Cloudflare's MCP integration. This is not a vulnerability. It is an architecture gap.

Let me quantify the chaos. Then reveal the pattern.

Context: The Trust Boundary of AI Coding Agents

Sentry is a crash reporting platform. Developers embed a public DSN (Data Source Name) into their frontend code to capture errors. The DSN is not a secret—it is designed to be public. But the endpoint that accepts error reports is unauthenticated. Any HTTP POST with a valid DSN will be accepted.

Now enter AI coding agents. Claude Code, Cursor—these tools use the Model Context Protocol (MCP) to connect to external services. One common MCP server is the Sentry integration. A developer asks the agent: "Why is this error happening?" The agent queries Sentry via MCP, fetches the latest issue, and reads the error context.

That context is markdown. And the agent treats it as instructions.

Core: The Attack Chain – Six Steps, No Exploits

  1. Reconnaissance: Attackers scan public GitHub repositories for hardcoded Sentry DSNs. Tenet Security found 2,388 organizations with exposed DSNs, including 71 in the Tranco top 1 million.
  2. Inject: A single HTTP POST to Sentry's unauthenticated endpoint with a malicious error event. The payload contains markdown disguised as a "fix suggestion."
  3. Trigger: The developer—unaware—asks the AI agent to investigate a Sentry error. The agent fetches the attacker's crafted issue.
  4. Execute: The agent interprets the markdown as a repair instruction. It runs npm install agentjack—a malicious package hosted on npm.
  5. Escalate: The malicious package exfiltrates credentials: AWS keys, GitHub OAuth tokens, npm registry tokens, Docker registry tokens.
  6. Persist: The attacker now has access to the developer's machine and the organization's internal tooling.

Tenet demonstrated this chain at DEF CON 34 with a reported 85% success rate across 100+ organizations. The attack is not a zero-day. It is a known technique—indirect prompt injection—combined with public-by-design infrastructure.

From my audit experience in 2018, I recognized the pattern. During the Compound Finance audit, I saw that trust boundaries were the weakest link. The lending protocol assumed that price feeds were correct. Here, the AI agent assumes that Sentry data is safe. Both assumptions are wrong.

Data that matters:

  • 2,388 organizations with public DSNs (Tenet scan)
  • 71 of those in Tranco top 1 million
  • ~27% of Fortune 1000 reachable via Cloudflare MCP (estimated)
  • 6-step attack chain, no CVE required
  • 85% success rate in controlled test

Contrarian: The Real Problem Is Not the Agent

The narrative is "AI agents are vulnerable to prompt injection." That is a half-truth. The ledger never lies, only the interpreter does. The agent is just the interpreter. The real vulnerability lies in the system design: connecting an agent to an untrusted data source without a sandbox.

Consider: Sentry's DSN endpoint is unauthenticated by design. That is intentional. It allows anyone to report errors. But the MCP protocol has no mechanism to distinguish "data" from "instructions." The agent cannot tell if the markdown content is a real error or a planted command.

Agentjacking: The 2,388-Organization Attack Surface Hidden in AI Coding Agents

Correlation ≠ causation. The attack is not a failure of the AI model. It is a failure of the orchestration layer. The same risk exists in any system that consumes external data and acts on it. DeFi oracles had the same problem in 2020. I wrote a Python script to scrape on-chain data and model stablecoin health. The lesson: trust the data source, not the data.

The Counter-Intuitive Angle: The mitigation strategies proposed—content filters, network whitelists, command approval—are all reactive. Sentry deployed a content filter for specific payload strings. That is a regex band-aid. Tenet's agent-jackstop tool adds end-side policy enforcement: network egress whitelist, command approval, subprocess credential protection. These reduce the blast radius but do not fix the root cause: the MCP data path is a trust highway.

Code is law, but data is truth. In this case, the data is a lie. The only way to fix this is to change the protocol: require a "trust signature" on every tool output, or enforce instruction hierarchy in the model training.

Takeaway: The Next Signal

This event is a warning shot. AI coding agents are being adopted faster than their security models mature. The next week's signal: watch for MCP security extension proposals. Will Anthropic add a data integrity layer to the protocol? Will Cloudflare offer content sanitization on its MCP server? Or will the market wait until the first major credential theft makes headlines?

Yield is a function of risk, not magic. The risk here is real, quantifiable, and addressable. The question is whether the industry will treat it as a priority or a footnote.

Agentjacking: The 2,388-Organization Attack Surface Hidden in AI Coding Agents

Every transaction leaves a shadow in the block. This attack leaves a shadow in the error log. The shadows are there. We just need to read them.