Skip to content

Instantly share code, notes, and snippets.

@gdemarcsek
Last active October 18, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdemarcsek/374979f5c14eb9af07bda491915598cc to your computer and use it in GitHub Desktop.
Save gdemarcsek/374979f5c14eb9af07bda491915598cc to your computer and use it in GitHub Desktop.
abwp
#!/bin/bash
set -euo pipefail
# Only needed if you have not yet downloaded the image
wget "https://s3.eu-west-3.amazonaws.com/bsideslux18/virtualbox-gdemarcs-bsideslux18.box"
# Import the image
vagrant box add --force --name bsideslux18/apparmor virtualbox-gdemarcs-bsideslux18.box
# Clone the workshop repo
git clone --depth=1 --branch master https://github.com/gdemarcsek/bsideslux18
# Enter the workshop repo and start the VM
cd bsideslux18 && vagrant up && vagrant ssh
# Alternatively, you could download the OVF and VMDK to a directory and open the OVF file with VirtualBox
# cd bsideslux18 && wget "https://s3.eu-west-3.amazonaws.com/bsideslux18/workshop/bsideslux18-apparmor-workshop.ovf" && wget "https://s3.eu-west-3.amazonaws.com/bsideslux18/workshop/bsideslux18-apparmor-workshop-disk001.vmdk"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment