mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 17:22:07 +01:00
Package description: Ncrack is a high-speed network authentication cracking tool. It was built to help companies secure their networks by proactively testing all their hosts and networking devices for poor passwords. Security professionals also rely on Ncrack when auditing their clients. Ncrack was designed using a modular approach, a command-line syntax similar to Nmap and a dynamic engine that can adapt its behaviour based on network feedback. It allows for rapid, yet reliable large-scale auditing of multiple hosts.
47 lines
1021 B
Plaintext
47 lines
1021 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=ncrack
|
|
pkgver=0.4
|
|
pkgrel=0.alpha
|
|
pkgdesc="A network authentication cracking tool"
|
|
url="http://nmap.org/ncrack/"
|
|
arch="all"
|
|
license="GPL2 with exceptions"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="openssl-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://nmap.org/ncrack/dist/$pkgname-"$pkgver"ALPHA.tar.gz"
|
|
_builddir="$srcdir"/$pkgname-"$pkgver"ALPHA
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--without-zlib-version-check \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="db9be165469c04650ddc7403b29eb472 ncrack-0.4ALPHA.tar.gz"
|