SEApr 18, 2020

sFuzz: An Efficient Adaptive Fuzzer for Solidity Smart Contracts

arXiv:2004.08563v1377 citations
AI Analysis

This addresses the critical need for thorough testing of smart contracts on Ethereum, which manage valuable assets and cannot be easily patched after deployment, though it is incremental as it builds on existing fuzzing strategies.

The authors tackled the problem of testing Solidity smart contracts for vulnerabilities before deployment by developing sFuzz, an adaptive fuzzer that is two orders of magnitude faster than state-of-the-art tools and effectively achieves high code coverage and discovers vulnerabilities.

Smart contracts are Turing-complete programs that execute on the infrastructure of the blockchain, which often manage valuable digital assets. Solidity is one of the most popular programming languages for writing smart contracts on the Ethereum platform. Like traditional programs, smart contracts may contain vulnerabilities. Unlike traditional programs, smart contracts cannot be easily patched once they are deployed. It is thus important that smart contracts are tested thoroughly before deployment. In this work, we present an adaptive fuzzer for smart contracts on the Ethereum platform called sFuzz. Compared to existing Solidity fuzzers, sFuzz combines the strategy in the AFL fuzzer and an efficient lightweight multi-objective adaptive strategy targeting those hard-to-cover branches. sFuzz has been applied to more than 4 thousand smart contracts and the experimental results show that (1) sFuzz is efficient, e.g., two orders of magnitude faster than state-of-the-art tools; (2) sFuzz is effective in achieving high code coverage and discovering vulnerabilities; and (3) the different fuzzing strategies in sFuzz complement each other.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes