openbsd-ports/net/angst/Makefile
obecian 44e2f069bb Angst is an active sniffer, based on libpcap and libnet.
Angst provides methods for aggressive sniffing on switched
local area network environments.

It dumps the payload of all the TCP packets received on the
specified ports.  Moreover, it implements methods for active
sniffing.  Angst currently provides two active sniffing methods.
The first monitors ARP requests, and after enabling IP
forwarding on the local host, sends ARP replies mapping all IPs
to the local MAC address.  The second method floods the local
network with random MAC addresses (like macof v1.1 by Ian Vitek),
causing switches to send packets to all ports.  Made just for
testing purposes and fun.  If you compile it on any other
platform except the ones listed below, please contact me at the
above email address.  As always, published under a BSD style
license, see the included LICENSE file.
2001-02-19 21:55:46 +00:00

30 lines
775 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2001/02/19 21:55:46 obecian Exp $
DISTNAME= angst-0.4b
CATEGORIES= net
NEED_VERSION= 1.348
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= angst
HOMEPAGE= http://angst.sourceforge.net/
BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a::net/libnet
MAINTAINER= Mark Grimes <obecian@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
ALL_TARGET= angst
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/angst ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/angst.8 ${PREFIX}/man/man8/angst.8
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/angst
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/angst
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/angst
.include <bsd.port.mk>