mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00
Very basic file-analyzer for x509 certificates. Mostly ripped from
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...
This commit is contained in:
parent
33a7e96268
commit
e5a589dbfe
14 changed files with 449 additions and 1 deletions
10
src/file_analysis/analyzer/x509/Plugin.cc
Normal file
10
src/file_analysis/analyzer/x509/Plugin.cc
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "plugin/Plugin.h"
|
||||
|
||||
#include "X509.h"
|
||||
|
||||
BRO_PLUGIN_BEGIN(Bro, X509)
|
||||
BRO_PLUGIN_DESCRIPTION("Parse X509 Certificate");
|
||||
BRO_PLUGIN_FILE_ANALYZER("X509", X509);
|
||||
BRO_PLUGIN_BIF_FILE(events);
|
||||
BRO_PLUGIN_BIF_FILE(types);
|
||||
BRO_PLUGIN_END
|
Loading…
Add table
Add a link
Reference in a new issue