This repository contains CoinFabrik's ongoing research and development to extend CodeQL support to the Solidity smart contract language. By leveraging the foundational work done by the CodeQL team for Ruby, we have adapted and expanded their approach to create a powerful toolset for analyzing Solidity code.
Our goal is to provide a comprehensive set of tools for querying and detecting vulnerabilities in Solidity smart contracts. We build upon the work of Joran Honig's Solidity Tree-sitter grammar and the CodeQL team's Ruby implementation. The project includes an extractor, database schema generation, and abstractions such as a cleaner Abstract Syntax Tree (AST), Control Flow Graph (CFG), and Dataflow analysis. These elements enable complex vulnerability detection and querying, similar to the C++ libraries in CodeQL.
- Extractor and Database Schema: Usable and functional for Solidity codebases.
- Current Work: We are actively developing a cleaner AST, CFG, and Dataflow support to enhance the detection of vulnerabilities.
- Proof of Concept (PoC): Nine simple detector examples are provided to demonstrate basic usage and potential.
To get started with analyzing Solidity smart contracts using CodeQL, follow these steps:
Work in progress
Once the database is created, you can run sample detectors written in the QL language:
codeql query run /path-to-detector/ -d /path-to-created-database/
For instance:
[1/1] Found in cache: /home/user/codeql/solidity/ql/lib/detector3.ql.
detector3.ql: Evaluation completed (191ms).
| col0 | col1 |
+-----------------+------------------------------------------------------------------------------+
| YulFunctionCall | /home/user/codeql/solidity-test/bitshift-order-test/vulnerable.sol@4:18:4:26 |
Shutting down query evaluator.
Num | Detector | What it Detects |
---|---|---|
1 | transfer-from |
transferFrom uses arbitrary from |
2 | incorrect-shift |
incorrect order of arguments in bit shift operations |
3 | msg-valu-in-for-loop |
Detects the use of msg.value inside a loop |
4 | bad-prng |
Detects bad randomness |
5 | divide-before-multiply |
Detects loss of precision |
6 | incorrect-exp |
Detects use of bitwise xor instead of exponential |
7 | unchecked-send |
The return value of a send is not checked |
8 | is-unreachable |
Detects dead code |
9 | unprotected-self-destruct |
Detects unprotected call to selfdestruct/suicidal |
We are actively working on enhancing the capabilities of our Solidity CodeQL implementation. Our current focus and status is on:
- AST: usable
- CFG: experimental
- DFA: soon
For more detailed instructions on using CodeQL, refer to the official CodeQL documentation.
We welcome contributions to enhance and expand the support for Solidity in CodeQL. Feel free to submit issues, feature requests, or pull requests.
For more information, please refer to the Contribution Guidelines.
The code in this repository is licensed under the MIT License by CoinFabrik.
For further information on CodeQL and CodeQL CLI licensing, please refer to the official repo.