mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +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
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
||||||
|
6.0.0-dev.208 | 2023-03-15 14:10:07 +0100
|
||||||
|
|
||||||
|
* Fix the x509-invalid-extension test on OpenSSL 3.1 (Johanna Amann, Corelight)
|
||||||
|
|
||||||
6.0.0-dev.206 | 2023-03-15 10:02:52 +0100
|
6.0.0-dev.206 | 2023-03-15 10:02:52 +0100
|
||||||
|
|
||||||
* SSL/TLS: Parse CertificateRequest message (Johanna Amann, Corelight)
|
* SSL/TLS: Parse CertificateRequest message (Johanna Amann, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
6.0.0-dev.206
|
6.0.0-dev.208
|
||||||
|
|
|
@ -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" )
|
if ( ext$oid != "1.3.6.1.5.5.7.1.12" )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
print ext$short_name;
|
if ( ext?$short_name )
|
||||||
|
print ext$short_name;
|
||||||
|
else
|
||||||
|
print "UNDEF";
|
||||||
print ext$value;
|
print ext$value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue