This commit is contained in:
2023-12-22 12:39:49 +01:00
parent 602762b70a
commit d28f9739a4
7 changed files with 190 additions and 0 deletions

14
Day 22/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM ubuntu:22.04
RUN apt-get update -y && apt-get install -y socat gdb strace
RUN useradd -d /home/santa/ -m -p santa -s /bin/bash santa
RUN echo "santa:santa" | chpasswd
WORKDIR /home/santa
COPY ./pwn .
COPY ./secret.txt .
USER santa
CMD socat TCP-LISTEN:1337,fork,reuseaddr EXEC:'./pwn',raw,pty,echo=0,stderr