The Code Was Fine, But It Was Still Hacked: What Is the 'DVN Configuration Vulnerability' Behind the Biggest Hack of 2026?

marsbitОпубликовано 2026-04-19Обновлено 2026-04-19

Введение

Title: Code Was Secure, Yet $293M Stolen: The 2026 DVN Configuration Breach Explained On April 18, 2026, Kelp DAO’s restaking protocol was exploited, losing 116,500 rsETH (worth $293M at the time) due to a configuration flaw—not a smart contract vulnerability. The attacker used a forged cross-chain message to drain funds via LayerZero’s bridge, then dispersed the stolen rsETH across Aave V3, Compound V3, and Euler to borrow real assets, ultimately escaping with $236M in WETH. The root cause was a critical misconfiguration in Kelp’s LayerZero V2 setup: the protocol used a 1-of-1 Decentralized Verifier Network (DVN) threshold, meaning only one node approval was needed to validate cross-chain messages. The attacker compromised that single node, allowing unauthorized minting of rsETH on Ethereum. This configuration choice—permitted by LayerZero but highly risky—left zero fault tolerance. In contrast, protocols like ApeChain using multi-node validation (e.g., 2-of-3 or 5-of-9) remained secure. This incident highlights a blind spot in DeFi security audits: tools like Slither and Mythril scan code for logic flaws but ignore configuration parameters. The 2022 Nomad hack ($190M loss) also stemmed from a config error, bringing total losses from such issues to ~$482M—rivaling private key breaches. The Kelp exploit underscores the need for standardized config audits and higher baseline security in cross-chain designs.

On April 18, 2026, attackers drained 116,500 rsETH, worth approximately $293 million at the time, from the cross-chain bridge of Kelp DAO's liquid restaking protocol within hours. The entire process was unusually efficient—from forging cross-chain messages to dispersing the stolen funds across three lending protocols, Aave V3, Compound V3, and Euler, to borrow real assets. The attackers exited the same day with $236 million in WETH. Aave, SparkLend, and Fluid promptly froze all rsETH markets.

This was the largest DeFi attack incident of 2026 to date.

But one thing set this attack apart from most hacking incidents. Kelp DAO's smart contract code had no vulnerabilities. Security researcher @0xQuit, who participated in the investigation, wrote on X, "From what I've gathered so far, this is the result of two issues叠加: a 1-of-1 DVN configuration and the DVN node itself being compromised." LayerZero's official statement also did not mention contract code, framing the issue as an "rsETH vulnerability" rather than a "LayerZero vulnerability."

$293 million, not found in a single line of code. It was hidden in a configuration parameter filled in incorrectly during deployment.

The general logic of DeFi security auditing is: find the contract, read the code, find the vulnerability. This logic works quite smoothly when dealing with code logic vulnerabilities; tools like Slither and Mythril have mature detection capabilities for known patterns like reentrancy attacks and integer overflows. LLM-assisted code auditing, heavily promoted in recent years, also has some capability against business logic vulnerabilities (such as flash loan arbitrage paths).

But two rows in this matrix are red.

Configuration-layer vulnerabilities are a structural blind spot in tool-based auditing. The problem with Kelp DAO was not in the .sol files, but in a parameter written during protocol deployment—the DVN threshold. This parameter determines how many validator nodes need to confirm a cross-chain message before it is deemed legitimate. It doesn't enter the code, doesn't enter Slither's scan range, and doesn't enter Mythril's symbolic execution path. According to comparative research by Dreamlab Technologies, Slither and Mythril detected 5/10 and 6/10 vulnerabilities in the tested contracts, respectively, but this achievement is based on the premise that "the vulnerability is in the code." According to IEEE research, even at the code level, existing tools can only detect 8%-20% of exploitable vulnerabilities.

From the perspective of current auditing paradigms, there is no tool that can "detect whether the DVN threshold is reasonable." To detect such configuration risks, what is needed is not a code analyzer, but a specialized configuration checklist: "Number of DVNs used by the cross-chain protocol ≥ N?", "Is there a minimum threshold requirement?" Such questions currently have no standardized tool coverage, nor even widely accepted industry standards.

Also in the red zone are key and node security. @0xQuit's description mentioned the DVN node being "compromised," which falls under operational security (OpSec), beyond the detection boundaries of any static analysis tool. Neither any first-tier auditing firm nor AI scanning tools have the ability to predict whether a node operator's private key will be leaked.

This attack triggered both red zones in the matrix simultaneously.

DVN is LayerZero V2's cross-chain message verification mechanism, short for Decentralized Verifier Network. Its design philosophy is to give security decision-making power to the application layer: each protocol integrated with LayerZero can choose how many DVN nodes need to confirm simultaneously before allowing a cross-chain message to pass.

This "freedom" creates a spectrum.

Kelp DAO chose the far left end of the spectrum: 1-of-1, requiring confirmation from only one DVN node. This meant a fault tolerance of zero; the attacker only needed to compromise that one node to forge any cross-chain message. In contrast, Apechain, also integrated with LayerZero, configured more than two required DVNs and was unaffected in this incident. LayerZero's official statement used the wording "all other applications remain secure," the subtext of which is: security depends on which configuration you chose.

The normal industry recommendation is at least 2-of-3, requiring an attacker to compromise two independent DVN nodes simultaneously to forge a message, increasing fault tolerance to 33%. High-security configurations like 5-of-9 can achieve 55% fault tolerance.

The problem is, external observers and users cannot see this configuration. Both might be called "powered by LayerZero," but behind it could be 0% fault tolerance or 55% fault tolerance. Both are called DVN in the documentation.

Veteran crypto investor Dovey Wan, who experienced the Anyswap incident, wrote directly on X: "LayerZero's DVN is actually 1/1 validator...... All cross-chain bridges should immediately conduct a comprehensive security review."

In August 2022, a vulnerability was discovered in the Nomad cross-chain bridge. Someone copied the first attack transaction, made slight modifications, found it also worked—so hundreds of addresses successively began copying, draining $190 million within hours.

Nomad's post-mortem wrote that the vulnerability source was "initializing the trusted root to 0x00 during a routine upgrade." This was a configuration error that occurred during the deployment phase. The Merkle proof verification logic was fine, the code itself was fine; the problem was an initial value filled in incorrectly.

This time, combined with Nomad, configuration/initialization class vulnerabilities have caused approximately $482 million in losses. In the entire history of cross-chain bridge thefts, this category's scale is now comparable to key leak class (Ronin $624 million, Harmony $100 million, Multichain $126 million, totaling approximately $850 million).

But the product design of the code auditing industry has never been targeted at this category.

The most discussed topics in the industry are still code logic vulnerabilities. Wormhole's $326 million hack due to signature verification bypass, Qubit Finance's $80 million theft due to fake deposit events. These cases have complete vulnerability analysis, CVE number analogies, reproducible PoCs, suitable for the training and optimization of auditing tools. Configuration-layer problems are not written in the code and struggle to enter this production cycle.

A noteworthy detail is that the triggering methods of the two configuration-class events were completely different. Nomad accidentally filled in a wrong initial value during a routine upgrade, a mistake. Kelp DAO's 1-of-1 was an active configuration choice—the LayerZero protocol did not prohibit this option, and Kelp DAO did not violate any protocol rules. A "compliant" configuration choice and a "mistaken" initial value ultimately led to the same consequence.

The execution logic of this attack was simple: a forged cross-chain message told the Ethereum mainnet that "equivalent assets have been locked on another chain," triggering the minting of rsETH on the mainnet. The minted rsETH itself had no actual backing, but its on-chain record was "legitimate" and could be accepted as collateral by lending protocols.

The attacker then dispersed the 116,500 rsETH into Aave V3 (Ethereum and Arbitrum), Compound V3, and Euler, borrowing over $236 million in real assets. According to multiple reports, Aave V3 alone faced an estimated bad debt of approximately $177 million. Aave's safety module, Umbrella, has a WETH reserve of about $50 million available to absorb bad debt, covering less than 30%, with the remaining portion to be borne by aWETH stakers.

This bill ultimately fell on those who just wanted to earn a little WETH interest.

LayerZero officials, as of writing, are still jointly investigating with the security emergency response organization SEAL Org, stating they will release a post-mortem report with Kelp DAO after obtaining all information. Kelp DAO stated it is conducting "active remediation."

The $293 million vulnerability was not in the code. The phrase "audit passed" did not cover the location of that parameter.

Связанные с этим вопросы

QWhat was the root cause of the Kelp DAO hack in April 2026, and why was it unusual?

AThe root cause was a configuration vulnerability, specifically a 1-of-1 DVN (Decentralized Verifier Network) threshold setting chosen by Kelp DAO, combined with the compromise of that single DVN node. It was unusual because the smart contract code itself had no vulnerabilities; the flaw was entirely in a deployment configuration choice.

QWhat is a DVN in the context of LayerZero V2, and what security risk did Kelp DAO's configuration introduce?

AA DVN (Decentralized Verifier Network) is LayerZero V2's mechanism for verifying cross-chain messages. It allows applications to choose how many independent DVN nodes must confirm a message for it to be considered valid. Kelp DAO's configuration of a 1-of-1 threshold meant it had zero fault tolerance. An attacker only needed to compromise that one specific node to forge any cross-chain message, creating a critical single point of failure.

QHow do configuration vulnerabilities like the one at Kelp DAO differ from code logic vulnerabilities, and why are they hard to detect with standard auditing tools?

AConfiguration vulnerabilities exist in deployment parameters and initial settings (e.g., DVN threshold), not in the smart contract code itself. Standard auditing tools like Slither and Mythril are designed to scan .sol files for code logic flaws (e.g., reentrancy attacks) but are structurally blind to configuration choices made outside the code during deployment. There are no widely adopted standardized tools or industry norms for auditing these types of risks.

QWhat was the financial impact of the attack on the broader DeFi ecosystem, particularly on lending protocols?

AThe attacker stole 116,500 rsETH (worth ~$293M at the time) by forging a cross-chain message. They then used this unbacked rsETH as collateral to borrow over $236 million in real assets (WETH) from Aave V3, Compound V3, and Euler. Aave V3 faced an estimated $177 million in bad debt, which its safety module could not fully cover, meaning losses were ultimately borne by aWETH stakers.

QHow does the Kelp DAO incident compare to the 2022 Nomad hack, and what do they reveal about a growing category of DeFi risks?

ABoth the Kelp DAO (2026, $293M) and Nomad (2022, $190M) hacks were caused by configuration/initialization vulnerabilities, not code bugs. Together, they represent nearly $4.82 billion in losses from this category. This highlights a significant blind spot in DeFi security, as traditional code audits are not designed to catch misconfigurations or poor parameter choices made during protocol deployment, making them a major and growing risk class alongside key leaks and code exploits.

Похожее

Крупные изменения в ФРС? Сообщается, что Ваш рассматривает возможность сокращения частоты заседаний по ставкам, нарушая 40-летнюю традицию

Председатель ФРС Уолш рассматривает возможность сокращения количества регулярных заседаний по установлению процентных ставок, проводимых Федеральным комитетом по открытым рынкам (FOMC) каждый год. Это изменение, если оно будет реализовано, станет одним из самых значительных преобразований в работе ФРС за последние десятилетия и打破ет практику, действующую с 1981 года, когда заседания проводятся восемь раз в год (примерно каждые шесть недель). Согласно информации The New York Times, Уолш вынес этот вопрос на обсуждение на заседании ФРС на этой неделе. Новый график может быть определен до следующего заседания в середине сентября, хотя конкретные изменения вступят в силу позже. Закон о банках 1935 года требует, чтобы FOMC проводил «не менее четырех заседаний в год». Сокращение количества заседаний уменьшит возможности для голосования по процентным ставкам и может ослабить способность ФРС оперативно реагировать на изменения в инфляции и на рынке труда. Это также сократит каналы получения рынком сигналов о денежно-кредитной политике и снизит прозрачность, что противоречит многолетнему тренду на ее усиление. Данный шаг соответствует общему стилю руководства Уолша, который уже сократил объем публичных заявлений и рассматривает возможность уменьшения количества пресс-конференций после заседаний. Это предложение является частью более широкой повестки Уолша по «институциональной реформе» ФРС. В истории ФРС частота заседаний менялась: до 1981 года они могли проводиться до 19 раз в год, как это было в 1956 году. Внутренняя памятная записка ФРС 1988 года признавала преимущества более частых заседаний для оперативного рассмотрения новой информации, но сочла существующий график из восьми заседаний подходящим. Реформа Уолша идет в противоположном направлении, и ее потенциальное влияние на гибкость политики и коммуникацию с рынком будет тщательно отслеживаться.

