README.md
Rendering markdown...
# Dockerfile for attacker container
FROM ubuntu:24.04
RUN apt-get update && apt-get install -y \
build-essential \
gcc \
gdb \
strace \
tcpdump \
net-tools \
iproute2 \
iputils-ping \
netcat-openbsd \
vim \
curl \
procps \
linux-tools-generic \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /exploit
# Copy exploit source
COPY *.c *.h Makefile /exploit/
# Build exploits
RUN make || true
CMD ["/bin/bash"]