mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
Merge remote-tracking branch 'origin/topic/johanna/fix-scripts.base.protocols.ssl.x509-invalid-extension-on-openssl-3.1'
* origin/topic/johanna/fix-scripts.base.protocols.ssl.x509-invalid-extension-on-openssl-3.1: Fix the x509-invalid-extension test on OpenSSL 3.1
This commit is contained in:
commit
aa3053db00
3 changed files with 9 additions and 2 deletions
|
@ -8,6 +8,9 @@ event x509_extension(f: fa_file, ext: X509::Extension)
|
|||
if ( ext$oid != "1.3.6.1.5.5.7.1.12" )
|
||||
return;
|
||||
|
||||
print ext$short_name;
|
||||
if ( ext?$short_name )
|
||||
print ext$short_name;
|
||||
else
|
||||
print "UNDEF";
|
||||
print ext$value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue