4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Dockerfile.attacker ATTACKER
# 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"]