Quickstart

Aderyn uses a series of detectors that, given a set of Solidity smart contracts within a directory, analyze the smart contracts Abstract Syntax Tree (AST) to find vulnerability patterns and report them in an easy-to-consume markdown document.

In this article, you will learn how to get started using Aderyn to analyze your Solidity codebase and generate a report on its vulnerabilities.

Prerequisites

Before installing Aderyn, ensure you have the following:

Suggested VSCode extensions:


Running Aderyn to analyse your codebase

Once Aderyn is installed on your system, you can run it against any Solidity codebase to find vulnerabilities in your code.

In this example, we will use the aderyn-contracts-playground repositoryarrow-up-right.

circle-info

This example codebase uses Foundry. Please install Foundryarrow-up-right as a prerequisite to working with this example repository.

You can follow along by cloning it to your system.

Navigate inside the repository:

We usually use several smart contracts and tests to try new detectors. Install dependencies and build the contracts by running:

Once your smart contracts have been successfully compiled, run Aderyn using the following command:

Replace [OPTIONS] with specific command-line arguments as needed.

What happens when you call aderyn?

Your codebase's full markdown security report will be generated for you now.


Generating the Aderyn security report

When executed, Aderyn will generate a full security report of your Solidity code base. You can find the standard here: https://github.com/Cyfrin/aderyn/blob/dev/reports/report.mdarrow-up-right

You can direct the output to a specific file or change the format to JSON for integration with other tools:

Inside the generated report, you will find:

  • A summary of your codebase properties (nsloc, complexity, etc.)

  • A summary of the issues and their severity divided by Highs and Lows.

  • A list of the issues with descriptions and links to the line of code where the vulnerability was found


Modify or create a custom detector

Cyfrin Aderyn gives engineers and security an easy-to-implement framework to develop custom static analysis detectors that can adapt to any codebase or use case. You can learn more about creating a custom Cyfrin Aderyn detector on the related documentation page.

Last updated