Static Analyzer for Solidity
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Josselin 7832ac7a6c Update to crytic-compile b0a1b268e230320dea78c79ee7dd34cced37c0b0 5 years ago
examples Merge branch 'dev' into dev-evm-printer-and-api 5 years ago
plugin_example Create utils.output.Output class to handle json output 5 years ago
scripts ReentrancyEvent: improve output 5 years ago
slither Update to crytic-compile b0a1b268e230320dea78c79ee7dd34cced37c0b0 5 years ago
tests Reentrancies detectors: 5 years ago
.dockerignore build.docker: install and run as normal user, copy code from current directory, add .dockerignore file 6 years ago
.gitattributes Initial public commit 6 years ago
.gitignore removed vscode folder 6 years ago
.travis.yml Create slither-check-kspec tool 5 years ago
CONTRIBUTING.md Update CONTRIBUTING.md 5 years ago
Dockerfile build.docker: install and run as normal user, copy code from current directory, add .dockerignore file 6 years ago
LICENSE Initial public commit 6 years ago
README.md Update README 5 years ago
logo.png README: add logo 6 years ago
setup.py Update to crytic-compile b0a1b268e230320dea78c79ee7dd34cced37c0b0 5 years ago

README.md

Slither, the Solidity source analyzer

Logo

Build Status Slack Status PyPI version

Slither is a Solidity static analysis framework written in Python 3. It runs a suite of vulnerability detectors, prints visual information about contract details, and provides an API to easily write custom analyses. Slither enables developers to find vulnerabilities, enhance their code comprehension, and quickly prototype custom analyses.

Features

  • Detects vulnerable Solidity code with low false positives
  • Identifies where the error condition occurs in the source code
  • Easily integrates into continuous integration and Truffle builds
  • Built-in 'printers' quickly report crucial contract information
  • Detector API to write custom analyses in Python
  • Ability to analyze contracts written with Solidity >= 0.4
  • Intermediate representation (SlithIR) enables simple, high-precision analyses
  • Correctly parses 99.9% of all public Solidity code
  • Average execution time of less than 1 second per contract

Bugs and Optimizations Detection

Run Slither on a Truffle/Embark/Dapp/Etherlime application:

slither .

Run Slither on a single file:

$ slither tests/uninitialized.sol 

For additional configuration, see the usage documentation.

Use solc-select if your contracts require older versions of solc.

Detectors

Slither has more than 30 public detectors, including:

See the Detectors Documentation for the complete list. By default, all the detectors are run.

Check out Crytic to get access to additional Slither's detectors and GitHub integration.

Printers

Quick Review Printers

In-Depth Review Printers

To run a printer, use --print and a comma-separated list of printers.

See the Printer documentation for the complete lists.

Tools

See the Tool documentation for additional tools.

Contact us to get help on building custom tools.

How to install

Slither requires Python 3.6+ and solc, the Solidity compiler.

Using Pip

$ pip3 install slither-analyzer

Using Git

$ git clone https://github.com/crytic/slither.git && cd slither
$ python3 setup.py install

We recommend using an Python virtual environment, as detailed in the Developer Installation Instructions, if you prefer to install Slither via git.

Using Docker

Use the eth-security-toolbox docker image. It includes all of our security tools and every major version of Solidity in a single image. /home/share will be mounted to /share in the container.

docker pull trailofbits/eth-security-toolbox

To share a directory in the container:

docker run -it -v /home/share:/share trailofbits/eth-security-toolbox

Getting Help

Feel free to stop by our Slack channel (#ethereum) for help using or extending Slither.

License

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

Publication

If you are using Slither on an academic work, consider applying to the Crytic $10k Research Prize.