5017b5a308
Notable changes: * New psk-crack program to crack IKE Aggressive Mode pre-shared keys. * Support for IKE over TCP. * New --random (-R) option to randomise the target list. * The identity payload for aggressive mode may be specified as either a string or hex. * Ability to use the OpenSSL MD5 and SHA1 hash functions. * Many more backoff fingerprints and vendor ID patterns added.
29 lines
695 B
Makefile
29 lines
695 B
Makefile
# $OpenBSD: Makefile,v 1.7 2005/01/24 20:16:06 naddy Exp $
|
|
|
|
COMMENT= "VPN scanner and identifier"
|
|
DISTNAME= ike-scan-1.7
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${HOMEPAGE}download/ \
|
|
http://berlin.ccc.de/~cryx/ike-scan/
|
|
|
|
HOMEPAGE= http://www.nta-monitor.com/ike-scan/
|
|
|
|
MAINTAINER= Srebrenko Sehic <haver@insecure.dk>
|
|
|
|
# GPL
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
WANTLIB= c crypto
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=--with-openssl
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ike-scan
|
|
${INSTALL_DATA} ${WRKSRC}/udp-backoff-fingerprinting-paper.txt \
|
|
${WRKSRC}/README ${PREFIX}/share/doc/ike-scan
|
|
|
|
.include <bsd.port.mk>
|