Skip to content

Instantly share code, notes, and snippets.

@b401
Created March 9, 2019 16:09
Show Gist options
  • Save b401/c9b06968cf510d22b144989f7ad15fff to your computer and use it in GitHub Desktop.
Save b401/c9b06968cf510d22b144989f7ad15fff to your computer and use it in GitHub Desktop.
34c3 Digital Billboard - Easy Challenge as Dockerimage
FROM debian:latest
ADD https://archive.aachen.ccc.de/junior.34c3ctf.ccc.ac/uploads/billboard-56c33efc813379c674ea0d0a64258b5fa835f8d4.tar.gz /srv
RUN tar xvf /srv/billboard-56c33efc813379c674ea0d0a64258b5fa835f8d4.tar.gz -C /srv \
&& rm -f /srv/billboard-56c33efc813379c674ea0d0a64258b5fa835f8d4.tar.gz \
&& useradd -g 0 -M -o -u 0 challenge
USER challenge
WORKDIR /srv
ENTRYPOINT ["./server"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment