mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18: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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue