htb updates and ductf update

This commit is contained in:
Simon Hünecke
2023-09-01 16:37:29 +02:00
parent 82b0759f1e
commit c42b50e6fd
38 changed files with 317 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
FROM python:3.10
WORKDIR /app
COPY app.py .
COPY flag.txt /flag.txt
COPY files/ files/
RUN pip3 install aiohttp
RUN /usr/sbin/useradd --no-create-home -u 1000 ctf
# USER ctf #permission denied on my machine
CMD ["python3", "app.py"]