Skip to content

Commit

Permalink
adding web fuzzer
Browse files Browse the repository at this point in the history
  • Loading branch information
wickett committed Feb 3, 2018
1 parent e73318c commit fe5c5c3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,15 @@ WORKDIR /opt
ENV SQLMAP_PATH /opt/sqlmap/sqlmap.py
RUN git clone --depth=1 https://github.com/sqlmapproject/sqlmap.git

# dirb
RUN wget https://downloads.sourceforge.net/project/dirb/dirb/2.22/dirb222.tar.gz && \
tar xvfz dirb222.tar.gz && \
cd dirb222 && \
chmod 755 ./configure && \
./configure && \
make && \
ln -s /opt/dirb222/dirb /usr/local/bin/dirb

ENV DIRB_WORDLISTS /opt/dirb222/wordlists

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

0 comments on commit fe5c5c3

Please sign in to comment.