blob: 09e0c67d8f3c6be0a7b8251f8590f9bffc51fbd8 (
plain)
1 # Description: fast network logon cracker
2 # URL: https://github.com/vanhauser-thc/thc-hydra
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on:
5 # Nice to have: mysql, libssh, libidn, libssh, gtk
6
7 name=thc-hydra
8 version=8.9.1
9 release=1
10 source=(https://github.com/vanhauser-thc/thc-hydra/archive/v$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 sed -i 's/dummy_ssh/dummy_sshkey/' hydra-sshkey.c
16
17 ./configure --prefix=$PKG/usr
18
19 make
20 make install
21
22 }
|