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
18 lines
297 B
Bash
18 lines
297 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: honeyd.sh,v 1.2 2006/02/19 17:23:18 adrianp Exp $
|
|
#
|
|
|
|
# PROVIDE: honeyd
|
|
# REQUIRE: DAEMON
|
|
# AFTER: honeydarpd
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="honeyd"
|
|
rcvar=$name
|
|
command="@PREFIX@/bin/${name}"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|