1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00

add hydra

This commit is contained in:
kev 2015-07-02 23:35:11 +08:00
parent 2a1682e7e0
commit d2ab1035f0
2 changed files with 30 additions and 0 deletions

26
hydra/Dockerfile Normal file

@ -0,0 +1,26 @@
#
# Dockerfile for hydra
#
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U bash \
build-base \
curl \
git \
parallel \
&& echo 'will cite' | parallel --bibtex \
&& mkdir src \
&& cd src
&& git clone https://github.com/vanhauser-thc/thc-hydra.git . \
&& ./configure --prefix=/usr \
&& make install \
&& cd .. \
&& rm -rf src \
&& apk del --purge build-base \
&& rm -rf /var/cache/apk/*
VOLUME /work
WORKDIR /work
CMD ["bash"]

4
hydra/README.md Normal file

@ -0,0 +1,4 @@
hydra
=====
A very fast network logon cracker which support many different services.