From 71c9130ea4af8e1a0a8b6c8842c0e4a1c19b3537 Mon Sep 17 00:00:00 2001 From: darckode <60211453+darck0de@users.noreply.github.com> Date: Thu, 27 Aug 2020 18:50:37 +0530 Subject: [PATCH] Dockerfile (#56) * Dockerfile * Update Dockerfile Co-authored-by: Tib3rius <48113936+Tib3rius@users.noreply.github.com> --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cae11fb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +#sudo docker build -t tib3rius/autorecon . +#mkdir /root/results +#Usage: sudo docker run -it -v /root/results:/results --rm --name autorecon-container tib3rius/autorecon 127.0.0.1 + +FROM kalilinux/kali-bleeding-edge:latest +RUN apt-get update +RUN apt-get install sudo git -y +RUN sudo apt install python3 -y +RUN sudo apt install python3-pip -y +RUN python3 -m pip install --user pipx +RUN python3 -m pipx ensurepath +RUN python3 -m pip install git+https://github.com/Tib3rius/AutoRecon.git +RUN sudo apt install seclists curl enum4linux gobuster nbtscan nikto nmap onesixtyone oscanner smbclient smbmap smtp-user-enum snmp sslscan sipvicious tnscmd10g whatweb wkhtmltopdf -y +RUN echo "Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/kali/.local/bin"" >> /etc/sudoers +RUN apt-get -y autoremove && apt-get -y autoclean +ENTRYPOINT ["autorecon"]