Created
March 24, 2025 06:14
-
-
Save cyb3rsalih/f6af6fdbaa983a7c79f6814e82f18e58 to your computer and use it in GitHub Desktop.
Bug Hunter Docker Image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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