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:
Johanna Amann 2023-03-15 14:10:07 +01:00
commit aa3053db00
3 changed files with 9 additions and 2 deletions

View file

@ -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
* SSL/TLS: Parse CertificateRequest message (Johanna Amann, Corelight)

View file

@ -1 +1 @@
6.0.0-dev.206
6.0.0-dev.208

View file

@ -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;
if ( ext?$short_name )
print ext$short_name;
else
print "UNDEF";
print ext$value;
}