From b4567a287ef17a69edb50a9ffeb1c2dc467eef3c Mon Sep 17 00:00:00 2001 From: wfleisher Date: Mon, 27 Feb 2023 15:29:38 -0800 Subject: [PATCH] Created Dockerfile (#189) --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4692df8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM debian:latest + +RUN apt-get update +RUN apt-get install -y ca-certificates gnupg wget + +RUN wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add - +RUN echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" >> /etc/apt/sources.list +RUN apt-get update + +RUN apt-get install -y python3 python3-pip git seclists curl dnsrecon enum4linux feroxbuster gobuster impacket-scripts nbtscan nikto nmap onesixtyone oscanner redis-tools smbclient smbmap snmp sslscan sipvicious tnscmd10g whatweb wkhtmltopdf +RUN python3 -m pip install git+https://github.com/Tib3rius/AutoRecon.git + + +CMD ["/bin/bash"]