Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ RUN apt-get update && \
libfontconfig \
libxml2-dev \
libxslt1-dev \
libffi-dev \
make \
python3-pip \
ruby \
ruby-dev \
ruby-bundler && \
rm -rf /var/lib/apt/lists/*
ruby-bundler

# Install Gauntlt
RUN gem install rake
Expand All @@ -42,10 +42,8 @@ RUN wget https://github.com/Arachni/arachni/releases/download/v1.5.1/${ARACHNI_V
ln -s /usr/local/${ARACHNI_VERSION}/bin/* /usr/local/bin/

# Nikto
RUN apt-get update && \
apt-get install -y libtimedate-perl \
libnet-ssleay-perl && \
rm -rf /var/lib/apt/lists/*
RUN apt-get install -y libtimedate-perl \
libnet-ssleay-perl

RUN git clone --depth=1 https://github.com/sullo/nikto.git && \
cd nikto/program && \
Expand All @@ -72,12 +70,14 @@ RUN tar xvfz dirb222.tar.gz > /dev/null && \
ENV DIRB_WORDLISTS /opt/dirb222/wordlists

# nmap
RUN apt-get update && \
apt-get install -y nmap && \
rm -rf /var/lib/apt/lists/*
RUN apt-get install -y nmap

# sslyze
RUN pip install sslyze
ENV SSLYZE_PATH /usr/local/bin/sslyze

# cleanup downloaded debs & repo lists
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "/usr/local/bin/gauntlt" ]