mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
17 lines
514 B
Text
17 lines
514 B
Text
# Test a heavily fragmented tls connection
|
|
|
|
# @TEST-EXEC: cat $TRACES/tls/tls-fragmented-handshake.pcap.gz | gunzip | zeek -b -r - %INPUT
|
|
# @TEST-EXEC: btest-diff ssl.log
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
@load base/protocols/ssl
|
|
|
|
redef SSL::log_include_client_certificate_subject_issuer = T;
|
|
redef SSL::log_include_server_certificate_subject_issuer = T;
|
|
|
|
# Certificate has 10,000 alternative names :)
|
|
event x509_ext_subject_alternative_name(f: fa_file, ext: X509::SubjectAlternativeName)
|
|
{
|
|
print |ext$dns|;
|
|
}
|
|
|