zeek/scripts/base/files/ocsp/main.bro
Liang Zhu e9baddfd6b add a file analyzer to parse ocsp request and response
add two events: ocsp_request and ocsp_response
2015-06-15 11:05:04 -07:00

11 lines
221 B
Text

@load base/frameworks/files
@load base/utils/paths
module FileOCSP;
export {
## add one more argument to indicate is ocsp response or request
redef record Files::AnalyzerArgs += {
ocsp_type: string &optional;
};
}