Home

Awesome

Thoth, the Cairo/Starknet security toolkit (analyzer, disassembler and decompiler)

<img src ="https://img.shields.io/badge/python-3.10-blue.svg"/>

Thoth (pronounced "taut" or "toss") is a Cairo/Starknet security toolkit including analyzers, disassemblers & decompilers written in Python 3. Thoth's features include the generation of the call graph, the control-flow graph (CFG) and the data-flow graph for a given Sierra file or Cairo/Starknet compilation artifact. It also includes some really advanced tools like a Symbolic execution engine and Symbolic bounded model checker.

Learn more about Thoth internals here: Demo video, StarkNetCC 2022 slides

Features

Installation

sudo apt install graphviz
git clone https://github.com/FuzzingLabs/thoth && cd thoth
pip install .
thoth -h

Decompile the contract's compilation artifact (JSON)

# Remote contrat deployed on starknet (mainnet/goerli)
thoth remote --address 0x0323D18E2401DDe9aFFE1908e9863cbfE523791690F32a2ff6aa66959841D31D --network mainnet -d
# Local contract compiled locally (JSON file)
thoth local tests/json_files/cairo_0/cairo_test_addition_if.json -d

Example 1 with strings:

<p align="center"> <b> source code </b></br> <img src="/doc/images/thoth/thoth_decompile_sourcecode.png"/></br> <b> decompiler code </b></br> <img src="/doc/images/thoth/thoth_decompile.png"/></br> </p> Example 2 with function call: <p align="center"> <b> source code </b></br> <img src="/doc/images/thoth/thoth_decompile_sourcecode_2.png"/></br> <b> decompiler code </b></br> <img src="/doc/images/thoth/thoth_decompile_2.png"/></br> </p>

Print the contract's call graph

The call flow graph represents calling relationships between functions of the contract. We tried to provide a maximum of information, such as the entry-point functions, the imports, decorators, etc.

thoth local tests/json_files/cairo_0/cairo_array_sum.json -call -view
# For a specific output format (pdf/svg/png):
thoth local tests/json_files/cairo_0/cairo_array_sum.json -call -view -format png

The output file (pdf/svg/png) and the dot file are inside the output-callgraph folder. If needed, you can also visualize dot files online using this website. The legend can be found here.

<p align="center"> <img src="/doc/images/thoth/thoth_callgraph_simple.png"/> </p>

A more complexe callgraph:

<p align="center"> <img src="/doc/images/thoth/starknet_get_full_contract_l2_dai_bridge.gv.png"/> </p>

Run the static analysis

The static analysis is performed using analyzers which can be either informative or security/optimization related.

AnalyzerCommand-Line argumentDescriptionImpactPrecisionCategoryBytecodeSierra
ERC20erc20Detect if a contract is an ERC20 TokenInformationalHighAnalytics✔️
ERC721erc721Detect if a contract is an ERC721 TokenInformationalHighAnalytics✔️
StringsstringsDetect strings inside a contractInformationalHighAnalytics✔️✔️
FunctionsfunctionsRetrieve informations about the contract's functionsInformationalHighAnalytics✔️✔️
StatisticsstatisticsGeneral statistics about the contractInformationalHighAnalytics✔️✔️
Test cases generatortestsAutomatically generate test cases for each function of the contractInformationalHighAnalytics✔️
AssignationsassignationsList of variables assignationsInformationalHighOptimization✔️
Integer overflowint_overflowDetect direct integer overflow/underflowHigh (direct) / Medium (indirect)MediumSecurity✔️✔️
Function namingfunction_namingDetect functions names that are not in snake caseInformationalHighSecurity✔️
Variable namingvariable_namingDetect variables names that are not in snake caseInformationalHighSecurity✔️
Delegate calls detectordelegate_callDetect delegate callsInformationalHighSecurity✔️
Dead code detectordead_codeDetect dead codeInformationalHighSecurity✔️
Unused arguments detectorunused_argumentsDetect unused argumentsInformationalHighSecurity✔️
User defined function call detectoruser_definedDetect calls of user defined functionsInformationalHighSecurity✔️

Run all the analyzers

thoth local tests/json_files/cairo_0/cairo_array_sum.json -a

Selects which analyzers to run

thoth local tests/json_files/cairo_0/cairo_array_sum.json -a erc20 erc721

Only run a specific category of analyzers

thoth local tests/json_files/cairo_0/cairo_array_sum.json -a security
thoth local tests/json_files/cairo_0/cairo_array_sum.json -a optimization
thoth local tests/json_files/cairo_0/cairo_array_sum.json -a analytics

Print a list of all the available analyzers

thoth local tests/json_files/cairo_0/cairo_array_sum.json --analyzers-help

Use the symbolic execution

You can find a detailed documentation for the symbolic execution here.

Print the contract's data-flow graph (DFG)

thoth local tests/json_files/cairo_0/cairo_double_function_and_if.json -dfg -view
# For a specific output format (pdf/svg/png):
thoth local tests/json_files/cairo_0/cairo_double_function_and_if.json -dfg -view -format png
# For tainting visualization:
thoth remote --address 0x069e40D2c88F479c86aB3E379Da958c75724eC1d5b7285E14e7bA44FD2f746A8 -n mainnet  -dfg -view --taint

The output file (pdf/svg/png) and the dot file are inside the output-dfg folder.

<p align="center"> <img src="/doc/images/thoth/thoth_dataflow_graph.png"/> </p> <p align="center"> <img src="/doc/images/thoth/thoth_dfg_tainting.png"/> </p>

Disassemble the contract's compilation artifact (JSON)

# Remote contrat deployed on starknet (mainnet/goerli)
thoth remote --address 0x0323D18E2401DDe9aFFE1908e9863cbfE523791690F32a2ff6aa66959841D31D --network mainnet -b
# Local contract compiled locally (JSON file)
thoth local tests/json_files/cairo_0/cairo_array_sum.json -b
# To get a pretty colored version:
thoth local tests/json_files/cairo_0/cairo_array_sum.json -b -color
# To get a verbose version with more details about decoded bytecodes:
thoth local tests/json_files/cairo_0/cairo_array_sum.json -vvv
<p align="center"> <img src="/doc/images/thoth/thoth_disas_color.png"/> </p>

Print the contract's control-flow graph (CFG)

thoth local tests/json_files/cairo_0/cairo_double_function_and_if.json -cfg -view
# For a specific function:
thoth local tests/json_files/cairo_0/cairo_double_function_and_if.json -cfg -view -function "__main__.main"
# For a specific output format (pdf/svg/png):
thoth local tests/json_files/cairo_0/cairo_double_function_and_if.json -cfg -view -format png

The output file (pdf/svg/png) and the dot file are inside the output-cfg folder.

<p align="center"> <img src="/doc/images/thoth/cairo_double_function_and_if_cfg.png"/> </p>

Generate inputs for the Cairo fuzzer

You can generate inputs for the Cairo fuzzer using this command

thoth local ./tests/json_files/cairo_0/cairo_test_symbolic_execution_2.json -a fuzzer

F.A.Q

How to find a Cairo/Starknet compilation artifact (json file)?

Thoth supports cairo and starknet compilation artifact (json file) generated after compilation using cairo-compile or starknet-compile. Thoth also supports the json file returned by: starknet get_full_contract.

How to run the tests?

python3 tests/test.py

How to build the documentation?

# Install sphinx
apt-get install python3-sphinx

#Create the docs folder
mkdir docs & cd docs

#Init the folder
sphinx-quickstart docs

#Modify the `conf.py` file by adding
import thoth

#Generate the .rst files before the .html files
sphinx-apidoc -f -o . ..

#Generate the .html files
make html

#Run a python http server
cd _build/html; python3 -m http.server

Why my bytecode is empty?

First, verify that your JSON is correct and that it contains a data section. Second, verify that your JSON is not a contract interface. Finally, it is possible that your contract does not generate bytecodes, for example:

%lang starknet

from starkware.cairo.common.cairo_builtins import HashBuiltin

@storage_var
func balance() -> (res : felt):
end

Acknowledgments

Thoth is inspired by a lot of different security tools developed by friends such as: Octopus, Slither, Mythril, etc.

License

Thoth is licensed and distributed under the AGPLv3 license. Contact us if you're looking for an exception to the terms.