1 # Maintainer: Paul Nicholson <brenix@gmail.com>
2 # Contributor: Francesco Piccinno <stack.box@gmail.com>
7 pkgdesc="A simple multithreaded sshd password bruteforcer using a wordlist."
8 url="http://www.edge-security.com/edge-soft.php"
10 arch=('i686' 'x86_64')
11 depends=('python2' 'python-paramiko')
12 source=(http://www.edge-security.com/soft/${pkgname}-${pkgver}.tar)
13 md5sums=('fb1bf149f5316cdad8307a6252b1f851')
18 install -d $pkgdir/usr/bin
19 install -d $pkgdir/usr/share/$pkgname
20 sed -i 's/paramiko.util/\#paramiko.util/g' brutessh.py
21 cp README brutessh.py terminal.py $pkgdir/usr/share/$pkgname/ || return 1
22 cat > $pkgdir/usr/bin/$pkgname << EOF
24 cd /usr/share/$pkgname
25 python2 brutessh.py \$*
27 chmod 0755 $pkgdir/usr/bin/$pkgname
28 chmod 0755 $pkgdir/usr/share/$pkgname/$pkgname.py
31 # vim:set ts=2 sw=2 et: