add slither. Add alternative slither install and manticore install via eth-security-toolbox https://gitlab.com/shopglue/ziion-tools/-/issues/5

This commit is contained in:
Bryan Black 2022-10-29 00:01:34 -07:00
parent 096fdf8f8f
commit a8756b55a4
6 changed files with 28 additions and 0 deletions

View file

@ -14,6 +14,7 @@
- sol2uml - sol2uml
- solc - solc
- solc-select - solc-select
- slither
- brownie - brownie
- manticore - manticore
- mythril - mythril

View file

@ -0,0 +1,7 @@
- name: Create manticore
community.docker.docker_container:
name: eth-security-toolbox
image: trailofbits/eth-security-toolbox
state: started
restart: true

View file

@ -0,0 +1,3 @@
---
- import_tasks: install-via-docker.yml
tags: install-via-docker

View file

@ -0,0 +1,7 @@
- name: Create slither
community.docker.docker_container:
name: slither
image: trailofbits/eth-security-toolbox
state: started
restart: true
# not going to use it with all the extra baggage

View file

@ -0,0 +1,4 @@
- name: Install slither python package
ansible.builtin.pip:
name: slither-analyzer==0.8.3
state: present

View file

@ -0,0 +1,6 @@
---
- import_tasks: install-via-pip.yml
tags: install-via-pip
#- import_tasks: install-via-docker.yml
# tags: install-via-docker