Skip to content

Instantly share code, notes, and snippets.

@cyb3rsalih
Created March 24, 2025 06:14
Show Gist options
  • Save cyb3rsalih/f6af6fdbaa983a7c79f6814e82f18e58 to your computer and use it in GitHub Desktop.
Save cyb3rsalih/f6af6fdbaa983a7c79f6814e82f18e58 to your computer and use it in GitHub Desktop.
Bug Hunter Docker Image
FROM kalilinux/kali-rolling
RUN apt update && apt install -y golang && apt-get install -y ca-certificates && go install -v github.com/projectdiscovery/pdtm/cmd/pdtm@latest
RUN apt install -y libpcap-dev nmap wget git python3-pip
RUN git clone https://github.com/blechschmidt/massdns.git && cd massdns && make && cp bin/massdns /usr/local/bin/
RUN echo "export PATH=$PATH:/root/go/bin" >> ~/.bashrc
ENV PATH="${PATH}:/root/go/bin"
RUN pdtm -ia
CMD ["/bin/bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment