mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00

the ssl-analyzer and the topic/bernhard/x509 branch. Simply prints information about the encountered certificates (I have not yet my mind up, what I will log...). Next step: extensions...
14 lines
161 B
Text
14 lines
161 B
Text
|
|
@load base/frameworks/files
|
|
|
|
module X509;
|
|
|
|
export {
|
|
redef enum Log::ID += { LOG };
|
|
}
|
|
|
|
event x509_cert(f: fa_file, cert: X509::Certificate)
|
|
{
|
|
print cert;
|
|
}
|
|
|