mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
OCSP: split into two analysers in scriptland.
Instead of having an additional string argument specifying if we are sending a request or a reply, we now have an ANALYZER_OCSP_REQUEST and an ANALYZER_OCSP_REPLY
This commit is contained in:
parent
e1bcc4509f
commit
1b19ab78b6
4 changed files with 19 additions and 25 deletions
|
@ -14,7 +14,8 @@ public:
|
|||
plugin::Configuration Configure()
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("X509", ::file_analysis::X509::Instantiate));
|
||||
AddComponent(new ::file_analysis::Component("OCSP", ::file_analysis::OCSP::Instantiate));
|
||||
AddComponent(new ::file_analysis::Component("OCSP_REQUEST", ::file_analysis::OCSP::InstantiateRequest));
|
||||
AddComponent(new ::file_analysis::Component("OCSP_REPLY", ::file_analysis::OCSP::InstantiateReply));
|
||||
|
||||
plugin::Configuration config;
|
||||
config.name = "Bro::X509";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue