{
	"document":{
		"aggregate_severity":{
			"namespace":"https://nvd.nist.gov/vuln-metrics/cvss",
			"text":"Critical"
		},
		"category":"csaf_vex",
		"csaf_version":"2.0",
		"distribution":{
			"tlp":{
				"label":"WHITE",
				"url":"https:/www.first.org/tlp/"
			}
		},
		"lang":"en",
		"notes":[
			{
				"text":"openssl security update",
				"category":"general",
				"title":"Synopsis"
			},
			{
				"text":"An update for openssl is now available for openEuler-24.03-LTS-SP1",
				"category":"general",
				"title":"Summary"
			},
			{
				"text":"OpenSSL is a robust, commercial-grade, and full-featured toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols.\n\nSecurity Fix(es):\n\nIssue summary: Parsing a crafted DER-encoded ASN.1 structure with a primitive\nelement whose content exceeds 2 gigabytes in length may cause a heap buffer\nover-read on 64-bit Unix and Unix-like platforms.\n\nImpact summary: The heap buffer over-read may crash the application (Denial of\nService) or to load into the decoded ASN.1 object contents of memory beyond the\nend of the input buffer.  More typically such ASN.1 elements would instead be\ntruncated.\n\nAn integer truncation in OpenSSL's ASN.1 decoder causes the content length of\nan ASN.1 primitive element to be mishandled when it exceeds 2 gigabytes. In the\nworst case the truncated length is treated as a request to scan the binary\ncontent for a terminating zero byte, possibly causing OpenSSL to read either\nless than or beyond the end of the allocated buffer.\n\nApplications that pass attacker-supplied data to d2i_X509(), d2i_PKCS7(), or\nany other d2i_* decoding function are affected. OpenSSL's own command-line\ntools are not vulnerable, as data read through the BIO layer is checked before\nit reaches the affected code. The issue only affects 64-bit Unix and Unix-like\nplatforms; 32-bit platforms and 64-bit Windows are not affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by this issue,\nas the affected code is outside the OpenSSL FIPS module boundary.(CVE-2026-34180)\n\nIssue Summary: Cryptographic Message Services (CMS) processing fails to perform\nsufficient input validation on the cipher and tag length fields of\nAuthEnvelopedData containers, leading to various potential compromises.\n\nImpact Summary: Attackers making use of these vulnerabilities may achieve\nkey-equivalent functionality for a given CMS recipient and/or bypass integrity\nvalidation for a given message.\n\nIn one use case, an attacker may send a CMS message containing\nAuthEnvelopedData with the cipher specified as a non-AEAD cipher.  OpenSSL\nerroneously allows this selection, and attempts to decrypt and validate the\nmessage.\n\nAn on-path attacker who captures one legitimate AES-GCM AuthEnvelopedData\naddressed to the victim can re-emit it with the recipientInfos set left\nbyte-for-byte intact, so the victim's private key still unwraps the genuine CEK\n(the content-encryption key), but with the inner OID rewritten to AES-256-OFB\n(Output Feedback Mode, an unauthenticated keystream mode) and with an\nattacker-chosen IV and ciphertext. The victim initializes AES-256-OFB under the\nreal CEK, never consults the MAC field, and CMS_decrypt() returns success.\n\nIf the application under attack responds to the attacker with any indicator\nshowing success or failure of the decryption effort, it is possible for the\nattacker to use this as an oracle to obtain key equivalent functionality for the\nCEK used for the chosen recipient of the message.\n\nIn another use case, an attacker can reduce the tag length of the chosen AEAD\ncipher for a given AuthEnvelopedData container to be a single byte long,\nallowing an attacker to brute force CMS decryption, producing an integrity\nbypass for applications that trust CMS_decrypt() to reject modified content.\n\nThe FIPS modules are not affected by this issue.(CVE-2026-34182)\n\nIssue summary: A specially crafted password-encrypted CMS message\ncan trigger a NULL pointer dereference during CMS decryption.\n\nImpact summary: This NULL pointer dereference leads to an application crash\nand a Denial of Service.\n\nThe CMS PasswordRecipientInfo.keyDerivationAlgorithm field is defined as\nOPTIONAL in the ASN.1 specification and may therefore be absent in specially\ncrafted inputs. During the password-based CMS decryption the OpenSSL\nCMS implementation dereferences this field without first checking whether it\nwas present.\n\nAn attacker who supplies such a CMS message to an application performing\npassword-based CMS decryption can trigger an application crash, leading to\na Denial of Service.\n\nApplications that process password-encrypted CMS messages may be affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as the affected code is outside the OpenSSL FIPS module boundary.(CVE-2026-42766)\n\nIssue summary: An attacker-controlled CMP (Certificate Management Protocol)\nserver could trigger a NULL pointer dereference in a CMP client application.\n\nImpact summary: A NULL pointer dereference causes a crash of the\napplication and a Denial of Service.\n\nAn attacker controlling a CMP server (or acting as a man-in-the-middle) could\ncraft a CMP response containing a CRMF (Certificate Request Message Format)\nCertRepMessage with an EncryptedValue structure where the symmAlg field\nhas an algorithm OID but no parameters field. When the OpenSSL CMP client\nprocesses this response, the NULL dereference occurs, causing a crash of\nthe CMP client.\n\nApplications that process untrusted CMP/CRMF messages may be affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as the affected code is outside the OpenSSL FIPS module boundary.(CVE-2026-42767)\n\nIssue summary: When EVP_PKEY_derive_set_peer() is called with a DHX (X9.42)\npeer key, the peer key is not properly checked for the subgroup membership.\n\nImpact summary: A malicious peer which presents an X9.42 key carrying the\nvictim's p and g parameters, a forged q = r (a small prime factor of the\ncofactor (p−1)/q_local), and a public value Y of order r can recover the\nvictim's private key after a small number of key exchange attempts.\n\nWhen EVP_PKEY_derive_set_peer() is called with a DHX (X9.42) peer key, the\nsubgroup membership check Y^q ≡ 1 (mod p) is performed using the peer's\nown q parameter, not the local key's q. The peer's domain parameters are\nthen matched against the domain parameters of the private key, but the value\nof q is not compared.\n\nA malicious peer who presents an X9.42 key carrying the victim's p, g,\na forged q = r (a small prime factor of the cofactor), and a public\nvalue Y of order r passes all checks. The shared secret then takes only\nr distinct values, leaking priv mod r. Repeating for each small-prime\nfactor of the cofactor and combining via CRT recovers the full private\nkey (Lim–Lee / small-subgroup-confinement attack).\n\nThe realistic attack surface is narrow: principally CMP deployments with\nlong-lived RA/CA DHX keys and bespoke enterprise or government applications\nusing X9.42 DHX static keys with interactive protocols and therefore this\nissue was assigned Low severity.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are affected by this\nissue.(CVE-2026-42770)\n\nIssue summary: When an application drives an AES-OCB context through the\npublic EVP_Cipher() one-shot interface, the application-supplied\ninitialisation vector (IV) is silently discarded.\n\nImpact summary: Every message encrypted under the same key uses the\nsame effective nonce regardless of the IV supplied by the caller,\nresulting in (key, nonce) reuse and loss of confidentiality.  If the\nsame code path is used to compute the authentication tag, the tag\ndepends only on the (key, IV) pair and not on the plaintext or\nciphertext, allowing universal forgery of arbitrary ciphertext from a\nsingle captured message.\n\nOpenSSL provides two ways to drive a cipher: the documented streaming\ninterface (EVP_CipherUpdate / EVP_CipherFinal_ex) and a lower-level\none-shot, EVP_Cipher(), whose documentation explicitly recommends\nagainst use by applications in favour of EVP_CipherUpdate() and\nEVP_CipherFinal_ex().  The OCB provider's streaming handler flushes\nthe application-supplied IV into the OCB context before processing\ndata; the one-shot handler did not.  Every call to EVP_Cipher() on an\nAES-OCB context therefore ran with the all-zero key-derived offset\nstate left by cipher initialisation, regardless of the caller's IV.\n\nIf EVP_EncryptFinal_ex() is subsequently used to obtain the\nauthentication tag, the deferred IV setup runs at that point and\nclears the running checksum that should have been accumulated over the\nplaintext.  The resulting tag is a function of (key, IV) only and\nverifies against any ciphertext produced under the same (key, IV)\npair.\n\nThe OpenSSL SSL/TLS implementation is not affected: AES-OCB is not a\nTLS cipher suite, and libssl does not call EVP_Cipher() in any case.\nApplications that drive AES-OCB through the documented streaming AEAD\nAPI (EVP_CipherUpdate / EVP_CipherFinal_ex) are not affected.  Only\napplications that combine the AES-OCB cipher with the EVP_Cipher()\none-shot API are vulnerable.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by\nthis issue, as AES-OCB is outside the OpenSSL FIPS module boundary.(CVE-2026-45445)\n\nIssue summary: The implementations of AES-SIV (RFC 5297) and AES-GCM-SIV\n(RFC 8452) mishandle the authentication of AAD (Additional Authenticated\nData) with an empty ciphertext allowing a forgery of such messages.\n\nImpact summary: An attacker can forge empty messages with arbitrary AAD\nto the victim's application using these ciphers.\n\nAES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) are nonce-misuse-resistant AEAD\nmodes: they accept a key, nonce, optional AAD (bytes that are authenticated\nbut not encrypted), and plaintext, and produces ciphertext plus a 16-byte\ntag. On decrypt, `EVP_DecryptFinal_ex()` is documented to return success only\nif the tag is verified succesfully.\n\nIn OpenSSL's provider implementation of these ciphers, the expected tag is\ncomputed only when decryption function is invoked with non-empty data.\nIf the caller supplies AAD and then calls `EVP_DecryptFinal_ex()` without\ninvocation of the ciphertext update, which can happen when the received\nciphertext length is zero, the tag is never recalculated and still holds its\nall-zeros value.\n\nWhen AES-GCM-SIV is used, an attacker who sends arbitrary AAD, empty\nciphertext, and all-zeros tag passes authentication under any key they do not\nknow, single-shot. When AES-SIV is used, for mounting the attack it's\nnecessary for the application to reuse the decryption context without\nresetting the key.\n\nAES-SIV is implemented since OpenSSL 3.0. AES-GCM-SIV is implemented since\nOpenSSL 3.2.\n\nNo protocols implemented in OpenSSL itself (TLS/CMS/PKCS7/HPKE/QUIC) support\neither AES-GCM-SIV or AES-SIV. To mount an attack, the applications must\nimplement their own protocol and use the EVP interface. Also they must skip the\nciphertext update when a message with an empty ciphertext arrives.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as these algorithms are not FIPS approved and the affected code is\noutside the OpenSSL FIPS module boundary.(CVE-2026-45446)\n\nIssue summary: A specially crafted PKCS#7 or S/MIME signed message could\ntrigger a use-after-free during PKCS#7 signature verification.\n\nImpact summary: A use-after-free may result in process crashes, heap\ncorruption, or potentially remote code execution.\n\nWhen processing a PKCS#7 or S/MIME signed message, if the SignedData\ndigestAlgorithms field is present as an empty ASN.1 SET, OpenSSL may\nincorrectly free a caller-owned BIO during PKCS7_verify(). A subsequent\nuse of the BIO by the calling application results in a use-after-free\ncondition.\n\nIn the common case this occurs when the application later calls\nBIO_free() on the BIO originally passed to PKCS7_verify(). Depending\non allocator behavior and application-specific BIO usage patterns, this\nmay result in a crash or other memory corruption. In some application\ncontexts this may potentially be exploitable for remote code execution.\n\nApplications that process PKCS#7 or S/MIME signed messages using OpenSSL\nPKCS#7 APIs may be affected. Applications using the CMS APIs for this\nprocessing are not affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as the affected code is outside the OpenSSL FIPS module boundary.(CVE-2026-45447)\n\nIssue summary: A signed integer overflow when sizing the destination\nbuffer for Unicode output in ASN1_mbstring_ncopy() can lead to a heap\nbuffer overflow.\n\nImpact summary: A heap buffer overflow may lead to a crash or possibly\nattacker controlled code execution or other undefined behaviour.\n\nIn ASN1_mbstring_copy() and ASN1_mbstring_ncopy() the destination\nsize for Unicode output is computed in a signed int: by left shift\nof the input character count for BMPSTRING (UTF-16) and\nUNIVERSALSTRING (UTF-32), and by summing per-character byte counts\nfor UTF8STRING. The calculation overflows when the input reaches\naround 2^30 characters. In the worst case (UNIVERSALSTRING at 2^30\ncharacters) the size wraps to zero, OPENSSL_malloc(1) is called, and\nthe subsequent character copy writes several gigabytes past the\none-byte allocation.\n\nX.509 certificate processing routes through ASN1_STRING_set_by_NID(),\nwhose DIRSTRING_TYPE mask excludes UNIVERSALSTRING and whose per-NID\nsize limits cap the input length; no network protocol or\ncertificate-handling path in OpenSSL exercises the overflow.\nTriggering the bug requires an application that calls\nASN1_mbstring_copy() or ASN1_mbstring_ncopy() directly, or registers\na custom string type via ASN1_STRING_TABLE_add(), with\nattacker-controlled input on the order of half a gigabyte or more.\nFor these reasons this issue was assigned Low severity.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by\nthis issue, as the affected code is outside the OpenSSL FIPS module\nboundary.(CVE-2026-7383)\n\nIssue summary: When CMS password-based decryption (RFC 3211 / PWRI key unwrap)\nprocesses attacker-supplied CMS data, an attacker-chosen stream-mode KEK\ncipher can trigger a heap out-of-bounds read in kek_unwrap_key().\n\nImpact summary: A heap buffer over-read may trigger a crash which leads to\nDenial of Service for an application if the input buffer ends at a memory\npage boundary and the following page is unmapped. There is no information\ndisclosure as the over-read bytes are not revealed to the attacker.\n\nThe key unwrapping function performs a check-byte test as specified in the\nRFC that reads 7 bytes from a heap allocation that is based on the wrapped\nkey length from the message. There is a minimum length check based on the\nblock length of the wrapping cipher. However the cipher is selected from\nan OID carried in the attacker's PWRI keyEncryptionAlgorithm with no\nrequirement that the cipher be a block cipher. When an attacker selects\na stream-mode cipher the guard will be ineffective and the allocated buffer\ncontaining the unwrapped key can be too small to fit the check-bytes\nspecified in the RFC and a buffer over-read can happen.\n\nApplications calling CMS_decrypt() or CMS_decrypt_set1_password()\n(equivalently openssl cms -decrypt -pwri_password ...) on untrusted CMS\ndata are vulnerable to this issue. No password knowledge is required: the\nover-read happens during the unwrap attempt before any authentication\nsucceeds.\n\nThe over-read is limited to a few bytes and is not written to output, so\nthere is no information disclosure. Triggering a crash requires the\nallocation to border unmapped memory, which is unlikely with the normal\nallocator.\n\nThe FIPS modules are not affected by this issue.(CVE-2026-9076)",
				"category":"general",
				"title":"Description"
			},
			{
				"text":"An update for openssl is now available for openEuler-24.03-LTS-SP1.\n\nopenEuler Security has rated this update as having a security impact of critical. A Common Vunlnerability Scoring System(CVSS)base score,which gives a detailed severity rating, is available for each vulnerability from the CVElink(s) in the References section.",
				"category":"general",
				"title":"Topic"
			},
			{
				"text":"Critical",
				"category":"general",
				"title":"Severity"
			},
			{
				"text":"openssl",
				"category":"general",
				"title":"Affected Component"
			}
		],
		"publisher":{
			"issuing_authority":"openEuler security committee",
			"name":"openEuler",
			"namespace":"https://www.openeuler.org",
			"contact_details":"openeuler-security@openeuler.org",
			"category":"vendor"
		},
		"references":[
			{
				"summary":"openEuler-SA-2026-2781",
				"category":"self",
				"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
			},
			{
				"summary":"CVE-2026-34180",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-34180&packageName=openssl"
			},
			{
				"summary":"CVE-2026-34182",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-34182&packageName=openssl"
			},
			{
				"summary":"CVE-2026-42766",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-42766&packageName=openssl"
			},
			{
				"summary":"CVE-2026-42767",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-42767&packageName=openssl"
			},
			{
				"summary":"CVE-2026-42770",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-42770&packageName=openssl"
			},
			{
				"summary":"CVE-2026-45445",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-45445&packageName=openssl"
			},
			{
				"summary":"CVE-2026-45446",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-45446&packageName=openssl"
			},
			{
				"summary":"CVE-2026-45447",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-45447&packageName=openssl"
			},
			{
				"summary":"CVE-2026-7383",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-7383&packageName=openssl"
			},
			{
				"summary":"CVE-2026-9076",
				"category":"self",
				"url":"https://www.openeuler.org/en/security/cve/detail/?cveId=CVE-2026-9076&packageName=openssl"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-34180"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-34182"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-42766"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-42767"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-42770"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-45445"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-45446"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-45447"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-7383"
			},
			{
				"summary":"nvd cve",
				"category":"external",
				"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-9076"
			},
			{
				"summary":"openEuler-SA-2026-2781 vex file",
				"category":"self",
				"url":"https://repo.openeuler.org/security/data/csaf/advisories/2026/csaf-openeuler-sa-2026-2781.json"
			}
		],
		"title":"An update for openssl is now available for openEuler-24.03-LTS-SP1",
		"tracking":{
			"initial_release_date":"2026-06-30T20:09:26+08:00",
			"revision_history":[
				{
					"date":"2026-06-30T20:09:26+08:00",
					"summary":"Initial",
					"number":"1.0.0"
				}
			],
			"generator":{
				"date":"2026-06-30T20:09:26+08:00",
				"engine":{
					"name":"openEuler CSAF Tool V1.0"
				}
			},
			"current_release_date":"2026-06-30T20:09:26+08:00",
			"id":"openEuler-SA-2026-2781",
			"version":"1.0.0",
			"status":"final"
		}
	},
	"product_tree":{
		"branches":[
			{
				"name":"openEuler",
				"category":"vendor",
				"branches":[
					{
						"name":"openEuler",
						"branches":[
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openEuler-24.03-LTS-SP1",
									"name":"openEuler-24.03-LTS-SP1"
								},
								"name":"openEuler-24.03-LTS-SP1",
								"category":"product_version"
							}
						],
						"category":"product_name"
					},
					{
						"name":"aarch64",
						"branches":[
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-3.0.12-52.oe2403sp1.aarch64.rpm",
									"name":"openssl-3.0.12-52.oe2403sp1.aarch64.rpm"
								},
								"name":"openssl-3.0.12-52.oe2403sp1.aarch64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64.rpm",
									"name":"openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64.rpm"
								},
								"name":"openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-debugsource-3.0.12-52.oe2403sp1.aarch64.rpm",
									"name":"openssl-debugsource-3.0.12-52.oe2403sp1.aarch64.rpm"
								},
								"name":"openssl-debugsource-3.0.12-52.oe2403sp1.aarch64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-devel-3.0.12-52.oe2403sp1.aarch64.rpm",
									"name":"openssl-devel-3.0.12-52.oe2403sp1.aarch64.rpm"
								},
								"name":"openssl-devel-3.0.12-52.oe2403sp1.aarch64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-libs-3.0.12-52.oe2403sp1.aarch64.rpm",
									"name":"openssl-libs-3.0.12-52.oe2403sp1.aarch64.rpm"
								},
								"name":"openssl-libs-3.0.12-52.oe2403sp1.aarch64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-perl-3.0.12-52.oe2403sp1.aarch64.rpm",
									"name":"openssl-perl-3.0.12-52.oe2403sp1.aarch64.rpm"
								},
								"name":"openssl-perl-3.0.12-52.oe2403sp1.aarch64.rpm",
								"category":"product_version"
							}
						],
						"category":"architecture"
					},
					{
						"name":"src",
						"branches":[
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-3.0.12-52.oe2403sp1.src.rpm",
									"name":"openssl-3.0.12-52.oe2403sp1.src.rpm"
								},
								"name":"openssl-3.0.12-52.oe2403sp1.src.rpm",
								"category":"product_version"
							}
						],
						"category":"architecture"
					},
					{
						"name":"x86_64",
						"branches":[
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-3.0.12-52.oe2403sp1.x86_64.rpm",
									"name":"openssl-3.0.12-52.oe2403sp1.x86_64.rpm"
								},
								"name":"openssl-3.0.12-52.oe2403sp1.x86_64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64.rpm",
									"name":"openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64.rpm"
								},
								"name":"openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-debugsource-3.0.12-52.oe2403sp1.x86_64.rpm",
									"name":"openssl-debugsource-3.0.12-52.oe2403sp1.x86_64.rpm"
								},
								"name":"openssl-debugsource-3.0.12-52.oe2403sp1.x86_64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-devel-3.0.12-52.oe2403sp1.x86_64.rpm",
									"name":"openssl-devel-3.0.12-52.oe2403sp1.x86_64.rpm"
								},
								"name":"openssl-devel-3.0.12-52.oe2403sp1.x86_64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-libs-3.0.12-52.oe2403sp1.x86_64.rpm",
									"name":"openssl-libs-3.0.12-52.oe2403sp1.x86_64.rpm"
								},
								"name":"openssl-libs-3.0.12-52.oe2403sp1.x86_64.rpm",
								"category":"product_version"
							},
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-perl-3.0.12-52.oe2403sp1.x86_64.rpm",
									"name":"openssl-perl-3.0.12-52.oe2403sp1.x86_64.rpm"
								},
								"name":"openssl-perl-3.0.12-52.oe2403sp1.x86_64.rpm",
								"category":"product_version"
							}
						],
						"category":"architecture"
					},
					{
						"name":"noarch",
						"branches":[
							{
								"product":{
									"product_identification_helper":{
										"cpe":"cpe:/a:openEuler:openEuler:24.03-LTS-SP1"
									},
									"product_id":"openssl-help-3.0.12-52.oe2403sp1.noarch.rpm",
									"name":"openssl-help-3.0.12-52.oe2403sp1.noarch.rpm"
								},
								"name":"openssl-help-3.0.12-52.oe2403sp1.noarch.rpm",
								"category":"product_version"
							}
						],
						"category":"architecture"
					}
				]
			}
		],
		"relationships":[
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-3.0.12-52.oe2403sp1.aarch64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"name":"openssl-3.0.12-52.oe2403sp1.aarch64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"name":"openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-debugsource-3.0.12-52.oe2403sp1.aarch64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"name":"openssl-debugsource-3.0.12-52.oe2403sp1.aarch64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-devel-3.0.12-52.oe2403sp1.aarch64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"name":"openssl-devel-3.0.12-52.oe2403sp1.aarch64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-libs-3.0.12-52.oe2403sp1.aarch64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"name":"openssl-libs-3.0.12-52.oe2403sp1.aarch64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-perl-3.0.12-52.oe2403sp1.aarch64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"name":"openssl-perl-3.0.12-52.oe2403sp1.aarch64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-3.0.12-52.oe2403sp1.src.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"name":"openssl-3.0.12-52.oe2403sp1.src as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-3.0.12-52.oe2403sp1.x86_64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"name":"openssl-3.0.12-52.oe2403sp1.x86_64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"name":"openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-debugsource-3.0.12-52.oe2403sp1.x86_64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"name":"openssl-debugsource-3.0.12-52.oe2403sp1.x86_64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-devel-3.0.12-52.oe2403sp1.x86_64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"name":"openssl-devel-3.0.12-52.oe2403sp1.x86_64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-libs-3.0.12-52.oe2403sp1.x86_64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"name":"openssl-libs-3.0.12-52.oe2403sp1.x86_64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-perl-3.0.12-52.oe2403sp1.x86_64.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"name":"openssl-perl-3.0.12-52.oe2403sp1.x86_64 as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			},
			{
				"relates_to_product_reference":"openEuler-24.03-LTS-SP1",
				"product_reference":"openssl-help-3.0.12-52.oe2403sp1.noarch.rpm",
				"full_product_name":{
					"product_id":"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch",
					"name":"openssl-help-3.0.12-52.oe2403sp1.noarch as a component of openEuler-24.03-LTS-SP1"
				},
				"category":"default_component_of"
			}
		]
	},
	"vulnerabilities":[
		{
			"cve":"CVE-2026-34180",
			"notes":[
				{
					"text":"Issue summary: Parsing a crafted DER-encoded ASN.1 structure with a primitive\nelement whose content exceeds 2 gigabytes in length may cause a heap buffer\nover-read on 64-bit Unix and Unix-like platforms.\n\nImpact summary: The heap buffer over-read may crash the application (Denial of\nService) or to load into the decoded ASN.1 object contents of memory beyond the\nend of the input buffer.  More typically such ASN.1 elements would instead be\ntruncated.\n\nAn integer truncation in OpenSSL's ASN.1 decoder causes the content length of\nan ASN.1 primitive element to be mishandled when it exceeds 2 gigabytes. In the\nworst case the truncated length is treated as a request to scan the binary\ncontent for a terminating zero byte, possibly causing OpenSSL to read either\nless than or beyond the end of the allocated buffer.\n\nApplications that pass attacker-supplied data to d2i_X509(), d2i_PKCS7(), or\nany other d2i_* decoding function are affected. OpenSSL's own command-line\ntools are not vulnerable, as data read through the BIO layer is checked before\nit reaches the affected code. The issue only affects 64-bit Unix and Unix-like\nplatforms; 32-bit platforms and 64-bit Windows are not affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by this issue,\nas the affected code is outside the OpenSSL FIPS module boundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"HIGH",
						"baseScore":7.5,
						"vectorString":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"High",
					"category":"impact"
				}
			],
			"title":"CVE-2026-34180"
		},
		{
			"cve":"CVE-2026-34182",
			"notes":[
				{
					"text":"Issue Summary: Cryptographic Message Services (CMS) processing fails to perform\nsufficient input validation on the cipher and tag length fields of\nAuthEnvelopedData containers, leading to various potential compromises.\n\nImpact Summary: Attackers making use of these vulnerabilities may achieve\nkey-equivalent functionality for a given CMS recipient and/or bypass integrity\nvalidation for a given message.\n\nIn one use case, an attacker may send a CMS message containing\nAuthEnvelopedData with the cipher specified as a non-AEAD cipher.  OpenSSL\nerroneously allows this selection, and attempts to decrypt and validate the\nmessage.\n\nAn on-path attacker who captures one legitimate AES-GCM AuthEnvelopedData\naddressed to the victim can re-emit it with the recipientInfos set left\nbyte-for-byte intact, so the victim's private key still unwraps the genuine CEK\n(the content-encryption key), but with the inner OID rewritten to AES-256-OFB\n(Output Feedback Mode, an unauthenticated keystream mode) and with an\nattacker-chosen IV and ciphertext. The victim initializes AES-256-OFB under the\nreal CEK, never consults the MAC field, and CMS_decrypt() returns success.\n\nIf the application under attack responds to the attacker with any indicator\nshowing success or failure of the decryption effort, it is possible for the\nattacker to use this as an oracle to obtain key equivalent functionality for the\nCEK used for the chosen recipient of the message.\n\nIn another use case, an attacker can reduce the tag length of the chosen AEAD\ncipher for a given AuthEnvelopedData container to be a single byte long,\nallowing an attacker to brute force CMS decryption, producing an integrity\nbypass for applications that trust CMS_decrypt() to reject modified content.\n\nThe FIPS modules are not affected by this issue.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"CRITICAL",
						"baseScore":9.1,
						"vectorString":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"Critical",
					"category":"impact"
				}
			],
			"title":"CVE-2026-34182"
		},
		{
			"cve":"CVE-2026-42766",
			"notes":[
				{
					"text":"Issue summary: A specially crafted password-encrypted CMS message\ncan trigger a NULL pointer dereference during CMS decryption.\n\nImpact summary: This NULL pointer dereference leads to an application crash\nand a Denial of Service.\n\nThe CMS PasswordRecipientInfo.keyDerivationAlgorithm field is defined as\nOPTIONAL in the ASN.1 specification and may therefore be absent in specially\ncrafted inputs. During the password-based CMS decryption the OpenSSL\nCMS implementation dereferences this field without first checking whether it\nwas present.\n\nAn attacker who supplies such a CMS message to an application performing\npassword-based CMS decryption can trigger an application crash, leading to\na Denial of Service.\n\nApplications that process password-encrypted CMS messages may be affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as the affected code is outside the OpenSSL FIPS module boundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"MEDIUM",
						"baseScore":5.9,
						"vectorString":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"Medium",
					"category":"impact"
				}
			],
			"title":"CVE-2026-42766"
		},
		{
			"cve":"CVE-2026-42767",
			"notes":[
				{
					"text":"Issue summary: An attacker-controlled CMP (Certificate Management Protocol)\nserver could trigger a NULL pointer dereference in a CMP client application.\n\nImpact summary: A NULL pointer dereference causes a crash of the\napplication and a Denial of Service.\n\nAn attacker controlling a CMP server (or acting as a man-in-the-middle) could\ncraft a CMP response containing a CRMF (Certificate Request Message Format)\nCertRepMessage with an EncryptedValue structure where the symmAlg field\nhas an algorithm OID but no parameters field. When the OpenSSL CMP client\nprocesses this response, the NULL dereference occurs, causing a crash of\nthe CMP client.\n\nApplications that process untrusted CMP/CRMF messages may be affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as the affected code is outside the OpenSSL FIPS module boundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"MEDIUM",
						"baseScore":5.9,
						"vectorString":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"Medium",
					"category":"impact"
				}
			],
			"title":"CVE-2026-42767"
		},
		{
			"cve":"CVE-2026-42770",
			"notes":[
				{
					"text":"Issue summary: When EVP_PKEY_derive_set_peer() is called with a DHX (X9.42)\npeer key, the peer key is not properly checked for the subgroup membership.\n\nImpact summary: A malicious peer which presents an X9.42 key carrying the\nvictim's p and g parameters, a forged q = r (a small prime factor of the\ncofactor (p−1)/q_local), and a public value Y of order r can recover the\nvictim's private key after a small number of key exchange attempts.\n\nWhen EVP_PKEY_derive_set_peer() is called with a DHX (X9.42) peer key, the\nsubgroup membership check Y^q ≡ 1 (mod p) is performed using the peer's\nown q parameter, not the local key's q. The peer's domain parameters are\nthen matched against the domain parameters of the private key, but the value\nof q is not compared.\n\nA malicious peer who presents an X9.42 key carrying the victim's p, g,\na forged q = r (a small prime factor of the cofactor), and a public\nvalue Y of order r passes all checks. The shared secret then takes only\nr distinct values, leaking priv mod r. Repeating for each small-prime\nfactor of the cofactor and combining via CRT recovers the full private\nkey (Lim–Lee / small-subgroup-confinement attack).\n\nThe realistic attack surface is narrow: principally CMP deployments with\nlong-lived RA/CA DHX keys and bespoke enterprise or government applications\nusing X9.42 DHX static keys with interactive protocols and therefore this\nissue was assigned Low severity.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are affected by this\nissue.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"LOW",
						"baseScore":3.7,
						"vectorString":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"Low",
					"category":"impact"
				}
			],
			"title":"CVE-2026-42770"
		},
		{
			"cve":"CVE-2026-45445",
			"notes":[
				{
					"text":"Issue summary: When an application drives an AES-OCB context through the\npublic EVP_Cipher() one-shot interface, the application-supplied\ninitialisation vector (IV) is silently discarded.\n\nImpact summary: Every message encrypted under the same key uses the\nsame effective nonce regardless of the IV supplied by the caller,\nresulting in (key, nonce) reuse and loss of confidentiality.  If the\nsame code path is used to compute the authentication tag, the tag\ndepends only on the (key, IV) pair and not on the plaintext or\nciphertext, allowing universal forgery of arbitrary ciphertext from a\nsingle captured message.\n\nOpenSSL provides two ways to drive a cipher: the documented streaming\ninterface (EVP_CipherUpdate / EVP_CipherFinal_ex) and a lower-level\none-shot, EVP_Cipher(), whose documentation explicitly recommends\nagainst use by applications in favour of EVP_CipherUpdate() and\nEVP_CipherFinal_ex().  The OCB provider's streaming handler flushes\nthe application-supplied IV into the OCB context before processing\ndata; the one-shot handler did not.  Every call to EVP_Cipher() on an\nAES-OCB context therefore ran with the all-zero key-derived offset\nstate left by cipher initialisation, regardless of the caller's IV.\n\nIf EVP_EncryptFinal_ex() is subsequently used to obtain the\nauthentication tag, the deferred IV setup runs at that point and\nclears the running checksum that should have been accumulated over the\nplaintext.  The resulting tag is a function of (key, IV) only and\nverifies against any ciphertext produced under the same (key, IV)\npair.\n\nThe OpenSSL SSL/TLS implementation is not affected: AES-OCB is not a\nTLS cipher suite, and libssl does not call EVP_Cipher() in any case.\nApplications that drive AES-OCB through the documented streaming AEAD\nAPI (EVP_CipherUpdate / EVP_CipherFinal_ex) are not affected.  Only\napplications that combine the AES-OCB cipher with the EVP_Cipher()\none-shot API are vulnerable.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by\nthis issue, as AES-OCB is outside the OpenSSL FIPS module boundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"HIGH",
						"baseScore":7.5,
						"vectorString":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"High",
					"category":"impact"
				}
			],
			"title":"CVE-2026-45445"
		},
		{
			"cve":"CVE-2026-45446",
			"notes":[
				{
					"text":"Issue summary: The implementations of AES-SIV (RFC 5297) and AES-GCM-SIV\n(RFC 8452) mishandle the authentication of AAD (Additional Authenticated\nData) with an empty ciphertext allowing a forgery of such messages.\n\nImpact summary: An attacker can forge empty messages with arbitrary AAD\nto the victim's application using these ciphers.\n\nAES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) are nonce-misuse-resistant AEAD\nmodes: they accept a key, nonce, optional AAD (bytes that are authenticated\nbut not encrypted), and plaintext, and produces ciphertext plus a 16-byte\ntag. On decrypt, `EVP_DecryptFinal_ex()` is documented to return success only\nif the tag is verified succesfully.\n\nIn OpenSSL's provider implementation of these ciphers, the expected tag is\ncomputed only when decryption function is invoked with non-empty data.\nIf the caller supplies AAD and then calls `EVP_DecryptFinal_ex()` without\ninvocation of the ciphertext update, which can happen when the received\nciphertext length is zero, the tag is never recalculated and still holds its\nall-zeros value.\n\nWhen AES-GCM-SIV is used, an attacker who sends arbitrary AAD, empty\nciphertext, and all-zeros tag passes authentication under any key they do not\nknow, single-shot. When AES-SIV is used, for mounting the attack it's\nnecessary for the application to reuse the decryption context without\nresetting the key.\n\nAES-SIV is implemented since OpenSSL 3.0. AES-GCM-SIV is implemented since\nOpenSSL 3.2.\n\nNo protocols implemented in OpenSSL itself (TLS/CMS/PKCS7/HPKE/QUIC) support\neither AES-GCM-SIV or AES-SIV. To mount an attack, the applications must\nimplement their own protocol and use the EVP interface. Also they must skip the\nciphertext update when a message with an empty ciphertext arrives.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as these algorithms are not FIPS approved and the affected code is\noutside the OpenSSL FIPS module boundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"MEDIUM",
						"baseScore":4.8,
						"vectorString":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"Medium",
					"category":"impact"
				}
			],
			"title":"CVE-2026-45446"
		},
		{
			"cve":"CVE-2026-45447",
			"notes":[
				{
					"text":"Issue summary: A specially crafted PKCS#7 or S/MIME signed message could\ntrigger a use-after-free during PKCS#7 signature verification.\n\nImpact summary: A use-after-free may result in process crashes, heap\ncorruption, or potentially remote code execution.\n\nWhen processing a PKCS#7 or S/MIME signed message, if the SignedData\ndigestAlgorithms field is present as an empty ASN.1 SET, OpenSSL may\nincorrectly free a caller-owned BIO during PKCS7_verify(). A subsequent\nuse of the BIO by the calling application results in a use-after-free\ncondition.\n\nIn the common case this occurs when the application later calls\nBIO_free() on the BIO originally passed to PKCS7_verify(). Depending\non allocator behavior and application-specific BIO usage patterns, this\nmay result in a crash or other memory corruption. In some application\ncontexts this may potentially be exploitable for remote code execution.\n\nApplications that process PKCS#7 or S/MIME signed messages using OpenSSL\nPKCS#7 APIs may be affected. Applications using the CMS APIs for this\nprocessing are not affected.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this\nissue, as the affected code is outside the OpenSSL FIPS module boundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"HIGH",
						"baseScore":8.8,
						"vectorString":"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"High",
					"category":"impact"
				}
			],
			"title":"CVE-2026-45447"
		},
		{
			"cve":"CVE-2026-7383",
			"notes":[
				{
					"text":"Issue summary: A signed integer overflow when sizing the destination\nbuffer for Unicode output in ASN1_mbstring_ncopy() can lead to a heap\nbuffer overflow.\n\nImpact summary: A heap buffer overflow may lead to a crash or possibly\nattacker controlled code execution or other undefined behaviour.\n\nIn ASN1_mbstring_copy() and ASN1_mbstring_ncopy() the destination\nsize for Unicode output is computed in a signed int: by left shift\nof the input character count for BMPSTRING (UTF-16) and\nUNIVERSALSTRING (UTF-32), and by summing per-character byte counts\nfor UTF8STRING. The calculation overflows when the input reaches\naround 2^30 characters. In the worst case (UNIVERSALSTRING at 2^30\ncharacters) the size wraps to zero, OPENSSL_malloc(1) is called, and\nthe subsequent character copy writes several gigabytes past the\none-byte allocation.\n\nX.509 certificate processing routes through ASN1_STRING_set_by_NID(),\nwhose DIRSTRING_TYPE mask excludes UNIVERSALSTRING and whose per-NID\nsize limits cap the input length; no network protocol or\ncertificate-handling path in OpenSSL exercises the overflow.\nTriggering the bug requires an application that calls\nASN1_mbstring_copy() or ASN1_mbstring_ncopy() directly, or registers\na custom string type via ASN1_STRING_TABLE_add(), with\nattacker-controlled input on the order of half a gigabyte or more.\nFor these reasons this issue was assigned Low severity.\n\nThe FIPS modules in 4.0, 3.6, 3.5, 3.4 and 3.0 are not affected by\nthis issue, as the affected code is outside the OpenSSL FIPS module\nboundary.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"HIGH",
						"baseScore":8.1,
						"vectorString":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"High",
					"category":"impact"
				}
			],
			"title":"CVE-2026-7383"
		},
		{
			"cve":"CVE-2026-9076",
			"notes":[
				{
					"text":"Issue summary: When CMS password-based decryption (RFC 3211 / PWRI key unwrap)\nprocesses attacker-supplied CMS data, an attacker-chosen stream-mode KEK\ncipher can trigger a heap out-of-bounds read in kek_unwrap_key().\n\nImpact summary: A heap buffer over-read may trigger a crash which leads to\nDenial of Service for an application if the input buffer ends at a memory\npage boundary and the following page is unmapped. There is no information\ndisclosure as the over-read bytes are not revealed to the attacker.\n\nThe key unwrapping function performs a check-byte test as specified in the\nRFC that reads 7 bytes from a heap allocation that is based on the wrapped\nkey length from the message. There is a minimum length check based on the\nblock length of the wrapping cipher. However the cipher is selected from\nan OID carried in the attacker's PWRI keyEncryptionAlgorithm with no\nrequirement that the cipher be a block cipher. When an attacker selects\na stream-mode cipher the guard will be ineffective and the allocated buffer\ncontaining the unwrapped key can be too small to fit the check-bytes\nspecified in the RFC and a buffer over-read can happen.\n\nApplications calling CMS_decrypt() or CMS_decrypt_set1_password()\n(equivalently openssl cms -decrypt -pwri_password ...) on untrusted CMS\ndata are vulnerable to this issue. No password knowledge is required: the\nover-read happens during the unwrap attempt before any authentication\nsucceeds.\n\nThe over-read is limited to a few bytes and is not written to output, so\nthere is no information disclosure. Triggering a crash requires the\nallocation to border unmapped memory, which is unlikely with the normal\nallocator.\n\nThe FIPS modules are not affected by this issue.",
					"category":"description",
					"title":"Vulnerability Description"
				}
			],
			"product_status":{
				"fixed":[
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
					"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
					"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
				]
			},
			"remediations":[
				{
					"product_ids":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					],
					"details":"openssl security update",
					"category":"vendor_fix",
					"url":"https://www.openeuler.org/zh/security/security-bulletins/detail/?id=openEuler-SA-2026-2781"
				}
			],
			"scores":[
				{
					"cvss_v3":{
						"baseSeverity":"HIGH",
						"baseScore":7.5,
						"vectorString":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
						"version":"3.1"
					},
					"products":[
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.aarch64",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.src",
						"openEuler-24.03-LTS-SP1:openssl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debuginfo-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-debugsource-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-devel-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-libs-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-perl-3.0.12-52.oe2403sp1.x86_64",
						"openEuler-24.03-LTS-SP1:openssl-help-3.0.12-52.oe2403sp1.noarch"
					]
				}
			],
			"threats":[
				{
					"details":"High",
					"category":"impact"
				}
			],
			"title":"CVE-2026-9076"
		}
	]
}