CheapbookZ

Market Prices

Coin Price 24h
BTC Bitcoin
$78,083.5 -0.40%
ETH Ethereum
$2,460.24 +0.52%
SOL Solana
$102.35 -1.37%
BNB BNB Chain
$687.2 +0.04%
XRP XRP Ledger
$1.38 +0.40%
DOGE Dogecoin
$0.0830 +0.16%
ADA Cardano
$0.1994 +1.17%
AVAX Avalanche
$7.28 +0.91%
DOT Polkadot
$0.8688 +4.94%
LINK Chainlink
$11.47 +1.76%

Fear & Greed

69

Greed

Market Sentiment

Event Calendar

{{年份}}
10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

18
03
unlock Sui Token Unlock

Team and early investor shares released

12
05
halving BCH Halving

Block reward halving event

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

28
03
unlock Arbitrum Token Unlock

92 million ARB released

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,083.5
1
Ethereum
ETH
$2,460.24
1
Solana
SOL
$102.35
1
BNB Chain
BNB
$687.2
1
XRP Ledger
XRP
$1.38
1
Dogecoin
DOGE
$0.0830
1
Cardano
ADA
$0.1994
1
Avalanche
AVAX
$7.28
1
Polkadot
DOT
$0.8688
1
Chainlink
LINK
$11.47

🐋 Whale Tracker

🔴
0x316f...6bb6
5m ago
Out
39,514 SOL
🟢
0x6caa...bf2f
6h ago
In
1,893,311 USDT
🔴
0xcdad...7bfa
12h ago
Out
9,733,226 DOGE

💡 Smart Money

0x2f97...72ef
Experienced On-chain Trader
+$1.1M
82%
0xdcbf...32c0
Early Investor
+$2.7M
66%
0xc05e...85f3
Top DeFi Miner
+$1.1M
80%

🧮 Tools

All →
Policy

The State Compromise: Why AI Agent Frameworks Are Repeating Crypto's Worst Security Mistakes

Alextoshi

Truth is not given, it is verified. At Black Hat USA 2026, security researchers from Check Point dropped a bombshell that should have sent a chill through every AI builder's spine: eleven critical vulnerabilities across six major AI agent frameworks. The attack chain is elegant in its brutality—prompt injection leads to malicious checkpoint injection, which triggers deserialization, which yields remote code execution. The language is familiar to anyone who has audited smart contracts. It is the same old story repackaged in a new hype cycle.

This is not a defect in large language models. It is a defect in how we build infrastructure that assumes trust. The AI agent frameworks—LangChain, LangGraph, CrewAI, AutoGen, Microsoft Agent Framework, Google ADK—all fell to vulnerabilities that have been known and defended against for decades: deserialization, SQL injection, SSRF, path traversal, use-after-free. The researchers' core insight is surgical: "Assume prompt injection will happen; the real vulnerability is what the framework does with attacker-controlled content." This is the same lesson we learned in smart contracts after The DAO hack. The code is not the problem. The state management is.

The State Compromise: Why AI Agent Frameworks Are Repeating Crypto's Worst Security Mistakes

Let me ground this in the technical reality. LangGraph, for instance, had three CVEs—all in its persistence layer. The get_state_history() function allowed SQLite injection. The checkpoint loading function used MessagePack deserialization without sanitization, enabling a full RCE. The checkpointer integrated with Redis without proper query parameterization. This is not a failure of AI. It is a failure of the software engineering fundamentals that every junior developer is taught. The framework assumes that the data coming from the LLM or from the user is safe. It is not. In the bear market, only code remains. But here, the code is the weakest link.

The State Compromise: Why AI Agent Frameworks Are Repeating Crypto's Worst Security Mistakes

Google ADK added a new dimension: the development environment, with an unauthenticated hidden HTTP API, was deployed to the public cloud by default when using adk deploy cloud_run. This is the equivalent of leaving the debug console open on a production Ethereum node. The attack path is trivial: discover the API, extract environment variables, steal GCP service account credentials, pivot to the entire cloud environment. No advanced technique required. Just a broken default security posture.

