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

This also installs symlinks from "zeek" and "bro-config" to a wrapper script that prints a deprecation warning. The btests pass, but this is still WIP. broctl renaming is still missing. #239
12 lines
343 B
Text
12 lines
343 B
Text
# @TEST-EXEC: zeek -r $TRACES/ftp/cwd-navigation.pcap >output.log %INPUT
|
|
# @TEST-EXEC: btest-diff conn.log
|
|
# @TEST-EXEC: btest-diff ftp.log
|
|
# @TEST-EXEC: btest-diff output.log
|
|
|
|
# Make sure we're tracking the CWD correctly.
|
|
event ftp_reply(c: connection, code: count, msg: string, cont_resp: bool) &priority=10
|
|
{
|
|
print "CWD", c$ftp$cwd;
|
|
}
|
|
|
|
|