OpenSSL released version 1.1.1g including a high severity fix, so this
should probably make 6.7.

The fix itself is tiny: 

https://github.com/openssl/openssl/commit/eb563247aef3e83dda7679c43f9649270462e5b1

CVE-2020-1967 (OpenSSL advisory) [High severity] 21 April 2020:

    Server or client applications that call the SSL_check_chain()
    function during or after a TLS 1.3 handshake may crash due to a NULL
    pointer dereference as a result of incorrect handling of the
    "signature_algorithms_cert" TLS extension. The crash occurs if an
    invalid or unrecognised signature algorithm is received from the
    peer. This could be exploited by a malicious peer in a Denial of
    Service attack. OpenSSL version 1.1.1d, 1.1.1e, and 1.1.1f are
    affected by this issue. This issue did not affect OpenSSL versions
    prior to 1.1.1d. Reported by Bernd Edlinger. 

The full diff to 1.1.1f is pretty big due to lots of whitespace and
other churn. I could not spot an ABI change (the constant time AES stuff
is disabled by default), neither did check_sym.

Index: Makefile
===================================================================
RCS file: /var/cvs/ports/security/openssl/1.1/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile    31 Mar 2020 14:50:08 -0000      1.14
+++ Makefile    21 Apr 2020 13:49:42 -0000
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.14 2020/03/31 14:50:08 tb Exp $
 
 PORTROACH=     limit:^1\.1\.[0-9][a-z] skipb:0 skipv:1.1.1
-V=             1.1.1f
+V=             1.1.1g
 
 SHLIBVER=      11.5
 SHARED_LIBS=   crypto ${SHLIBVER} \
Index: distinfo
===================================================================
RCS file: /var/cvs/ports/security/openssl/1.1/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo    31 Mar 2020 14:50:08 -0000      1.7
+++ distinfo    21 Apr 2020 13:49:42 -0000
@@ -1,2 +1,2 @@
-SHA256 (openssl-1.1.1f.tar.gz) = GGxr/m7PunpbSMR/ihZz0POw5bouJWAt0jtimXXaPzU=
-SIZE (openssl-1.1.1f.tar.gz) = 9792828
+SHA256 (openssl-1.1.1g.tar.gz) = 3bBHdPHjLwxJdR4htnIWrIeFLOsFa3UgmvJENABjbUY=
+SIZE (openssl-1.1.1g.tar.gz) = 9801502
Index: pkg/PLIST
===================================================================
RCS file: /var/cvs/ports/security/openssl/1.1/pkg/PLIST,v
retrieving revision 1.6
diff -u -p -r1.6 PLIST
--- pkg/PLIST   17 Mar 2020 18:38:39 -0000      1.6
+++ pkg/PLIST   21 Apr 2020 14:10:20 -0000
@@ -3558,6 +3558,7 @@ lib/eopenssl11/man/man3/
 @man lib/eopenssl11/man/man3/X509_check_ip_asc.3
 @man lib/eopenssl11/man/man3/X509_check_issued.3
 @man lib/eopenssl11/man/man3/X509_check_private_key.3
+@man lib/eopenssl11/man/man3/X509_check_purpose.3
 @man lib/eopenssl11/man/man3/X509_cmp.3
 @man lib/eopenssl11/man/man3/X509_cmp_current_time.3
 @man lib/eopenssl11/man/man3/X509_cmp_time.3

Reply via email to