- IPFire-3.x - Update from version 3.1.2 to 3.1.4 - Changelog 3.1.4 * Fix incorrect key and IV resizing issues when calling EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2() or EVP_CipherInit_ex2() with OSSL_PARAM parameters that alter the key or IV length ([CVE-2023-5363]). 3.1.3 * Fix POLY1305 MAC implementation corrupting XMM registers on Windows. The POLY1305 MAC (message authentication code) implementation in OpenSSL does not save the contents of non-volatile XMM registers on Windows 64 platform when calculating the MAC of data larger than 64 bytes. Before returning to the caller all the XMM registers are set to zero rather than restoring their previous content. The vulnerable code is used only on newer x86_64 processors supporting the AVX512-IFMA instructions. The consequences of this kind of internal application state corruption can be various - from no consequences, if the calling application does not depend on the contents of non-volatile XMM registers at all, to the worst consequences, where the attacker could get complete control of the application process. However given the contents of the registers are just zeroized so the attacker cannot put arbitrary values inside, the most likely consequence, if any, would be an incorrect result of some application dependent calculations or a crash leading to a denial of service. ([CVE-2023-4807])
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- openssl/openssl.nm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/openssl/openssl.nm b/openssl/openssl.nm index 6d5d21863..19214a8e9 100644 --- a/openssl/openssl.nm +++ b/openssl/openssl.nm @@ -4,8 +4,8 @@ ###############################################################################
name = openssl -version = 3.1.2 -release = 2 +version = 3.1.4 +release = 1
maintainer = Michael Tremer michael.tremer@ipfire.org groups = System/Libraries