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

This is defined in RFC 4217; TLS initialized by the client sending an `AUTH TLS` command. Fixes GH-4463
13 lines
338 B
Text
13 lines
338 B
Text
# This tests explicit TLS.
|
|
#
|
|
# @TEST-EXEC: zeek -r $TRACES/ftp/ftp-auth-tls.pcap %INPUT
|
|
# @TEST-EXEC: btest-diff conn.log
|
|
# @TEST-EXEC: btest-diff ftp.log
|
|
# @TEST-EXEC: btest-diff ssl.log
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
redef FTP::logged_commands += { "<init>", "AUTH" };
|
|
|
|
event ftp_starttls(c: connection) {
|
|
print "starttls", c$id;
|
|
}
|