mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
and more tiny ssl script fixes
This commit is contained in:
parent
ff00c0786a
commit
9a8fc7a47d
2 changed files with 5 additions and 2 deletions
|
@ -127,7 +127,7 @@ event ssl_established(c: connection) &priority=6
|
|||
c$ssl$issuer = c$ssl$cert_chain[0]$x509$certificate$issuer;
|
||||
}
|
||||
|
||||
if ( c$ssl?$client_cert_chain && |c$ssl$client_cert_chain| > 0 && c$ssl$cert_chain[0]?$x509 )
|
||||
if ( c$ssl?$client_cert_chain && |c$ssl$client_cert_chain| > 0 && c$ssl$client_cert_chain[0]?$x509 )
|
||||
{
|
||||
c$ssl$client_subject = c$ssl$client_cert_chain[0]$x509$certificate$subject;
|
||||
c$ssl$client_issuer = c$ssl$client_cert_chain[0]$x509$certificate$issuer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue