A virtual environment for CTF with a suite of useful tools.
- Choose tools you need in
playbook.yaml
Example 1. Only SageMath
- hosts: ctf
user: ctf
roles:
# - role: base
# - role: pyenv
# - role: goenv
# - role: radare2
# - role: gdb
- role: sagemath
Example 2. Everything
- hosts: ctf
user: ctf
roles:
- role: base
- role: pyenv
- role: goenv
- role: radare2
- role: gdb
- role: sagemath
- Start a virtual machine
git clone https://github.com/Laika/ctf-env && cd ctf-env/
make plugin-install
vagrant up
- Go into the virtual machine
vagrant ssh
- Run setup scripts
make ansible
cd ~/ansible && make install