A powerful Solidity static analyzer that takes a bird's eye view over your smart contracts.
Docs Get support Website Twitter
Aderyn is an open-source public good developer tool. It is a Rust-based solidity smart contract static analyzer designed to help protocol engineers and security researchers find vulnerabilities in Solidity code bases.
Thanks to its collection of static vulnerability detectors, running Cyfrin Aderyn on your Solidity codebase will highlight potential vulnerabilities, drastically reducing the potential for unknown issues in your Solidity code and giving you the time to focus on more complex problems.
Built using Rust, Aderyn integrates seamlessly into small and enterprise-level development workflows, offering lighting-fast command-line functionality and a framework to build custom detectors to adapt to your codebase.
You can read the Cyfrin official documentation for an in-depth look at Aderyn's functionalities.
- Supports any development framework (Foundry/Hardhat/Truffle/etc)
- Modular detectors
- AST Traversal
- Markdown reports
Suggested VSCode extensions: rust-analyzer - Rust language support for Visual Studio Code Rust Syntax - Improved Rust syntax highlighting
Note: If you previously installed aderyn using cargo, run
cargo uninstall aderyn
before usingcyfrinup
to avoid conflicts.
Cyfrinup is a CLI tool that simplifies the installation and management of Cyfrin tools. To install Cyfrinup, run the following command in your terminal:
curl -L https://raw.githubusercontent.com/Cyfrin/aderyn/dev/cyfrinup/install | bash
The installer will prompt you to run a source
command. Either run this command, or reload your terminal.
After installing Cyfrinup, you can use it to install Aderyn. Run the following command in your terminal:
cyfrinup
aderyn --version
To update Aderyn to the latest version, you can run the cyfrinup:
cyfrinup
Cyfrinup will replace the existing version with the latest one.
Once Aderyn is installed on your system, you can run it against your Foundry-based codebase to find vulnerabilities in your code.
We will use the aderyn-contracts-playground repository in this example. You can follow along by cloning it to your system:
git clone https://github.com/Cyfrin/aderyn-contracts-playground.git
Navigate inside the repository:
cd aderyn-contracts-playground
We usually use several smart contracts and tests to try new detectors. Build the contracts by running:
forge build
Once your smart contracts have been successfully compiled, run Aderyn using the following command:
aderyn [OPTIONS] path/to/your/project
Replace [OPTIONS] with specific command-line arguments as needed.
For an in-depth walkthrough on how to get started using Aderyn, check the Cyfrin official docs
Usage: aderyn [OPTIONS] <ROOT>
<ROOT>
: The path to the root of the codebase to be analyzed. Defaults to the current directory.
Options:
-s
,--src
: Path to the source contracts. If not provided, or if aderyn can't find famous files to read (likefoundry.toml
, which it automatically searches for) the ROOT directory will be used.- In foundry projects, this is usually the
src/
folder unless stated otherwise infoundry.toml
. - In Hardhat projects, this is usually the
contracts/
folder unless stated otherwise in the config.
- In foundry projects, this is usually the
-i
,--path-includes <PATH_INCLUDES>
: List of path strings to include, delimited by comma (no spaces). Any solidity file path not containing these strings will be ignored-x
,--path-excludes <PATH_EXCLUDES>
: List of path strings to exclude, delimited by comma (no spaces). Any solidity file path containing these strings will be ignored-o
,--output <OUTPUT>
: Desired file path for the final report (will overwrite the existing one) [default: report.md]-n
,--no-snippets
: Do not include code snippets in the report (reduces report size in large repos)-h
,--help
: Print help-V
,--version
: Print version
You must provide the root directory of the repo you want to analyze. Alternatively, you can provide a single Solidity file path (this mode requires Foundry to be installed).
Examples:
aderyn /path/to/your/foundry/project/root/directory/
Find more examples on the official Cyfrin Docs
Aderyn makes it easy to build Static Analysis detectors that can adapt to any Solidity codebase and protocol. This guide will teach you how to build, test, and run your custom Aderyn detectors. To learn how to create your custom Aderyn detectors, checkout the official docs
You can run Aderyn from a Docker container.
Build the image:
docker build -t aderyn .
/path/to/project/root
should be the path to your Foundry or Hardhat project root directory and it will be mounted to /share
in the container.
Run Aderyn:
docker run -v /path/to/project/root/:/share aderyn
Run with flags:
docker run -v /path/to/project/root/:/share aderyn -h
If it is a Solidity file path, then Aderyn will create a temporary Foundry project, copy the contract into it, compile the contract and then analyze the AST generated by that temporary project.
Help us build Aderyn π¦ Please see our contribution guidelines. Aderyn is an open-source software licensed under the GPL-3.0 License.
To build Aderyn locally:
- Install Rust,
- Clone this repo and
cd aderyn/
, make
,- Use
cargo
commands to build, test and run locally.
This project exists thanks to all the people who contribute.
- AST Visitor code from solc-ast-rs.
- Original detectors based on 4naly3er detectors.
- Shoutout to the original king of static analysis slither.