mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00

Re-enable logging, now in policy because it probably is interesting to no-one. We also only log ocsp replies. Fix all tests. Fix an issue where ocsp replies were added to the x.509 certificate list.
54 lines
1.5 KiB
Text
54 lines
1.5 KiB
Text
##! Enable basic OCSP logging.
|
|
|
|
# This is in policy because probably just about no one is interested
|
|
# in logging OCSP responses.
|
|
|
|
module OCSP;
|
|
|
|
export {
|
|
redef enum Log::ID += { LOG };
|
|
|
|
type Info: record {
|
|
## Current timestamp.
|
|
ts: time &log;
|
|
|
|
## File id of the ocsp reply.
|
|
id: string &log;
|
|
|
|
hashAlgorithm: string &log;
|
|
issuerNameHash: string &log;
|
|
issuerKeyHash: string &log;
|
|
serialNumber: string &log;
|
|
certStatus: string &log;
|
|
revoketime: time &log &optional;
|
|
revokereason: string &log &optional;
|
|
thisUpdate: time &log;
|
|
nextUpdate: time &log &optional;
|
|
};
|
|
|
|
global log_ocsp: event(rec: Info);
|
|
}
|
|
|
|
event bro_init()
|
|
{
|
|
Log::create_stream(LOG, [$columns=Info, $ev=log_ocsp, $path="ocsp"]);
|
|
Files::register_for_mime_type(Files::ANALYZER_OCSP_REPLY, "application/ocsp-response");
|
|
}
|
|
|
|
event ocsp_response_certificate(f: fa_file, hashAlgorithm: string, issuerNameHash: string, issuerKeyHash: string, serialNumber: string, certStatus: string, revoketime: time, revokereason: string, thisUpdate: time, nextUpdate: time)
|
|
{
|
|
local wr = OCSP::Info($ts=f$info$ts, $id=f$id, $hashAlgorithm=hashAlgorithm, $issuerNameHash=issuerNameHash,
|
|
$issuerKeyHash=issuerKeyHash, $serialNumber=serialNumber, $certStatus=certStatus,
|
|
$thisUpdate=thisUpdate);
|
|
|
|
if ( revokereason != "" )
|
|
wr$revokereason = revokereason;
|
|
|
|
if ( time_to_double(revoketime) != 0 )
|
|
wr$revoketime = revoketime;
|
|
|
|
if ( time_to_double(nextUpdate) != 0 )
|
|
wr$nextUpdate = nextUpdate;
|
|
|
|
Log::write(LOG, wr);
|
|
}
|