16 lines
409 B
Plaintext
16 lines
409 B
Plaintext
# This tests a normal SSL connection and the log it outputs.
|
|
|
|
# @TEST-EXEC: zeek -b -r $TRACES/tls/tls-conn-with-extensions.trace %INPUT
|
|
# @TEST-EXEC: zeek -b -C -r $TRACES/tls/cert-no-cn.pcap %INPUT
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
@load base/protocols/ssl
|
|
|
|
event x509_certificate(f: fa_file, cert_ref: opaque of x509, cert: X509::Certificate)
|
|
{
|
|
if ( cert?$cn )
|
|
print cert$cn;
|
|
else
|
|
print "No CN";
|
|
}
|