mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

- Use `-b` most everywhere, it will save time. - Start some intel tests upon the input file being fully read instead of at an arbitrary time. - Improve termination condition for some sumstats/cluster tests. - Filter uninteresting output from some supervisor tests. - Test for `notice_policy.log` is no longer needed.
14 lines
431 B
Text
14 lines
431 B
Text
# Test that certificate caching works as expected.
|
|
|
|
# @TEST-EXEC: zeek -b -r $TRACES/tls/google-duplicate.trace %INPUT
|
|
# @TEST-EXEC: btest-diff x509.log
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
@load base/protocols/ssl
|
|
|
|
redef X509::caching_required_encounters = 1;
|
|
|
|
hook X509::x509_certificate_cache_replay(f: fa_file, e: any, sha256: string) &priority=1
|
|
{
|
|
print "Encountered cached certificate not further handled by core", sha256;
|
|
}
|