BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2026
CVE-2026-45446High confidence

Incorrect Tag Processing for Empty Messages in AES-GCM-SIV and AES-SIV modes

OpenSSL · OpenSSL

4.8MediumCVSS 3.1
Recommended action
Scheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
Distribution package intelligence

Ubuntu vendor package status

Canonical’s release and source-package findings are shown separately from local repository availability.

2 package states
Repository candidate not checked

A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard archiveedk2Under evaluationCanonical reports that the package might be affected and still needs evaluation or fixing.Not published in this feedCanonical record ↗Source updated 9 Sept 2026
Ubuntu 24.04 LTSnoble · standard archiveopensslVendor fix publishedCanonical reports that a fixed source package version has been published. Repository candidate availability is not checked by BlackTree.3.0.13-0ubuntu3.11Canonical record ↗Source updated 9 Sept 2026
Direct vendor intelligence

Authoritative vendor CSAF and VEX advisories

Structured product status and remediation from the issuing vendor. Product-state explanations are always visible; large lists can be searched or downloaded.

1 current
CVE-2026-45446 · CSAF 2.0 · revision 3 · finalRed Hat Product Securityopenssl: Incorrect Tag Processing for Empty Messages in AES-GCM-SIV and AES-SIV modes
25 known affected

The vendor explicitly identifies these products as affected by this CVE.

  • edk2-aarch64 as a component of Red Hat Enterprise Linux 10
  • edk2-ovmf as a component of Red Hat Enterprise Linux 10
  • edk2-tools as a component of Red Hat Enterprise Linux 10
  • edk2-tools-doc as a component of Red Hat Enterprise Linux 10
  • edk2.src as a component of Red Hat Enterprise Linux 10
  • mokutil as a component of Red Hat Enterprise Linux 10
  • shim-aa64 as a component of Red Hat Enterprise Linux 10
  • shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 10
  • shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 10
  • shim-x64 as a component of Red Hat Enterprise Linux 10
  • compat-openssl11 as a component of Red Hat Enterprise Linux 9
  • compat-openssl11.src as a component of Red Hat Enterprise Linux 9
Summary
A flaw was found in OpenSSL. The implementations of AES-SIV (Advanced Encryption Standard - SIV) and AES-GCM-SIV (Advanced Encryption Standard - Galois/Counter Mode - SIV) incorrectly process authentication tags for empty messages. This vulnerability allows a remote attacker to forge empty messages with arbitrary Additional Authenticated Data (AAD) in applications that utilize these specific cipher modes within custom protocols and do not properly handle zero-length ciphertexts. This could lead to unauthorized data manipulation.
Remediation
For details on how to apply this update, which includes the changes described in this advisory, refer to: https://access.redhat.com/articles/11258
Optional official sources

National CERT insights
?CERT means Computer Emergency Response Team; CSIRT is the closely related term Computer Security Incident Response Team.

Select the national-authority views to include. The exact source language is shown on each matched advisory. Your choice is remembered on this device and encoded in the shareable URL.

Official European source

ENISA European Vulnerability Database

Official EUVD identifiers, advisory evidence and known-exploited context. Missing fields are not treated as evidence of low risk.

1 current
ENISA EUVD identifier

EUVD-2026-35490

No EUVD known-exploited evidence

ENISA has published the identifier mapping but no EUVD description has been stored yet.

EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionScheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
01

What, why and how

Issue summary: The implementations of AES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) mishandle the authentication of AAD (Additional Authenticated Data) with an empty ciphertext allowing a forgery of such messages. Impact summary: An attacker can forge empty messages with arbitrary AAD to the victim's application using these ciphers. AES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) are nonce-misuse-resistant AEAD modes: they accept a key, nonce, optional AAD (bytes that are authenticated but not encrypted), and plaintext, and produces ciphertext plus a 16-byte tag. On decrypt, `EVP_DecryptFinal_ex()` is documented to return success only if the tag is verified succesfully. In OpenSSL's provider implementation of these ciphers, the expected tag is computed only when decryption function is invoked with non-empty data. If the caller supplies AAD and then calls `EVP_DecryptFinal_ex()` without invocation of the ciphertext update, which can happen when the received ciphertext length is zero, the tag is never recalculated and still holds its all-zeros value. When AES-GCM-SIV is used, an attacker who sends arbitrary AAD, empty ciphertext, and all-zeros tag passes authentication under any key they do not know, single-shot. When AES-SIV is used, for mounting the attack it's necessary for the application to reuse the decryption context without resetting the key. AES-SIV is implemented since OpenSSL 3.0. AES-GCM-SIV is implemented since OpenSSL 3.2. No protocols implemented in OpenSSL itself (TLS/CMS/PKCS7/HPKE/QUIC) support either AES-GCM-SIV or AES-SIV. To mount an attack, the applications must implement their own protocol and use the EVP interface. Also they must skip the ciphertext update when a message with an empty ciphertext arrives. The FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this issue, as these algorithms are not FIPS approved and the affected code is outside the OpenSSL FIPS module boundary.