The deeper issue is structural. Most of these frameworks are built in Python, a language whose ecosystem has been plagued by deserialization vulnerabilities for years—pickle, yaml, MessagePack. The agent frameworks are inheriting this historical security debt. They are not building new security models; they are reusing the same unsafe patterns from the 2010s and wrapping them in a shiny AI interface. Modularity is the architecture of freedom, but only if each module is designed with an explicit trust boundary. Here, the checkpoint module is a gaping hole.

Now, the contrarian angle: some might argue that frameworks are nascent and will improve. But the pattern of responses suggests a different story. Microsoft, whose Agent Framework was still in preview, paid a $10,000 bounty and fixed the issues before GA. That is a positive signal of a mature security process. Google, on the other hand, initially rejected the report, then partially fixed it, and paid only $3,133.70—and no CVE was assigned. The absence of CVEs is not a sign of safety; it is a sign of invisibility. Enterprise security teams rely on CVE databases to track vulnerabilities. Without them, the frameworks remain in a gray zone of unreported risk.

Skepticism is the first step to sovereignty. In the crypto world, we learned that trust in code must be earned through audits, formal verification, and bug bounties. The AI agent ecosystem is at the same inflection point. The total bounty for all eleven vulnerabilities was $17,133.70. For vulnerabilities that give remote code execution, cloud credential theft, and supply chain compromise, that is a pittance. It signals that the industry has not yet internalized the cost of insecurity. Enterprise adoption of AI agents in regulated industries—finance, healthcare, government—will slow down as these disclosures become known. The conservative instincts will kick in: "We cannot run production processes on infrastructure that fails at the most basic security hygiene."

But there is a hidden opportunity here. The same logic that led to the rise of smart contract auditing, formal verification for DeFi, and cryptographic security standards will now apply to AI agent frameworks. A new category of "Agent Security Posture Management" will emerge. Security startups will scan for these exact vulnerabilities. The frameworks that respond transparently—with CVE assignments, clear patch timelines, and active bounty programs—will earn the trust of enterprises. The ones that don't will be left behind, just as the Bitcoin maximalists who ignored scalability were left behind.

We do not trust; we verify. The verification must apply not just to the model's outputs, but to every layer of the stack that handles user input, state, and execution. The checkpoint is the new transaction. The deserialization is the new reentrancy. The cloud deployment is the new private key exposure. I have seen this pattern before: in 2020, I audited the Uniswap V2 whitepaper and its Solidity implementation, writing a 40-page essay on liquidity as code. The lesson was that the smart contract's state transition function is the only thing that should be trusted. Everything else must be treated as adversarial. The same lesson applies here.

Chaos is just order waiting to be decoded. The Black Hat disclosures are not a disaster; they are a diagnostic. They reveal the exact fault lines that need to be hardened. The industry now has a choice: repeat the cycle of breach and patch, or build a security-first foundation for the agent economy. I am betting on the latter. The builders who understand that security is not a feature but a property of the architecture will win. The rest will be wiped out in the next bear market, when only code remains.

Logic prevails when emotion fails. The hype around AI agents is real, but the infrastructure is not ready. This is the moment to apply the same rigorous, cryptographic, and paranoid mindset that made blockchain secure—if imperfect—to the next generation of autonomous systems. The frameworks need threat models, formal verification of state transitions, and explicit trust boundaries. The crypto community has been through this. We know the playbook. It is time to rewrite it for the AI age.

Takeaway: The next wave of AI agent adoption will not be driven by the most feature-rich framework, but by the one that can prove its resilience against the oldest tricks in the book. Build for sovereignty, not for speed. Verify, don't trust. And remember: the chain is only as strong as its weakest checkpoint.

The State Compromise: Why AI Agent Frameworks Are Repeating Crypto's Worst Security Mistakes