MoveBit Research Release | Belobog: A Move Fuzzing Framework for Real-World Attacks

marsbitОпубликовано 2025-12-16Обновлено 2025-12-16

Введение

MoveBit introduces Belobog, a novel fuzzing framework designed specifically for Move smart contracts to address security challenges beyond syntax and type errors. Unlike traditional fuzzing methods that struggle with Move’s strong type system and resource semantics, Belobog leverages type-guided input generation and mutation. It constructs a type graph to produce semantically valid and executable transaction calls, significantly improving the efficiency and depth of state exploration. The framework integrates concolic execution (combining concrete and symbolic execution) to penetrate complex constraints and branch conditions, enabling deeper coverage of potential vulnerabilities. Evaluated on 109 real-world Move contracts, Belobog detected 100% of Critical and 79% of Major vulnerabilities confirmed by manual audits. It also demonstrated the ability to reproduce full exploit paths without prior knowledge of vulnerabilities. Designed to be developer-friendly, Belobog will be released as open-source to encourage community adoption and extension. The work is currently under peer review for PLDI’26. Preprint: https://arxiv.org/abs/2512.02918

Move, as a language that Web3 developers cannot afford to ignore, is particularly "hardcore" in its strong type system and resource semantics, especially regarding asset ownership, illegal transfers, and data races. Ecosystems like Sui and Aptos place increasingly important assets and core protocols on Move precisely because of its core language features, which enable the creation of more secure and lower-risk smart contracts.

However, the reality we've observed through long-term auditing and offensive/defensive practices is that a significant portion of thorny issues often do not occur in obvious places like "syntax errors" or "type mismatches," but rather at more complex, real-world levels—cross-module interactions, permission assumptions, state machine boundaries, and those call sequences that seem reasonable step-by-step but can be exploited when combined. Precisely because of this, even though the Move language has more robust security paradigms, there have still been significant attack incidents within its ecosystem. Clearly, security research for Move needs to go further.

We identified a core problem: the lack of an effective fuzzing tool for the Move language. Because Move has stronger constraints, traditional smart contract fuzzing faces a tricky pain point in the Move context: generating transaction sequences that are both "type-correct" and "semantically reachable" is very complex. If the input isn't precise enough, the call cannot be completed; if the call cannot be made, it fails to cover deep branches and reach critical states, making it easier to miss the paths that can truly trigger vulnerabilities.

Based on this long-standing pain point, we collaborated with a university research team to jointly complete and publish our research findings:

《Belobog: Move Language Fuzzing Framework For Real-World Smart Contracts》

arXiv:2512.02918 (Preprint)

Paper Link:https://arxiv.org/abs/2512.02918

This paper is currently published on arXiv as a preprint, its significance is to allow the community to see research progress faster and receive feedback. We are submitting this work to PLDI’26 and awaiting the peer review process. After the submission result is confirmed and peer review is completed, we will also share relevant updates promptly.

Making Fuzzing Truly "Run Into" Move: From Random Trial and Error to Type-Guided Exploration

Belobog's core idea is straightforward: since Move's type system is its fundamental constraint, fuzzing should use types as a guide, not an obstacle.

Traditional approaches often rely on random generation and mutation, but on Move, this quickly produces a large number of invalid samples: type mismatches, unreachable resources, parameters that cannot be correctly constructed, call chains with blocking points—what you end up with is not test coverage, but a pile of "failures at the starting line."

Belobog's method is more like giving the Fuzzer a "map." It starts from Move's type system, constructs a type graph based on type semantics for the target contract, and then uses this graph to generate or mutate transaction sequences. In other words, it doesn't blindly stitch calls together but constructs more reasonable, more executable, and更容易深入状态空间的调用组合 (easier to深入 state space call combinations) along type relationships.

For security research, the benefit this change brings is not a "fancier algorithm," but a very simple yet crucial gain:
Higher proportion of valid samples, higher exploration efficiency, and a better chance of reaching the deep paths where real vulnerabilities often appear.

Facing Complex Constraints: Belobog Introduces Concolic Execution to "Push Open the Door"

In real Move contracts, critical logic is often surrounded by layers of checks, assertions, and constraints. If you only rely on traditional mutation, you easily keep bumping at the door: the conditions are never met, the branches are never entered, the state is never reached.

To solve this problem, Belobog further designed and implemented concolic execution (a hybrid of concrete execution + symbolic reasoning). Simply put:

It maintains concrete execution that "can run," while on the other hand, it uses symbolic reasoning to more directionally approximate those branch conditions, thereby more effectively penetrating complex checks and advancing coverage depth.

This is particularly important for the Move ecosystem because the "sense of security" in Move contracts is often built on multiple layers of constraints, and the real problems often hide in the gaps after these constraints intersect. What Belobog wants to do is push testing near these gaps.

Aligning with the Real World: Not Just Running Demos, But Approaching Real Attack Paths

We don't want this kind of work to stop at "being able to run demos." Belobog's evaluation directly targets real projects and real vulnerability findings. According to the experimental results in the paper: Belobog was evaluated on 109 real-world Move smart contract projects. The experimental results show that Belobog was able to detect 100% of the Critical vulnerabilities and 79% of the Major vulnerabilities confirmed by manual security expert audits.

More notably: Without relying on prior vulnerability knowledge, Belobog was able to reproduce full exploits in real on-chain incidents. The value of this capability lies in the fact that it更接近我们在现实攻防里面对的情况 (closer to the situations we face in real-world offense/defense): attackers succeed not through "single-point function errors" but through complete paths and state evolution.

What This Work Aims to Express is Not Just "Making a Tool"

This paper is worth reading not only because it proposes a new framework, but because it represents a more pragmatic direction: abstracting frontline security experience into reusable methods and落地 (grounding) it with verifiable engineering implementations.

We believe the significance of Belobog lies not in being "yet another Fuzzer," but in making Fuzzing on Move closer to reality—able to run in, go deep, and align more closely with real attack paths. Belobog is not a closed tool designed for a few security experts, but a developer-friendly framework: it strives to lower the barrier to entry, allowing developers to continuously integrate security testing into their familiar development workflow, rather than making Fuzzing a one-time, after-the-fact task.

We will also release Belobog as open source, hoping it becomes infrastructure that the community can collectively use, extend, and evolve, rather than remaining an experimental project at the "tool level."

Paper (Preprint):https://arxiv.org/abs/2512.02918
(This work is also currently submitted to PLDI’26, awaiting peer review.)

About MoveBit

MoveBit (Mobi Security), a sub-brand under BitsLab, is a blockchain security company focused on the Move ecosystem, aiming to make the Move ecosystem the most secure Web3 ecosystem by pioneering the use of formal verification. MoveBit has successively cooperated with many well-known global projects and provided partners with comprehensive security audit services. The MoveBit team consists of security experts from academia and industry leaders with 10 years of security experience, having published security research results at top international security academic conferences such as NDSS and CCS. Moreover, they are early contributors to the Move ecosystem, working with Move developers to establish standards for secure Move applications.

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

QWhat is the main challenge that traditional fuzzing tools face when applied to Move smart contracts?

ATraditional fuzzing tools struggle with generating transaction sequences that are both 'type-correct' and 'semantically reachable' in Move. Due to Move's strong type system and resource semantics, random generation and mutation produce a high volume of invalid samples, such as type mismatches, unreachable resources, and incorrectly constructed parameters. This results in many calls failing immediately, preventing deep branch coverage and making it difficult to reach critical states where real vulnerabilities often lie.

QHow does Belobog's approach differ from traditional fuzzing methods for smart contracts?

ABelobog uses Move's type system as a guide rather than an obstacle. It constructs a type graph based on the semantic relationships within the target contract and uses this graph to generate or mutate transaction sequences. This approach ensures that calls are constructed along type relationships, making them more reasonable, executable, and capable of penetrating deeper into the state space, unlike traditional methods that rely on blind, random splicing of calls.

QWhat technique does Belobog employ to handle complex constraints and branch conditions in Move contracts?

ABelobog employs concolic execution (a hybrid of concrete execution and symbolic reasoning). It maintains concrete execution to keep the program running' while using symbolic derivation to directionally approach branch conditions. This allows it to more effectively penetrate complex checks, such as assertions and constraints, and advance coverage depth, which is crucial for uncovering vulnerabilities hidden behind layered security checks in Move contracts.

QWhat were the key results of Belobog's evaluation on real-world Move smart contracts?

AIn an evaluation on 109 real-world Move smart contract projects, Belobog was able to detect 100% of the Critical vulnerabilities and 79% of the Major vulnerabilities that were confirmed by manual security audits. Notably, without relying on prior vulnerability knowledge, Belobog could also replicate full attack exploits (full exploits) from real on-chain incidents, demonstrating its ability to uncover complex attack paths that involve state evolution and multiple steps.

QHow does the Belobog team plan to release the framework, and what is its intended impact on the community?

AThe Belobog team plans to release the framework as open source. The goal is to make it a developer-friendly infrastructure that the community can collectively use, extend, and evolve, rather than keeping it as an experimental tool. By lowering the barrier to entry, it aims to integrate security testing seamlessly into developers' familiar workflows, promoting continuous security assessment rather than one-off, post-development audits.

Похожее

The Rally That Wasn't

The article analyzes Bitcoin's sharp decline amid a shift in macroeconomic expectations, with strong US job data leading markets to price out Fed rate cuts. Bitcoin fell 13% to around $67,000, triggering significant outflows from US spot ETFs and indicating institutional de-risking. On-chain data confirms a bearish structure. Price has dropped back into the "bear market range," with the Short-Term Holder Cost Basis falling below a key mean level—a pattern last seen in early 2022. The profitability bias has collapsed, with loss realization now dominating, mirroring a panic wave from February. Recent buyers who accumulated near the $82k top are under pressure, and loss realization is accelerating across both short-term and long-term holder cohorts. Off-chain, the rally failed at the aggregate US ETF cost basis near $83k, turning it into resistance. Spot market demand has deteriorated sharply, with sellers dominating order books. While a major long liquidation event cleared over $400M in leverage, spot buyers have not returned to absorb supply. Options markets show sustained demand for downside protection (elevated put premiums) but not panic, with volatility premiums near three-month highs. The conclusion is that the market remains fragile, with overhead supply from trapped ETF investors, weak spot demand, and accelerating losses. Without a return of spot buying and a reclaim of key cost bases, Bitcoin is vulnerable to further downside within the prevailing bear market structure.

insights.glassnode10 мин. назад

The Rally That Wasn't

insights.glassnode10 мин. назад

Торговля

Спот
Фьючерсы

Популярные статьи

Как купить ATWO

Добро пожаловать на HTX.com! Мы сделали приобретение Arena Two (ATWO) простым и удобным. Следуйте нашему пошаговому руководству и отправляйтесь в свое крипто-путешествие.Шаг 1: Создайте аккаунт на HTXИспользуйте свой адрес электронной почты или номер телефона, чтобы зарегистрироваться и бесплатно создать аккаунт на HTX. Пройдите удобную регистрацию и откройте для себя весь функционал.Создать аккаунтШаг 2: Перейдите в Купить криптовалюту и выберите свой способ оплатыКредитная/Дебетовая Карта: Используйте свою карту Visa или Mastercard для мгновенной покупки Arena Two (ATWO).Баланс: Используйте средства с баланса вашего аккаунта HTX для простой торговли.Третьи Лица: Мы добавили популярные способы оплаты, такие как Google Pay и Apple Pay, для повышения удобства.P2P: Торгуйте напрямую с другими пользователями на HTX.Внебиржевая Торговля (OTC): Мы предлагаем индивидуальные услуги и конкурентоспособные обменные курсы для трейдеров.Шаг 3: Хранение Arena Two (ATWO)После приобретения вами Arena Two (ATWO) храните их в своем аккаунте на HTX. В качестве альтернативы вы можете отправить их куда-либо с помощью перевода в блокчейне или использовать для торговли с другими криптовалютами.Шаг 4: Торговля Arena Two (ATWO)С легкостью торгуйте Arena Two (ATWO) на спотовом рынке HTX. Просто зайдите в свой аккаунт, выберите торговую пару, совершайте сделки и следите за ними в режиме реального времени. Мы предлагаем удобный интерфейс как для начинающих, так и для опытных трейдеров.

168 просмотров всегоОпубликовано 2026.05.18Обновлено 2026.06.02

Как купить ATWO

Что такое ZEST

