mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
16 lines
576 B
Text
16 lines
576 B
Text
# @TEST-EXEC: zeek -b -r $TRACES/tls/webrtc-stun.pcap %INPUT
|
|
# @TEST-EXEC: btest-diff ssl.log
|
|
# @TEST-EXEC: touch dpd.log
|
|
# @TEST-EXEC: btest-diff dpd.log
|
|
|
|
@load base/protocols/ssl
|
|
@load base/frameworks/dpd
|
|
|
|
redef SSL::log_include_client_certificate_subject_issuer = T;
|
|
redef SSL::log_include_server_certificate_subject_issuer = T;
|
|
|
|
event ssl_client_hello(c: connection, version: count, record_version: count, possible_ts: time, client_random: string, session_id: string, ciphers: index_vec, comp_methods: index_vec)
|
|
{
|
|
print version, client_random, session_id, ciphers;
|
|
}
|
|
|