What

Issue summary: The implementations of AES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) mishandle the authentication of AAD (Additional Authenticated Data) with an empty ciphertext allowing a forgery of such messages. Impact summary: An attacker can forge empty messages with arbitrary AAD to the victim's application using these ciphers. AES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) are nonce-misuse-resistant AEAD modes: they accept a key, nonce, optional AAD (bytes that are authenticated but not encrypted), and plaintext, and produces ciphertext plus a 16-byte tag. On decrypt, `EVP_DecryptFinal_ex()` is documented to return success only if the tag is verified succesfully. In OpenSSL's provider implementation of these ciphers, the expected tag is computed only when decryption function is invoked with non-empty data. If the caller supplies AAD and then calls `EVP_DecryptFinal_ex()` without invocation of the ciphertext update, which can happen when the received ciphertext length is zero, the tag is never recalculated and still holds its all-zeros value. When AES-GCM-SIV is used, an attacker who sends arbitrary AAD, empty ciphertext, and all-zeros tag passes authentication under any key they do not know, single-shot. When AES-SIV is used, for mounting the attack it's necessary for the application to reuse the decryption context without resetting the key. AES-SIV is implemented since OpenSSL 3.0. AES-GCM-SIV is implemented since OpenSSL 3.2. No protocols implemented in OpenSSL itself (TLS/CMS/PKCS7/HPKE/QUIC) support either AES-GCM-SIV or AES-SIV. To mount an attack, the applications must implement their own protocol and use the EVP interface. Also they must skip the ciphertext update when a message with an empty ciphertext arrives. The FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this issue, as these algorithms are not FIPS approved and the affected code is outside the OpenSSL FIPS module boundary.

Why

The product does not implement a required step in a cryptographic algorithm, resulting in weaker encryption than advertised by the algorithm.

How

An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

Issue summary: The implementations of AES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) mishandle the authentication of AAD (Additional Authenticated Data) with an empty ciphertext allowing a forgery of such messages. Impact summary: An attacker can forge empty messages with arbitrary AAD to the victim's application using these ciphers. AES-SIV (RFC 5297) and AES-GCM-SIV (RFC 8452) are nonce-misuse-resistant AEAD modes: they accept a key, nonce, optional AAD (bytes that are authenticated but not encrypted), and plaintext, and produces ciphertext plus a 16-byte tag. On decrypt, `EVP_DecryptFinal_ex()` is documented to return success only if the tag is verified succesfully. In OpenSSL's provider implementation of these ciphers, the expected tag is computed only when decryption function is invoked with non-empty data. If the caller supplies AAD and then calls `EVP_DecryptFinal_ex()` without invocation of the ciphertext update, which can happen when the received ciphertext length is zero, the tag is never recalculated and still holds its all-zeros value. When AES-GCM-SIV is used, an attacker who sends arbitrary AAD, empty ciphertext, and all-zeros tag passes authentication under any key they do not know, single-shot. When AES-SIV is used, for mounting the attack it's necessary for the application to reuse the decryption context without resetting the key. AES-SIV is implemented since OpenSSL 3.0. AES-GCM-SIV is implemented since OpenSSL 3.2. No protocols implemented in OpenSSL itself (TLS/CMS/PKCS7/HPKE/QUIC) support either AES-GCM-SIV or AES-SIV. To mount an attack, the applications must implement their own protocol and use the EVP interface. Also they must skip the ciphertext update when a message with an empty ciphertext arrives. The FIPS modules in 4.0, 3.6, 3.5, 3.4, and 3.0 are not affected by this issue, as these algorithms are not FIPS approved and the affected code is outside the OpenSSL FIPS module boundary.

Why

The product does not implement a required step in a cryptographic algorithm, resulting in weaker encryption than advertised by the algorithm.

How

An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.

Observed exploitation
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
No confirmed evidence

No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.

Public PoC / exploit material
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
None recorded

No exploit-tagged reference or CISA SSVC proof-of-concept state is currently recorded. Research may still exist outside the structured feeds.

Likely attack path
a network path → Missing Cryptographic Step → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Network
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
High: exploitation depends on specific conditions
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-325

CWE-325: Missing Cryptographic Step. The product does not implement a required step in a cryptographic algorithm, resulting in weaker encryption than advertised by the algorithm.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N

Common Vulnerability Scoring System 3.1: the compact vector below is decoded into plain language.

AVNetworkAttack vector: The vulnerable component can be reached over a network.ACHighAttack complexity: Successful exploitation depends on specific conditions outside the attacker's direct control.PRNonePrivileges required: The attacker does not need an account or existing privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CLowConfidentiality impact: A successful attack can cause a limited loss.ILowIntegrity impact: A successful attack can cause a limited loss.ANoneAvailability impact: No direct loss is represented by this metric.
Post-exploitation / living off the land
No specific living-off-the-land technique is confirmed in the structured sources. Monitor normal administration tools for activity inconsistent with the affected service's baseline.
NetworkUnauthenticatedCWE-325
A

Official authority intelligence

Only matched European and national findings are included. Language selectors and unavailable sources are omitted.

BSI · German · WID-SEC-W-2026-2919IBM App Connect Enterprise: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in IBM App Connect Enterprise ausnutzen, um beliebigen Programmcode auszuführen, um seine Privilegien zu erhöhen, um einen Denial of Service Angriff durchzuführen, um Informationen offenzulegen, um Dateien zu manipulieren, um einen Cross-Site Scripting Angriff durchzuführen, und um Sicherheitsvorkehrungen zu umgehen.

Official advisory
BSI · German · WID-SEC-W-2026-2455Oracle Solaris Drittanbieterkomponenten: Mehrere Schwachstellen

Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in verschiedenen Komponenten von Drittanbietern in Oracle Solaris ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

Official advisory
BSI · German · WID-SEC-W-2026-1852OpenSSL: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in OpenSSL ausnutzen, um beliebigen Programmcode auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, Daten zu manipulieren oder einen Denial-of-Service-Zustand zu verursachen.

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0933Multiples vulnérabilités dans les produits IBM

d?id=CVE-2026-42211 Référence CVE CVE-2026-42342 https://www.cve.org/CVERecord?id=CVE-2026-42342 Référence CVE CVE-2026-42766 https://www.cve.org/CVERecord?id=CVE-2026-42766 Référence CVE CVE-2026-42767 https://www.cve.org/CVERecord?id=CVE-2026-42767 Référence CVE CVE-2026-42770 https://www.cve.org/CVERecord?id=CVE-2026-42770 Référence CVE CVE-2026-44249 https://www.cve.org/CVERecord?id=CVE-2026-44249 Référence CVE CVE-2026-45409 https://www.cve.org/CVERecord?id=CVE-2026-45409 Référence CVE CVE-2026-45416 https://www.cve.org/CVERecord?id=CVE-2026-45416 Référence CVE CVE-2026-45445 https://www.cve.org/CVERecord?id=CVE-2026-45445 Référence CVE CVE-2026-45446 https://www.cve.org/CVERecord?id=CVE-2026-45446 Référence CVE CVE-2026-45447 https://www.cve.org/CVERecord?id=CVE-2026-45447 Référence CVE CVE-2026-45673 https://www.cve.org/CVERecord?id=CVE-2026-45673 Référence CVE CVE-2026-45674 https://www.cve.org/CVERecord?id=CVE-2026-45674 Référence CVE CVE-2026-47265 https://www.cve.org/CVERecord?id=CVE-2026-47265 Référence CVE CVE-2026-47691 https://www.cve.org/CVERecord?id=CVE-2026-47691 Référence CVE CVE-2026-48155 https://www.cve.org/CVERecord?id=CVE-2026-48155 Référence CVE CVE-2026-48156 https://www.cve.org/CVERecord?id=CVE-2026-48156 Référence CVE CVE-2026-48522 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0914Multiples vulnérabilités dans Oracle Database Server

d?id=CVE-2026-34182 Référence CVE CVE-2026-34183 https://www.cve.org/CVERecord?id=CVE-2026-34183 Référence CVE CVE-2026-42764 https://www.cve.org/CVERecord?id=CVE-2026-42764 Référence CVE CVE-2026-42766 https://www.cve.org/CVERecord?id=CVE-2026-42766 Référence CVE CVE-2026-42767 https://www.cve.org/CVERecord?id=CVE-2026-42767 Référence CVE CVE-2026-42768 https://www.cve.org/CVERecord?id=CVE-2026-42768 Référence CVE CVE-2026-42769 https://www.cve.org/CVERecord?id=CVE-2026-42769 Référence CVE CVE-2026-42770 https://www.cve.org/CVERecord?id=CVE-2026-42770 Référence CVE CVE-2026-45445 https://www.cve.org/CVERecord?id=CVE-2026-45445 Référence CVE CVE-2026-45446 https://www.cve.org/CVERecord?id=CVE-2026-45446 Référence CVE CVE-2026-45447 https://www.cve.org/CVERecord?id=CVE-2026-45447 Référence CVE CVE-2026-46975 https://www.cve.org/CVERecord?id=CVE-2026-46975 Référence CVE CVE-2026-47038 https://www.cve.org/CVERecord?id=CVE-2026-47038 Référence CVE CVE-2026-47039 https://www.cve.org/CVERecord?id=CVE-2026-47039 Référence CVE CVE-2026-47040 https://www.cve.org/CVERecord?id=CVE-2026-47040 Référence CVE CVE-2026-47045 https://www.cve.org/CVERecord?id=CVE-2026-47045 Référence CVE CVE-2026-47046 https://www.cve.org/CVERecord?id=CVE-2026-47046 Référence CVE CVE-2026-47060 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0792Multiples vulnérabilités dans les produits Microsoft

De multiples vulnérabilités ont été découvertes dans les produits Microsoft. Elles permettent à un attaquant de provoquer une atteinte à la confidentialité des données et un problème de sécurité non spécifié par l'éditeur.

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0782Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2026-43413 Référence CVE CVE-2026-43414 https://www.cve.org/CVERecord?id=CVE-2026-43414 Référence CVE CVE-2026-43455 https://www.cve.org/CVERecord?id=CVE-2026-43455 Référence CVE CVE-2026-43470 https://www.cve.org/CVERecord?id=CVE-2026-43470 Référence CVE CVE-2026-43483 https://www.cve.org/CVERecord?id=CVE-2026-43483 Référence CVE CVE-2026-43499 https://www.cve.org/CVERecord?id=CVE-2026-43499 Référence CVE CVE-2026-43501 https://www.cve.org/CVERecord?id=CVE-2026-43501 Référence CVE CVE-2026-43503 https://www.cve.org/CVERecord?id=CVE-2026-43503 Référence CVE CVE-2026-45445 https://www.cve.org/CVERecord?id=CVE-2026-45445 Référence CVE CVE-2026-45446 https://www.cve.org/CVERecord?id=CVE-2026-45446 Référence CVE CVE-2026-45447 https://www.cve.org/CVERecord?id=CVE-2026-45447 Référence CVE CVE-2026-45835 https://www.cve.org/CVERecord?id=CVE-2026-45835 Référence CVE CVE-2026-45841 https://www.cve.org/CVERecord?id=CVE-2026-45841 Référence CVE CVE-2026-45842 https://www.cve.org/CVERecord?id=CVE-2026-45842 Référence CVE CVE-2026-45843 https://www.cve.org/CVERecord?id=CVE-2026-45843 Référence CVE CVE-2026-45846 https://www.cve.org/CVERecord?id=CVE-2026-45846 Référence CVE CVE-2026-45852 https://www.cve.org/CVERecord?id=CVE-2026-45852 Référence CVE CVE-2026-45856 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0796Multiples vulnérabilités dans Tenable Identity Exposure

d?id=CVE-2026-42767 Référence CVE CVE-2026-42768 https://www.cve.org/CVERecord?id=CVE-2026-42768 Référence CVE CVE-2026-42769 https://www.cve.org/CVERecord?id=CVE-2026-42769 Référence CVE CVE-2026-42770 https://www.cve.org/CVERecord?id=CVE-2026-42770 Référence CVE CVE-2026-42771 https://www.cve.org/CVERecord?id=CVE-2026-42771 Référence CVE CVE-2026-42789 https://www.cve.org/CVERecord?id=CVE-2026-42789 Référence CVE CVE-2026-42790 https://www.cve.org/CVERecord?id=CVE-2026-42790 Référence CVE CVE-2026-42899 https://www.cve.org/CVERecord?id=CVE-2026-42899 Référence CVE CVE-2026-45445 https://www.cve.org/CVERecord?id=CVE-2026-45445 Référence CVE CVE-2026-45446 https://www.cve.org/CVERecord?id=CVE-2026-45446 Référence CVE CVE-2026-45447 https://www.cve.org/CVERecord?id=CVE-2026-45447 Référence CVE CVE-2026-45490 https://www.cve.org/CVERecord?id=CVE-2026-45490 Référence CVE CVE-2026-45491 https://www.cve.org/CVERecord?id=CVE-2026-45491 Référence CVE CVE-2026-45591 https://www.cve.org/CVERecord?id=CVE-2026-45591 Référence CVE CVE-2026-4873 https://www.cve.org/CVERecord?id=CVE-2026-4873 Référence CVE CVE-2026-5545 https://www.cve.org/CVERecord?id=CVE-2026-5545 Référence CVE CVE-2026-5773 https://www.cve.org/CVERecord?id=CVE-2026-5773 Référence CVE CVE-2026-6253 https://www.cve.org/CVERecord?id=CVE-202

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0717Multiples vulnérabilités dans OpenSSL

