0f0f3453b3
New features include: * Statistics Collector: A daemon that can process netflow-like information exported by several Honeyd instances and do computations on the data - see live data. * Improved Subsystems: Improved support for subsystems permits running more complicated UNIX applications like mwcollect as a subsystem for Honeyd. * Proxy and SMTP subsystems: Example subsystems to simulate open proxies and mail relays. These subsystems are written with performance in mind and have no problem in keeping up with a busy network. Bugfixes include: A bug in Honeyd's IP reassembly code allows adversaries to remotely fingerprint honeypots. Thanks to Jon Oberheide for finding the bug; see adv.2006-01 for more information
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.15 2006/02/19 17:23:18 adrianp Exp $
|
|
#
|
|
|
|
DISTNAME= honeyd-1.5
|
|
CATEGORIES= security net
|
|
MASTER_SITES= http://www.citi.umich.edu/u/provos/honeyd/
|
|
|
|
MAINTAINER= adrianp@NetBSD.org
|
|
HOMEPAGE= http://www.honeyd.org/
|
|
COMMENT= Small daemon that creates virtual hosts on a network
|
|
|
|
DEPENDS+= honeyd-arpd>=0.2:../../security/honeyd-arpd
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
PKG_SYSCONFSUBDIR= honeyd
|
|
RCD_SCRIPTS= honeyd
|
|
USE_BUILTIN.libevent= NO
|
|
|
|
LIBS.Linux+= -lutil
|
|
|
|
.include "options.mk"
|
|
|
|
DIST_CONF_FILES= nmap.assoc xprobe2.conf nmap.prints \
|
|
config.ethernet pf.os config.sample
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
.for f in ${DIST_CONF_FILES}
|
|
CONF_FILES+= ${EGDIR:Q}/${f:Q} ${PKG_SYSCONFDIR:Q}/${f:Q}
|
|
.endfor
|
|
|
|
.include "../../devel/libevent/buildlink3.mk"
|
|
.include "../../devel/libdnsres/buildlink3.mk"
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../net/libdnet/buildlink3.mk"
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX:Q}/share/examples/honeyd
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC:Q}/README ${DOCDIR:Q}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|