Created
October 7, 2022 14:28
-
-
Save KONFeature/795d0897f017b9b52d7f02cb8fd9bdce to your computer and use it in GitHub Desktop.
Run all the security script from the tools folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Assert we are on the root folder | |
if [ ! -d "contracts" ]; then | |
echo "error: script needs to be run from project root './tools/run-all.sh'" | |
exit 1 | |
fi | |
# Run slither analysis | |
./tools/slither/slither.sh > tools/logs/slither-output.log | |
# Run mythril analysis | |
./tools/mythril/mythril.sh > tools/logs/mythril-output.log | |
# Run manticore analysis | |
./tools/manticore/manticore.sh > tools/logs/manticore-output.log | |
# Run echidna analysis | |
./tools/echidna/echidna.sh > tools/logs/echidna-output.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment