mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
small test update & script fix
This commit is contained in:
parent
5db240f291
commit
e749f17821
2 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,7 @@ event ssl_stapled_ocsp(c: connection, is_orig: bool, response: string) &priority
|
|||
|
||||
event ssl_established(c: connection) &priority=3
|
||||
{
|
||||
if ( ! c$ssl?$cert_chain || |c$ssl$cert_chain| == 0 )
|
||||
if ( ! c$ssl?$cert_chain || |c$ssl$cert_chain| == 0 || !c$ssl?$ocsp_response )
|
||||
return;
|
||||
|
||||
local chain: vector of opaque of x509 = vector();
|
||||
|
|
|
@ -90,6 +90,7 @@
|
|||
@load protocols/ssl/log-hostcerts-only.bro
|
||||
#@load protocols/ssl/notary.bro
|
||||
@load protocols/ssl/validate-certs.bro
|
||||
@load protocols/ssl/validate-ocsp.bro
|
||||
@load protocols/ssl/weak-keys.bro
|
||||
@load tuning/__load__.bro
|
||||
@load tuning/defaults/__load__.bro
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue