summaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index fb4db91e38..15b70d577e 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -94,7 +94,22 @@ OpenSSL 3.3
### Changes between 3.3.0 and 3.3.1 [xx XXX xxxx]
- * none yet
+ * 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])
+
+ *Tomáš Mráz*
### Changes between 3.2 and 3.3.0 [9 Apr 2024]