De multiples vulnérabilités ont été découvertes dans OpenSSL. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et une atteinte à la confidentialité des données.

Official advisory
03

Patch and workaround

Operational remediation based on structured source evidence.

Status
?Patch availability is based on structured fixed-version fields and authoritative update references. If no fix is verified, check the vendor advisory before making a change.
Patch available
Affected
edk2-aarch64 as a component of Red Hat Enterprise Linux 10; edk2-ovmf as a component of Red Hat Enterprise Linux 10; edk2-tools as a component of Red Hat Enterprise Linux 10; edk2-tools-doc as a component of Red Hat Enterprise Linux 10; edk2.src as a component of Red Hat Enterprise Linux 10; mokutil as a component of Red Hat Enterprise Linux 10; shim-aa64 as a component of Red Hat Enterprise Linux 10; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 10; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 10; shim-x64 as a component of Red Hat Enterprise Linux 10; compat-openssl11 as a component of Red Hat Enterprise Linux 9; compat-openssl11.src as a component of Red Hat Enterprise Linux 9; edk2-aarch64 as a component of Red Hat Enterprise Linux 9; edk2-ovmf as a component of Red Hat Enterprise Linux 9; edk2-tools as a component of Red Hat Enterprise Linux 9; edk2-tools-doc as a component of Red Hat Enterprise Linux 9; edk2.src as a component of Red Hat Enterprise Linux 9; shim-aa64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 9; shim-x64 as a component of Red Hat Enterprise Linux 9; shim.src as a component of Red Hat Enterprise Linux 9; openshift/ose-rhel-coreos-8 as a component of Red Hat OpenShift Container Platform 4; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4
Fixed
openssl-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); and 73 more
Action
For details on how to apply this update, which includes the changes described in this advisory, refer to: https://access.redhat.com/articles/11258
Workaround
No verified workaround is recorded. If business-safe, reduce exposure to the affected interface and allow only trusted sources until authoritative guidance is available.
04

Evidence and provenance

Published 9 Jun 2026 · Last source change 10 Jun 2026, 07:48 UTC · CWE-325 · Missing Cryptographic Step

CVE recordCVE.org · 5.2
CVSS sourceCISA ADP
EPSS source
?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.
FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2026-35490
Product sourceVendor CSAF · Red Hat Product Security
Remediation sourceVendor CSAF · Red Hat Product Security
CWE sourceCNA
NVD statusNVD enriched

Core structured fields are present and their contributing authorities are shown above.

Material change intelligence

What changed after publication

