MPC-lab

Market Prices

Coin Price 24h
BTC Bitcoin
$64,118.5 -1.57%
ETH Ethereum
$1,876.72 -2.45%
SOL Solana
$76.43 -1.19%
BNB BNB Chain
$600.6 -1.25%
XRP XRP Ledger
$1.02 -2.22%
DOGE Dogecoin
$0.0698 -1.19%
ADA Cardano
$0.1933 -2.82%
AVAX Avalanche
$6.45 -2.01%
DOT Polkadot
$0.8070 -0.26%
LINK Chainlink
$8.31 -0.41%

Fear & Greed

30

Fear

Market Sentiment

Event Calendar

{{年份}}
12
05
halving BCH Halving

Block reward halving event

28
03
unlock Arbitrum Token Unlock

92 million ARB released

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

18
03
unlock Sui Token Unlock

Team and early investor shares released

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

Altseason Index

43

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
$64,118.5
1
Ethereum
ETH
$1,876.72
1
Solana
SOL
$76.43
1
BNB Chain
BNB
$600.6
1
XRP Ledger
XRP
$1.02
1
Dogecoin
DOGE
$0.0698
1
Cardano
ADA
$0.1933
1
Avalanche
AVAX
$6.45
1
Polkadot
DOT
$0.8070
1
Chainlink
LINK
$8.31

🐋 Whale Tracker

🔴
0xbd63...064a
6h ago
Out
1,391.43 BTC
🟢
0x8836...1312
1h ago
In
1,932 ETH
🔵
0xd067...cb2f
2m ago
Stake
4,097,036 USDT

💡 Smart Money

0x4f43...b28d
Arbitrage Bot
+$5.0M
67%
0x2dc2...6428
Market Maker
+$2.8M
81%
0xcb14...7361
Market Maker
+$3.5M
94%

🧮 Tools

All →
Regulation

Agentjacking: The Architecture of Trust Collapse in AI Agent Data Pipelines

Maxtoshi
Over the past seven days, a single DEF CON 34 presentation quietly redefined the threat model for AI-assisted development. Tenet Security demonstrated a proof-of-concept attack chain that achieved 85% success rate against 100+ organizations, using nothing more than a public Sentry DSN and a POST request. The target wasn't a vulnerable smart contract or a misconfigured bridge. It was the AI coding agent sitting on developers' machines, trusted to read error logs and suggest fixes. The attack didn't exploit a zero-day in any model. It exploited an architectural flaw: the inability of current agent systems to distinguish data from instruction. Context: The protocol is MCP (Model Context Protocol), the tool is Sentry's error monitoring platform, and the agent is either Claude Code or Cursor. The intersection of these three legitimate components creates a blind spot. Sentry's endpoint accepts any POST containing a valid DSN — no authentication needed. AI coding agents fetch Sentry issues via MCP to assist debugging. The combination means an attacker who discovers a public DSN (and there are 2,388 such organizations publicly exposed) can inject arbitrary error events containing markdown that looks like a fix. The agent, unable to parse semantic intent, treats the injected markdown as a repair instruction and executes it. The result: npm install on a malicious package, credential exfiltration, and a compromised development environment. Core: This is a systematic teardown of a six-stage attack chain — discovery of public DSN, POST of malicious event, developer triggers agent to read Sentry issue, agent interprets markdown as instruction, npm install executes, credentials are stolen. The attack is structurally identical to indirect prompt injection, but the delivery vector is new: error monitoring as a command injection channel. My audit experience tells me that when two systems each trust the other's data format without semantic validation, you get a combinatorial explosion of attack surface. The 2,388 exposed DSNs are not abstract numbers. Each represents a real organization whose developers may have triggered an agent to fix a fake error. The 71 DSNs within the Tranco top 1 million websites mean this attack scales to high-value targets. The 27% of Fortune 1000 companies exposed via Cloudflare MCP integration suggests enterprise adoption of AI coding agents has already created a supply chain vulnerability that most security teams haven't modeled. Sentry's response — a content filter blocking specific payload strings — is a classic stopgap. It's an IoC-level blacklist, trivially bypassable with simple payload obfuscation. Tenet's agent-jackstop tool is a drop-in configuration that enforces network egress whitelisting, command approval, and credential isolation. These are damage reduction measures, not root-cause fixes. The root cause is that MCP's data model lacks an instruction intent marker. The model cannot say "this block of text is data, not code." Until the semantic layer is fixed, every tool output is a potential injection vector. Contrarian: The bulls got one thing right. The attack requires a human trigger — the developer must ask the agent to read the Sentry issue. It's not a fully automated worm. But that's a thin comfort. The 85% success rate in controlled tests suggests that when a developer says "debug this error," the agent's default behavior is to trust the error content. The assumption that a human-in-the-loop prevents exploitation is false; the human is the loop, not the guard. The attack is a collision of two design decisions that are individually reasonable — Sentry's open ingestion for flexibility, MCP's data-fetching for utility — but collectively create a gap. The contrarian view is that this is not a vulnerability in Sentry or MCP alone, but a systems integration failure. Fixing the root cause requires protocol-level changes that neither party is incentivized to implement alone. Volatility is just liquidity leaving the room. Trust is a variable I refuse to define. Trust is a variable I refuse to define. Takeaway: The industry will respond with agent security gateways, MCP trust layers, and signature-based error reporting. These are bandages. The real question is whether the model training pipeline can be taught to enforce an instruction hierarchy that treats all tool output as untrusted data. Based on my audit of AI-generated code bypasses in 2024, I don't believe that's happening in production anytime soon. Until then, every AI coding agent is a credential leak waiting for a public DSN. Trust is a variable I refuse to define.

Agentjacking: The Architecture of Trust Collapse in AI Agent Data Pipelines

Agentjacking: The Architecture of Trust Collapse in AI Agent Data Pipelines

Agentjacking: The Architecture of Trust Collapse in AI Agent Data Pipelines