]> git.ipfire.org Git - ipfire-2.x.git/commit
openssl: Update to version 3.3.1
authorAdolf Belka <adolf.belka@ipfire.org>
Mon, 26 Aug 2024 12:24:19 +0000 (14:24 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 27 Aug 2024 09:49:34 +0000 (09:49 +0000)
commit3d971965256c3bd9d6c233675b6b20fc5e51f810
treea550992b10f49c03181ecbd7a95739a380a83679
parent8e6bb176b126579f970452ee54effe3e84422e6b
openssl: Update to version 3.3.1

- Update from 3.3.0 to 3.3.1
- Update of rootfile not required
- This version has 2 CVE fixes both of which are classified as Low Severity so looks like
   they can wait for CU189
- Changelog
    3.3.1
 * Fixed potential use after free after SSL_free_buffers() is called.
   The SSL_free_buffers function is used to free the internal OpenSSL
   buffer used when processing an incoming record from the network.
   The call is only expected to succeed if the buffer is not currently
   in use. However, two scenarios have been identified where the buffer
   is freed even when still in use.
   The first scenario occurs where a record header has been received
   from the network and processed by OpenSSL, but the full record body
   has not yet arrived. In this case calling SSL_free_buffers will succeed
   even though a record has only been partially processed and the buffer
   is still in use.
   The second scenario occurs where a full record containing application
   data has been received and processed by OpenSSL but the application has
   only read part of this data. Again a call to SSL_free_buffers will
   succeed even though the buffer is still in use.
   ([CVE-2024-4741])
 * Fixed an issue where checking excessively long DSA keys or parameters may
   be very slow.
   Applications that use the functions EVP_PKEY_param_check() or
   EVP_PKEY_public_check() to check a DSA public key or DSA parameters may
   experience long delays. Where the key or parameters that are being checked
   have been obtained from an untrusted source this may lead to a Denial of
   Service.
   To resolve this issue DSA keys larger than OPENSSL_DSA_MAX_MODULUS_BITS
   will now fail the check immediately with a DSA_R_MODULUS_TOO_LARGE error
   reason.
   ([CVE-2024-4603])
 * Improved EC/DSA nonce generation routines to avoid bias and timing
   side channel leaks.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/openssl