View recent updates →
  1. Affected versionsThe structured affected or fixed version information changed.
    Before
    edk2-aarch64 as a component of Red Hat Enterprise Linux 10; edk2-ovmf as a component of Red Hat Enterprise Linux 10; edk2-tools as a component of Red Hat Enterprise Linux 10; edk2-tools-doc as a component of Red Hat Enterprise Linux 10; edk2.src as a component of Red Hat Enterprise Linux 10; mokutil as a component of Red Hat Enterprise Linux 10; shim-aa64 as a component of Red Hat Enterprise Linux 10; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 10; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 10; shim-x64 as a component of Red Hat Enterprise Linux 10; compat-openssl11 as a component of Red Hat Enterprise Linux 9; compat-openssl11.src as a component of Red Hat Enterprise Linux 9; edk2-aarch64 as a component of Red Hat Enterprise Linux 9; edk2-ovmf as a component of Red Hat Enterprise Linux 9; edk2-tools as a component of Red Hat Enterprise Linux 9; edk2-tools-doc as a component of Red Hat Enterprise Linux 9; edk2.src as a component of Red Hat Enterprise Linux 9; shim-aa64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 9; shim-x64 as a component of Red Hat Enterprise Linux 9; shim.src as a component of Red Hat Enterprise Linux 9; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4 · Fixed: openssl-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); and 73 more
    After
    edk2-aarch64 as a component of Red Hat Enterprise Linux 10; edk2-ovmf as a component of Red Hat Enterprise Linux 10; edk2-tools as a component of Red Hat Enterprise Linux 10; edk2-tools-doc as a component of Red Hat Enterprise Linux 10; edk2.src as a component of Red Hat Enterprise Linux 10; mokutil as a component of Red Hat Enterprise Linux 10; shim-aa64 as a component of Red Hat Enterprise Linux 10; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 10; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 10; shim-x64 as a component of Red Hat Enterprise Linux 10; compat-openssl11 as a component of Red Hat Enterprise Linux 9; compat-openssl11.src as a component of Red Hat Enterprise Linux 9; edk2-aarch64 as a component of Red Hat Enterprise Linux 9; edk2-ovmf as a component of Red Hat Enterprise Linux 9; edk2-tools as a component of Red Hat Enterprise Linux 9; edk2-tools-doc as a component of Red Hat Enterprise Linux 9; edk2.src as a component of Red Hat Enterprise Linux 9; shim-aa64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 9; shim-x64 as a component of Red Hat Enterprise Linux 9; shim.src as a component of Red Hat Enterprise Linux 9; openshift/ose-rhel-coreos-8 as a component of Red Hat OpenShift Container Platform 4; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4 · Fixed: openssl-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); and 73 more
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    edk2-aarch64 as a component of Red Hat Enterprise Linux 10; edk2-ovmf as a component of Red Hat Enterprise Linux 10; edk2-tools as a component of Red Hat Enterprise Linux 10; edk2-tools-doc as a component of Red Hat Enterprise Linux 10; edk2.src as a component of Red Hat Enterprise Linux 10; mokutil as a component of Red Hat Enterprise Linux 10; shim-aa64 as a component of Red Hat Enterprise Linux 10; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 10; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 10; shim-x64 as a component of Red Hat Enterprise Linux 10; compat-openssl11 as a component of Red Hat Enterprise Linux 9; compat-openssl11.src as a component of Red Hat Enterprise Linux 9; edk2-aarch64 as a component of Red Hat Enterprise Linux 9; edk2-ovmf as a component of Red Hat Enterprise Linux 9; edk2-tools as a component of Red Hat Enterprise Linux 9; edk2-tools-doc as a component of Red Hat Enterprise Linux 9; edk2.src as a component of Red Hat Enterprise Linux 9; shim-aa64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 9; shim-x64 as a component of Red Hat Enterprise Linux 9; shim.src as a component of Red Hat Enterprise Linux 9; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4 · Fixed: openssl-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); and 70 more
    After
    edk2-aarch64 as a component of Red Hat Enterprise Linux 10; edk2-ovmf as a component of Red Hat Enterprise Linux 10; edk2-tools as a component of Red Hat Enterprise Linux 10; edk2-tools-doc as a component of Red Hat Enterprise Linux 10; edk2.src as a component of Red Hat Enterprise Linux 10; mokutil as a component of Red Hat Enterprise Linux 10; shim-aa64 as a component of Red Hat Enterprise Linux 10; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 10; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 10; shim-x64 as a component of Red Hat Enterprise Linux 10; compat-openssl11 as a component of Red Hat Enterprise Linux 9; compat-openssl11.src as a component of Red Hat Enterprise Linux 9; edk2-aarch64 as a component of Red Hat Enterprise Linux 9; edk2-ovmf as a component of Red Hat Enterprise Linux 9; edk2-tools as a component of Red Hat Enterprise Linux 9; edk2-tools-doc as a component of Red Hat Enterprise Linux 9; edk2.src as a component of Red Hat Enterprise Linux 9; shim-aa64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-aarch64.src as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64 as a component of Red Hat Enterprise Linux 9; shim-unsigned-x64.src as a component of Red Hat Enterprise Linux 9; shim-x64 as a component of Red Hat Enterprise Linux 9; shim.src as a component of Red Hat Enterprise Linux 9; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4 · Fixed: openssl-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debugsource-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-devel-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-libs-debuginfo-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-perl-1:3.5.5-4.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); openssl-debuginfo-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debuginfo-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9); openssl-debugsource-1:3.5.5-4.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9); and 73 more
    Red Hat Product Security
Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
Free version - for non-commercial use only.CVE-2026-45446 · cve.blacktree.nl