I. Введение в проект1. Что такое Zest Protocol?Zest Protocol — это кредитный протокол, основанный на Bitcoin, построенный на Stacks Layer 2, который позволяет пользователям зарабатывать доход с помощью BTC или занимать активы, закладывая BTC. Умные контракты протокола написаны на языке Clarity, полностью работают в цепочке и являются открытым исходным кодом, с дизайном, вдохновленным Aave v3. Zest в настоящее время является крупнейшим DeFi-протоколом на Stacks, с более чем 800 BTC, внесенными в депозит, и пиковым TVL, превышающим 100 миллионов долларов. В мае 2026 года протокол дополнительно представил Bitcoin Collateral Vaults, расширив кредитные возможности с Stacks на основную сеть Bitcoin. Это позволяет пользователям занимать стейблкоины, не перемещая BTC с сети Bitcoin, что обеспечивает кредитование с самоуправлением.2. Как работает Zest Protocol?Zest Protocol состоит из двух рынков. Рынок Stacks построен на Aave v3, позволяя пользователям вносить такие активы, как sBTC, STX и USDC, чтобы зарабатывать доход или брать кредиты с избыточным обеспечением. Максимальное LTV по умолчанию составляет 50% (70% для sBTC). Рынок Bitcoin работает через недавно запущенные Bitcoin Collateral Vaults. Пользователи занимают стейблкоины, блокируя BTC в самоуправляемых хранилищах на цепочке Bitcoin. Обеспечение остается на основной сети Bitcoin на протяжении всего процесса, и пользователи сохраняют право собственности, если позиция не ликвидирована.3. Кто основал Zest Protocol?Tycho Onnasch (Соучредитель): Выпускник Оксфордского университета. Участвовал в исследованиях и грантах для Фонда открытого интернета Stacks. Бывший менеджер в Trust Machines и основатель Deedmob. Профиль LinkedIn: https://www.linkedin.com/in/tychokoonnasch/.Fernando Foy (Соучредитель): Ранее работал в IT-консалтинге в Objectif Emploi. Профиль LinkedIn: https://www.linkedin.com/in/fernando-foy/.Emil E. (Соучредитель): Имеет степень магистра физики из Университета Уорика. Бывший инженерный партнер в Trust Machines, Full-Stack разработчик для проектов Web3 и дата-ученый в HSBC. Профиль LinkedIn: https://www.linkedin.com/in/emil-e-49771a145/.Детали финансирования: В мае 2024 года Zest Protocol объявил о завершении раунда начального финансирования в размере 3,5 миллиона долларов, возглавляемого Тимом Дрейпером, с участием Binance Labs, Flow Traders, Trust Machines и других.4. Токеномика $ZEST$ZEST — это нативный токен Zest Protocol с фиксированным общим предложением в 1 миллиард токенов и без инфляционного механизма.Сообщество (27,83%): Используется для аирдропов и стимулов для пользователей;Развитие экосистемы (24,82%): Используется для ликвидности, партнерств, маркетинга, листинга на биржах и т. д.;Инвесторы (22,35%): Поддержка инвестиционных сторон, которые поддержали раннее развитие Zest Protocol;Команда (25%): Выделено для основных участников.График вестинга: Токены команды и инвесторов подлежат 1-летнему периоду блокировки, за которым следует 3 года линейного разблокирования.5. Хронология ключевых этапов2022: Официальное основание Zest Protocol.Март 2024: Завершен аудит безопасности и запущен рынок кредитования Stacks на основной сети.В феврале 2026 года запускается Stacks Market V2, вводящий группы риска.В мае 2026 года были представлены Bitcoin Collateral Vaults, и теперь доступен рабочий прототип основной сети. Это позволяет пользователям использовать самоуправляемый BTC на Bitcoin L1 в качестве обеспечения для займа стейблкоинов на EVM-цепочках, заканчивая мосты, обертки и стороннее хранение. Этот запуск разделен на два этапа. Этап 1: Использует заранее подписанные транзакции для ограничения движения BTC; Этап 2: Использует BitVM для проверки. II. Информация о токенеНазвание токена: ZEST (Zest Protocol)III. Связанные ссылкиВебсайт: https://www.zestprotocol.com/Эксплореры: https://bscscan.com/token/0x5506599c722389a60580b5213ea1da60d64754a1Твиттер: https://twitter.com/ZestProtocolПримечание: Введение в проект основано на материалах, опубликованных или предоставленных официальной командой проекта, и предназначено только для справки и не является инвестиционным советом. HTX не несет ответственности за любые прямые или косвенные убытки, возникшие в результате.

190 просмотров всегоОпубликовано 2026.05.19Обновлено 2026.06.02

Что такое ZEST

Как купить ZEST

Добро пожаловать на HTX.com! Мы сделали приобретение Zest Protocol (ZEST) простым и удобным. Следуйте нашему пошаговому руководству и отправляйтесь в свое крипто-путешествие.Шаг 1: Создайте аккаунт на HTXИспользуйте свой адрес электронной почты или номер телефона, чтобы зарегистрироваться и бесплатно создать аккаунт на HTX. Пройдите удобную регистрацию и откройте для себя весь функционал.Создать аккаунтШаг 2: Перейдите в Купить криптовалюту и выберите свой способ оплатыКредитная/Дебетовая Карта: Используйте свою карту Visa или Mastercard для мгновенной покупки Zest Protocol (ZEST).Баланс: Используйте средства с баланса вашего аккаунта HTX для простой торговли.Третьи Лица: Мы добавили популярные способы оплаты, такие как Google Pay и Apple Pay, для повышения удобства.P2P: Торгуйте напрямую с другими пользователями на HTX.Внебиржевая Торговля (OTC): Мы предлагаем индивидуальные услуги и конкурентоспособные обменные курсы для трейдеров.Шаг 3: Хранение Zest Protocol (ZEST)После приобретения вами Zest Protocol (ZEST) храните их в своем аккаунте на HTX. В качестве альтернативы вы можете отправить их куда-либо с помощью перевода в блокчейне или использовать для торговли с другими криптовалютами.Шаг 4: Торговля Zest Protocol (ZEST)С легкостью торгуйте Zest Protocol (ZEST) на спотовом рынке HTX. Просто зайдите в свой аккаунт, выберите торговую пару, совершайте сделки и следите за ними в режиме реального времени. Мы предлагаем удобный интерфейс как для начинающих, так и для опытных трейдеров.

214 просмотров всегоОпубликовано 2026.05.19Обновлено 2026.06.02

Как купить ZEST

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на A (A) представлены ниже.

活动图片