Ethpector extracts useful information from smart contracts.
Project description
Ethpector
Ethpector extracts useful information from smart contract binaries.
Smart contracts are computer programs that coordinate financial agreements on blockchain systems. Although smart contract platforms are transparent in general smart contracts can be pretty opaque if their source-code is not available.
Ethpector sets out to provide tools to analyze smart contract with and without access to their source-code. Its main focus is to provide tools and heuristics for the automated analysis and classification of smart contracts.
Currently the tool enables:
Fetching code by addresses (via web3 rpc)
Fetching source-code for addresses (Etherscan and Sourcify)
Recovering interfaces including logs from binaries
Resolving function and event selectors (via 4bytes and more)
It uses control-flow analysis and symbolic execution (mythril) to extract data like calls, stores, logs, etc. including parameters if possible
It creates annotated disassembly
It simple contract classification method based on interfaces and bytecode
Parsing metadata like swarm and ipfs hashes
For a more advanced example of how to use this data look at the examples in the experiments folder.
Usage
To install run
> pip install ethpector
or build from source directly by
> make install
Use as follows:
usage: ethpector [-h] [--version] [-r rpc] [-e etherscan_token] [-c] [-v] [-vv] [-d] [-a] [-f] [--dont_drop_metadatastring] [--output OUTPUT [OUTPUT ...]] [--output_dir OUTPUT_DIR] contract ethpector -- getting insights into evm binaries. positional arguments: contract EVM input bytecode or address if -a is provided
- options:
- -h, --help
show this help message and exit.
- --version
show program’s version number and exit.
- -r rpc, --rpc rpc
Ethereum node RPC url.
- -e etherscan_token, --etherscan etherscan_token
Etherscan access token.
- -c, --concolic
Symbolic execution engine loads values (storage state, call targets) from a node via RPC.
- -v, --verbose
set loglevel to INFO.
- -vv, --very-verbose
set loglevel to DEBUG.
- -d, --deploy
Sets if deployment code is provided. EXPERIMENTAL.
- -a, --address
Analyse address: data is loaded either via RPC or Etherscan.
- -f, --tofile
Dump output as files.
- --offline
Do not use any online resources.
- --nodotenv
Do not load dotenv file to initialize config values.
- --dont_drop_metadatastring
Includes the metadata string to the bytecode analysis.
- --output OUTPUT
Output that should be produced: summary|disassembly|sourcecode|all|basicblocks|calls|storage|functions|known_interfaces. Note: Multiple OUTPUTS possible.
- --output_dir OUTPUT_DIR
Directory to save the results if -f is specified. Default is ethspector-output/.
For improved analysis results bot an etherscan api token as well as a ethereum node is beneficial. They can either be configured via commandline options (–rpc and –etherscan), via environment variables or .env files.
An example .env file could look as follows:
ETHPECTOR_ETHERSCAN_TOKEN=[YOUR ETHERSCAN TOKEN] ETHPECTOR_RPC=https://mainnet.infura.io/v3/[YOUR INFURA TOKEN] ETHPECTOR_CHAINID=1 ETHPECTOR_MYTHRIL_EXECUTION_TIMEOUT=100 ETHPECTOR_MYTHRIL_CREATE_TIMEOUT=60 ETHPECTOR_MYTHRIL_MAX_DEPTH=512 ETHPECTOR_MYTHRIL_SOLVER_TIMEOUT=200000
A full list of configurable options can be found in src/ethpector/config/config.py.
The example folder holds some interesting binaries as well as addresses to test on.
Development
it is advised to use a virtual environment (venv) for development. Run the following command to initialize one
> python3 -m venv .venv
and activate it (in bash) using
> source .venv/bin/activate For more information refer to (venv_). Run
> make dev
to initialize the dev environment. If you want to install ethpector in development mode run
> make install-dev
Before committing anything to the repository please format, lint and test your code in that order. Fix all linter warnings and make sure all test are passing before a commit.
Use the following commands for that:
> make format > make lint > make test
or equivalently run
> make pre-commit
Some slow tests are excluded when running make test. Occasionally, one should run
> make test-all
to run the entire test-suite.
Linting and formatting should be automatically executed on every git commit, using pre-commit.
To create the documentation please run:
> make docs
Creating the docs need python dev dependencies to build see (Stackoverflow)
Credits
We thank all the developers of mythril for their great work. Without which this project would not exist.
We would like to thank the following projects for inspiration.
Similar Projects
The following section contains a couple of similar projects and useful libraries that could serve as an alternative or to amend ethpector when analyzing smart contract binaries.
Funding
This project was created in the course of the KRYPTOMONITOR project.
The security research project KRYPTOMONITOR is funded by the Austrian security research programme KIRAS of the Federal Ministry of Agriculture, Regions and Tourism (BMLRT).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ethpector-0.1.8.tar.gz
.
File metadata
- Download URL: ethpector-0.1.8.tar.gz
- Upload date:
- Size: 169.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55150f821edb021ffdb79e733a9f4b78b5a0bf1b9989a0f678d49341886f0fc8 |
|
MD5 | 3c0367a7b0e76cbf103436e49456a12b |
|
BLAKE2b-256 | 3c36e2ae169f0170c2fee0d890874d4c077403ff7855063fa431cdc6c7935282 |
File details
Details for the file ethpector-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: ethpector-0.1.8-py3-none-any.whl
- Upload date:
- Size: 56.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56357d01da6f38b7598015fed5ef5bf095e4c1eec660e0655f21536455ed5b98 |
|
MD5 | 371ba5e1fa0228921ac2bb1c1e49633e |
|
BLAKE2b-256 | fb79084a690a2a792be674e5fcd247de611f87ec07b9c51dd7142d2e19351432 |