Repository for challenges in the 2020 o-week ctf. Source code and everything included so that you can run it for yourself.
If you want to contribute to the writeups, feel free to make a pull request here.
We hope you had fun participating in this year's o-week CTF! Stay tuned for further updates.
Use the Container Optimzed OS image on Google Cloud. Also make sure to enable the necessary ports.
cd web
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD:$PWD" -w="$PWD" docker/compose:1.24.0 up -d
cd ../binary
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD:$PWD" -w="$PWD" docker/compose:1.24.0 up -dIf running on your local machine or other platforms, docker-compose will suffice.
cd web
docker-compose up -d
cd ../binary
docker-compose up -d