From f47823ac90769069578ab1f9d4a1f461a36a21e4 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 26 May 2019 15:44:27 +0200 Subject: :whale: --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..97cab47 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM ubuntu:18.04 + +# Install +RUN apt update +RUN apt install -y git gcc make libpcap-dev +RUN git clone https://github.com/robertdavidgraham/masscan /home/masscan +WORKDIR /home/masscan + +# Build +RUN make -j + +# Mount the output dir +RUN mkdir /output + +ENTRYPOINT /home/masscan/bin/masscan -p80 116.203.39.00/24 | tee /output/out.txt + -- cgit 1.4.1