failed miserably at hack.lu

This commit is contained in:
2025-10-19 20:35:43 +02:00
parent 9361bb3f29
commit c04f977a69
56 changed files with 120530 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM python:3.14.0-slim@sha256:5cfac249393fa6c7ebacaf0027a1e127026745e603908b226baa784c52b9d99b
USER root
RUN apt-get update && apt-get install -y socat
WORKDIR /app
COPY server.py .
USER root
ENTRYPOINT ["/bin/sh"]
CMD ["-c", "socat tcp-listen:1024,fork,reuseaddr system:\"python3 /app/server.py\""]