惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Kelp DAO Hack Wasn't a Smart Contract Exploit. It Was...
GetBlock · 2026-04-29 · via DEV Community

The Kelp DAO Hack Wasn't a Smart Contract Exploit. It Was an RPC Infrastructure Attack.

On April 18th, $292 million was drained from Kelp DAO's bridge in 46 minutes. Every post-mortem you've read focused on the 1-of-1 DVN configuration on LayerZero. That's the right conversation — but it's not where the attack actually executed.

The smart contract worked exactly as written. No reentrancy. No key compromise. The code wasn't the vulnerability. The infrastructure feeding data to the code was.

What Actually Happened at the Infrastructure Layer

Here's the attack sequence:

  1. Lazarus Group (TraderTraitor unit) identified that Kelp DAO's bridge used a single LayerZero DVN verifier
  2. They compromised two RPC nodes that the DVN used for transaction verification
  3. They launched a DDoS against the remaining clean nodes — forcing the system to rely exclusively on the compromised ones
  4. The single verifier received corrupted state data and confirmed a fraudulent cross-chain transaction as legitimate
  5. 116,500 rsETH (~$292M) was released from escrow to the attacker's address
  6. The malicious binary self-destructed, wiping logs and traces
  7. Kelp paused contracts 46 minutes later — blocking two additional attempts worth ~$100M

The result: Aave froze rsETH markets with $230M in potential bad debt at risk. rsETH, deployed across 20+ chains, was suddenly undercollateralized everywhere simultaneously.

Why This Is a Different Threat Model

Most security audits cover:

  • Reentrancy attacks
  • Flash loan manipulation
  • Oracle price manipulation
  • Access control vulnerabilities

Very few cover what happens when the RPC layer is compromised or degraded under load.

This is the gap the Kelp exploit exposed. Your smart contract can be perfectly written and still execute malicious transactions — if the data it's acting on comes from a compromised source.

The LayerZero vs Kelp Blame War

Both parties made public statements. Both are partially correct.

LayerZero's position: Kelp used a 1-of-1 DVN configuration against explicit warnings going back to July 2024. Their protocol wasn't broken — Kelp's configuration was.

Kelp's position: 1-of-1 DVN is the default configuration in LayerZero's quickstart guide. Approximately 40% of protocols on LayerZero use the same setup. The RPC nodes that were compromised were LayerZero's own infrastructure, not Kelp's.

Both statements can be true simultaneously. And that's exactly what makes this dangerous: a default configuration, trusted by most, with a single point of failure at the infrastructure layer.

The Arbitrum Governance Precedent

Four days after the exploit, Arbitrum Security Council executed an emergency vote: 9 of 12 multisig signers froze 30,766 ETH (~$71M) at the attacker's address.

This is important for two reasons.

First, it's a win for victims — roughly 25% of stolen funds are now locked and potentially recoverable.

Second, it's a proof point that "permissionless" is not an absolute state. A group of 12 people, through a governance mechanism, can freeze funds on a "decentralized" network. When you're designing systems, this is a centralized choke point that exists whether you acknowledge it or not.

Four Infrastructure-Level Lessons

1. Never use 1-of-1 verification on a bridge

// Dangerous - single point of failure
DVN config: {
  requiredDVNs: ["single-dvn-address"],
  optionalDVNs: [],
  optionalDVNThreshold: 0
}

// Correct - multiple independent verifiers required
DVN config: {
  requiredDVNs: ["dvn-address-1", "dvn-address-2"],
  optionalDVNs: ["dvn-address-3"],
  optionalDVNThreshold: 1
}

Enter fullscreen mode Exit fullscreen mode

One verifier = one attack vector. Multi-DVN with independent providers is the minimum viable security posture for any bridge holding meaningful value.

2. Your RPC nodes are part of your threat model

The question isn't just "is my endpoint up?" — it's "is my endpoint returning accurate state?"

These are different questions with different answers. A compromised node can be fully available while returning fabricated data. Standard uptime monitoring won't catch this.

For cross-chain verification specifically:

  • Use multiple independent RPC sources from different providers
  • Implement response consistency checks across sources
  • Treat RPC endpoint selection as a security decision, not just an infrastructure decision

3. Default configurations can be dangerous

If you're copying a protocol's quickstart guide, check whether it's optimized for simplicity rather than security. These are different optimization targets.

Before deploying any bridge configuration to production:

  • Read the security documentation, not just the getting-started guide
  • Check what the recommended production configuration looks like vs the default
  • Understand what each parameter controls and what failure mode it protects against

4. Shared public nodes amplify attack surface

The Kelp exploit targeted specific RPC nodes. But the broader risk applies to any application using shared public endpoints for security-critical operations.

Shared nodes aggregate traffic from thousands of applications. A DDoS targeting one application on a shared endpoint degrades service for all of them. For most dApps, this means slower response times. For a bridge DVN, it can mean routing verification traffic to compromised fallback nodes.

What to Audit in Your Stack Today

If you're running a bridge or cross-chain application:

Checklist:
□ How many independent DVN verifiers are required for message validation?
□ Are those verifiers using independent RPC sources?
□ What happens to your verification logic if one RPC source goes down?
□ What happens if one RPC source returns stale or incorrect data?
□ Are any verification-critical RPC calls going through shared public endpoints?
□ Does your governance design have emergency intervention mechanisms?
   If yes — are you treating those as features or risks?

Enter fullscreen mode Exit fullscreen mode

The Kelp post-mortem will focus on DVN configuration. That's correct. But the RPC layer is where this attack was actually executed — and most teams still aren't modeling that threat.


GetBlock provides dedicated and shared RPC nodes across 130+ blockchains including Ethereum, Arbitrum, and TON. If the Kelp story made you think about your own RPC setup — explore our infrastructure.