summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl_3.0.17.bb
diff options
context:
space:
mode:
authorJiaying Song <jiaying.song.cn@windriver.com>2025-08-20 17:13:44 +0800
committerSteve Sakoman <steve@sakoman.com>2025-08-29 08:33:32 -0700
commitd6f3ce165174cd09f4af6c055d4974a15d9630ae (patch)
tree1cd09bd43d0e5ac4a470954acfd0f7d8e74b3bf7 /meta/recipes-connectivity/openssl/openssl_3.0.17.bb
parent6b05a9736953089e1f900a1c49cca37404737cfd (diff)
downloadpoky-d6f3ce165174cd09f4af6c055d4974a15d9630ae.tar.gz
openssl: fix CVE-2023-50781
A flaw was found in m2crypto. This issue may allow a remote attacker to decrypt captured messages in TLS servers that use RSA key exchanges, which may lead to exposure of confidential or sensitive data. The CVE-2023-50781 in M2Crypto is addressed by modifying OpenSSL because M2Crypto relies on OpenSSL for its cryptographic operations.The issue stems from OpenSSL’s RSA PKCS#1 v1.5 padding verification being vulnerable to Bleichenbacher-type attacks.To mitigate this, OpenSSL introduced an implicit rejection mechanism in the RSA PKCS#1 v1.5 padding.Therefore, resolving the vulnerability requires changes within OpenSSL itself to ensure M2Crypto’s security. References: https://nvd.nist.gov/vuln/detail/CVE-2023-50781 https://github.com/openssl/openssl/pull/13817/commits https://todo.sr.ht/~mcepl/m2crypto/342?__goaway_challenge=meta-refresh&__goaway_id=45a03d6accb7b343867110db1f7fb334 (From OE-Core rev: d24c4923d6f7a25bdc3ec5d4ac6bee32bb0bae88) Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl_3.0.17.bb')
-rw-r--r--meta/recipes-connectivity/openssl/openssl_3.0.17.bb8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_3.0.17.bb b/meta/recipes-connectivity/openssl/openssl_3.0.17.bb
index ee0ab2e498..a50bd2edbf 100644
--- a/meta/recipes-connectivity/openssl/openssl_3.0.17.bb
+++ b/meta/recipes-connectivity/openssl/openssl_3.0.17.bb
@@ -13,7 +13,13 @@ SRC_URI = "https://github.com/openssl/openssl/releases/download/openssl-${PV}/op
13 file://afalg.patch \ 13 file://afalg.patch \
14 file://0001-Configure-do-not-tweak-mips-cflags.patch \ 14 file://0001-Configure-do-not-tweak-mips-cflags.patch \
15 file://CVE-2024-41996.patch \ 15 file://CVE-2024-41996.patch \
16 " 16 file://CVE-2023-50781-1.patch \
17 file://CVE-2023-50781-2.patch \
18 file://CVE-2023-50781-3.patch \
19 file://CVE-2023-50781-4.patch \
20 file://CVE-2023-50781-5.patch \
21 file://CVE-2023-50781-6.patch \
22 "
17 23
18SRC_URI:append:class-nativesdk = " \ 24SRC_URI:append:class-nativesdk = " \
19 file://environment.d-openssl.sh \ 25 file://environment.d-openssl.sh \