mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
Package description: ScanSSH supports scanning a list of addresses and networks for open proxies, SSH protocol servers, Web and SMTP servers. Where possible ScanSSH, displays the version number of the running services. ScanSSH protocol scanner supports random selection of IP addresses from large network ranges and is useful for gathering statistics on the deployment of SSH protocol servers in a company or the Internet as whole.
34 lines
704 B
Plaintext
34 lines
704 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer:
|
|
pkgname=scanssh
|
|
pkgver=2.1
|
|
pkgrel=0
|
|
pkgdesc="Fast SSH server and open proxy scanner"
|
|
url="http://monkey.org/~provos/scanssh/"
|
|
arch="all"
|
|
license="BSD"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="libpcap-dev libevent-dev libdnet-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://monkey.org/~provos/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="9fab4253b56b2d15367d4872b370cdcb scanssh-2.1.tar.gz"
|