marsbit15 мин. назад

Крупные изменения в ФРС? Сообщается, что Ваш рассматривает возможность сокращения частоты заседаний по ставкам, нарушая 40-летнюю традицию

marsbit15 мин. назад

Еженедельная подборка редакции Weekly Editor's Picks (25-31 июля)

Еженедельные выборы редактора (25-31 июля). В мире финансов и криптовалют продолжают доминировать темы макроэкономической неопределенности и технологических сдвигов. На фоне одного из самых неопределенных заседаний ФРС, где сохраняется риск повышения ставок, эксперты обсуждают долгосрочную ценность криптовалют. Акцент делается на стратегическом инвестировании в биткоин как «цифровое золото» и базовые смарт-контрактные платформы, а не на краткосрочных спекуляциях. На рынке акций наблюдается тенденция к «криптовализации»: нарративы и рычаги усиливают волатильность. При этом успешные платформы, такие как Hyperliquid и Polymarket, сталкиваются с трудностями при расширении за пределы своей основной специализации. В секторе AI и чипов сохраняется напряженность. Рост стоимости кредитных дефолтных свопов (CDS) Nvidia отражает опасения по поводу рисков финансирования инфраструктуры AI. Корейский гигант SK Hynix, несмотря на рекордную прибыль, не оправдал завышенных рыночных ожиданий, что подчеркивает споры между быками и медведями о будущем росте. Законодательная судьба американского билля Clarity Act остается под вопросом из-за политических разногласий, хотя рынок, вероятно, уже учел эту неопределенность. В экосистеме Ethereum начался масштабный переход стейкинга в сторону более эффективной архитектуры валидаторов после обновления Pectra. Также среди ключевых событий недели: выход на рынок акций Changxin Tech, мнения Сэма Олтмана и Тома Ли о будущем OpenAI и Ethereum, а также данные о крупных сделках южнокорейских производителей чипов с американскими технологическими гигантами.

marsbit33 мин. назад

Еженедельная подборка редакции Weekly Editor's Picks (25-31 июля)

marsbit33 мин. назад

Меньшие инвестиции — это не беспроигрышный билет для Apple

Название статьи «Малое вложение — не спасательный круг Apple». Хотя Apple избежала огромных расходов на ИИ по сравнению с Meta, Google и другими технологическими гигантами, что ранее считалось преимуществом, это не уберегло ее от негативных последствий всеобщей ИИ-лихорадки. Несмотря на впечатляющие финансовые показатели за третий квартал 2026 финансового года — выручка в $109,4 млрд (рост 16,4%) и рекордные продажи iPhone и Mac — прогнозы компании на следующий квардел оказались пессимистичными. Ожидается рост выручки лишь на 9-11%, что ниже рыночных ожиданий. Главные проблемы — серьезные ограничения в цепочке поставок, особенно для Mac, вызванные ажиотажным спросом и переходом мощностей TSMC на производство ИИ-чипов. Это привело к резкому росту цен на компоненты (например, память) и вынудило Apple повысить цены на свою продукцию. Даже сдержанные капитальные затраты Apple (всего $68 млрд за 9 месяцев, снижение на 28,2%) и рекордный операционный денежный поток не спасли ее от этой волны. В то же время затраты на НИОКР компании резко выросли (до $11,7 млрд за квартал, +32,3%), но ощутимых прорывов в области ИИ это не принесло. Таким образом, Apple, хотя и не «сжигала» деньги на ИИ, как конкуренты, все равно страдает от побочных эффектов бума инвестиций в эту сферу: роста цен на комплектующие и дефицита мощностей. Ожидается, что давление на поставки и дальнейший рост цен, в том числе на новые iPhone, сохранятся. Эта квартальная отчетность стала последней для гендиректора Тима Кука перед его уходом в сентябре.

marsbit1 ч. назад

Меньшие инвестиции — это не беспроигрышный билет для Apple

marsbit1 ч. назад

PA Графика | Всё главное в Web3 за август 2026 в одной схеме

Август 2026 года на рынке Web3 будет насыщен ключевыми событиями. Основное внимание будет сосредоточено на макроэкономических данных, регуляторных изменениях, разблокировках токенов и корректировках в проектах. **Основные события августа:** * **Макроэкономика:** Будут опубликованы данные по занятости (NFP) и индексу потребительских цен (CPI) в США за июль. Также ожидаются протокол заседания ФРС и ежегодный симпозиум в Джексон Хоул. * **Регуляторные изменения:** Сенат США планирует представить новый проект закона «CLARITY Act». В Евросоюзе вступят в силу расширенные запреты на криптовалютные операции с Беларусью. * **Разблокировка токенов:** Ожидается массовая разблокировка токенов таких проектов, как ENA, AVAX, CONX, ZRO, KAITO, что может повлиять на волатильность рынка. * **Изменения в проектах:** Ряд сервисов, включая Exchange Art, Ctrl Wallet, Zapper, NFTfi и Summer.fi, прекратят работу или внесут существенные изменения. Пользователям рекомендуется принять меры по сохранности активов. * **Корпоративные события:** Компании SpaceX, Circle и Nvidia опубликуют финансовые отчеты за второй квартал. Китайская компания Unitree Robotics начнет размещение акций на бирже STAR Market, а Moonshot AI планирует привлечь финансирование на предстоящее IPO. * **Отраслевые мероприятия:** Пройдут конференции Bitcoin Asia 2026 и Digital Expo 2026. Главными темами августа останутся макроэкономические ожидания, внедрение регуляторных норм, разблокировка токенов и консолидация в отрасли.

marsbit1 ч. назад

PA Графика | Всё главное в Web3 за август 2026 в одной схеме

marsbit1 ч. назад

«Голос в пустыне» с Уолл-Стрит вновь прицелился в Nvidia

Новая сделка Майкла Берри, известного как «пророк биржевого апокалипсиса» после успешного шорта во время ипотечного кризиса, вновь привлекла внимание. Через свой Substack он объявил о шорте акций Nvidia (по цене входа $198.09), Tesla, Applied Materials, Caterpillar и ETF SOXX, а позднее добавил Micron Technology ($1051.87). 25 июля он увеличил позиции против Nvidia, Micron и SOXX. Его аргументы против Nvidia сосредоточены на проблемах в цепочке поставок ИИ: завышенные сроки амортизации оборудования (6 лет вместо реалистичных 2-3 лет) у таких клиентов, как Microsoft и Meta, что искусственно завышает их прибыль, и риски «внебалансового циклического финансирования», когда спрос на чипы может быть поддержан самой Nvidia через гарантии для покупателей. Третий аргумент о выкупе акций был оспорен компанией как основанный на ошибочных данных. Цена акций Nvidia колебалась после заявлений Берри, в целом оставаясь вблизи его цены входа, что привело к небольшому убытку по его более поздним позициям. История Берри после 2008 года неоднозначна: были как провалы (шорт Tesla в 2021), так и успехи (предупреждение о мемных акциях). Его методология, основанная на анализе свободного денежного потока и первичных документов, хорошо выявляет структурные риски, но плохо определяет время кризиса. Другие известные инвесторы разделяют осторожность, но действуют иначе. Стив Эйсман («Большой шорт») пока не шортит Nvidia, отмечая сильные текущие показатели, но сократил позиции. Джим Чанос согласен с тезисом об «учетном несоответствии», но шортит не чипмейкеров, а частные фонды, сочетающие ставки на ИИ и коммерческую недвижимость. Общий вывод: опытные инвесторы признают признаки перегрева в секторе ИИ, но их конкретные ставки и сроки сильно различаются. Для рядового инвестора ценным является не копирование их сделок, а понимание их методов анализа — куда смотреть, чтобы выявить скрытые риски и завышенные оценки, особенно когда рынок убежден, что «на этот раз все по-другому».

marsbit1 ч. назад

«Голос в пустыне» с Уолл-Стрит вновь прицелился в Nvidia

marsbit1 ч. назад

Торговля

Спот
活动图片