mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00

Now that it's loaded in bare mode, no need to load it explicitly. The main thing that tests were relying on seems to be tracking of c$service for conn.log baselines. Very few were actually checking for dpd.log
18 lines
443 B
Text
18 lines
443 B
Text
#
|
|
# @TEST-EXEC: zeek -b -r ${TRACES}/var-services-std-ports.trace %INPUT
|
|
# @TEST-EXEC: cat conn.log | zeek-cut service > service.out
|
|
# @TEST-EXEC-FAIL: grep -q ssh service.out
|
|
# @TEST-EXEC-FAIL: grep -q dns service.out
|
|
|
|
@load base/protocols/conn
|
|
@load base/protocols/dns
|
|
@load base/protocols/ssh
|
|
|
|
redef Analyzer::disabled_analyzers += { Analyzer::ANALYZER_SSH };
|
|
|
|
event zeek_init()
|
|
{
|
|
Analyzer::disable_analyzer(Analyzer::ANALYZER_DNS);
|
|
}
|
|
|
|
|