mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

- Updates to cluster framework to finish the separation between broctl and bro - Extension technique for extending notice emails with extra content. - Deleting the connection record from notices after calling apply_policy. It may have been causing some load and memory issues from copying lots of data to other cluster members. This is a test to see if we are right about the memory trouble. - Abstracted some of the notice actions into separate scripts. - - Lots of small cleanup and fixes.
32 lines
883 B
Text
32 lines
883 B
Text
##! Local site policy. Customize as appropriate.
|
|
|
|
# DPD should typically be loaded. It enables the subsystem for detecting
|
|
# protocols on non-standard ports and attaching the appropriate analyzer.
|
|
@load frameworks/dpd
|
|
|
|
# Load some of the commonly used frameworks.
|
|
@load frameworks/notice
|
|
@load frameworks/signatures
|
|
@load frameworks/metrics
|
|
@load frameworks/intel
|
|
@load frameworks/software
|
|
@load frameworks/reporter
|
|
|
|
# Load a few extra scripts that aren't loaded by default.
|
|
@load frameworks/packet-filter/netstats
|
|
@load misc/loaded-scripts
|
|
|
|
# Load most of the protocol analysis scripts.
|
|
@load protocols/conn
|
|
@load protocols/dns
|
|
@load protocols/ftp
|
|
@load protocols/http
|
|
@load protocols/irc
|
|
@load protocols/mime
|
|
@load protocols/smtp
|
|
@load protocols/ssh
|
|
@load protocols/ssl
|
|
@load protocols/syslog
|
|
|
|
# Apply the default tuning scripts for common tuning settings.
|
|
@load tuning/defaults
|