Files
kube-hunter/Dockerfile
daniel_sagi 4a98d698a1 1. Added --pod flag to option "from pod" hunting. this will hunt the internal subnet of the cluster.
2. Added service account token and certificate handling, when running as a pod, to try and access resources that are "secured"
3. Added anonymous auth vulnerability detection
4. Changed requirements.txt for compatibility
2018-06-06 10:08:02 +03:00

12 lines
233 B
Docker

FROM python:2.7.15-jessie
WORKDIR /usr/src/kube-hunter
RUN apt-get update && apt-get install -y tcpdump
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["python", "kube-hunter.py"]