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

Client-Side Memory Leak in OCSP Response Checking

OpenSSL · OpenSSL

7.5HighCVSS 3.1
Recommended action
Within 7 days

High technical severity; prioritise exposed affected systems while verifying vendor guidance.

Patch available
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-54876 · CSAF 2.0 · revision 3 · finalRed Hat Product Securityopenssl: OpenSSL: Memory leak leads to Denial of Service in OCSP response checking
23 known affected

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

  • confidential-clusters-beta/compute-pcrs-rhel9 as a component of Confidential Cluster Operator
  • 3scale-amp2/backend-rhel8 as a component of Red Hat 3scale API Management Platform 2
  • 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 2
  • 3scale-amp2/toolbox-rhel9 as a component of Red Hat 3scale API Management Platform 2
  • ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2
  • ansible-automation-platform-27/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2
  • rhcl-1/limitador-rhel9 as a component of Red Hat Connectivity Link 1
  • rhosp-rhel8/openstack-aodh-evaluator as a component of Red Hat OpenStack Platform 16.2
  • rhosp-rhel8/openstack-aodh-listener as a component of Red Hat OpenStack Platform 16.2
  • rhosp-rhel8/openstack-ceilometer-central as a component of Red Hat OpenStack Platform 16.2
  • rhosp-rhel8/openstack-ceilometer-compute as a component of Red Hat OpenStack Platform 16.2
  • rhosp-rhel8/openstack-ceilometer-ipmi as a component of Red Hat OpenStack Platform 16.2
Summary
A flaw was found in OpenSSL. A malicious TLS (Transport Layer Security) server can exploit this vulnerability by sending a specially crafted OCSP (Online Certificate Status Protocol) response during the X.509 certificate chain verification process. This can lead to a memory leak in client applications that have enabled OCSP response checking. Repeated connections to a malicious server could exhaust the client's memory, ultimately resulting in a Denial of Service (DoS).
Remediation
For details on how to apply this update, which includes the changes described in this advisory, refer to: https://images.redhat.com/
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-53385

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 actionWithin 7 days

High technical severity; prioritise exposed affected systems while verifying vendor guidance.

Patch available
01

What, why and how

Issue summary: A malicious TLS server can cause a memory leak in a TLS client that has enabled OCSP response checking by sending an OCSP response that contains no single response entries. Impact summary: An attacker can leak an attacker-tunable amount of memory per TLS handshake in a victim client application. A long-running client that repeatedly connects to a malicious server can have its memory exhausted, resulting in a Denial of Service. CWE: CWE-401: Missing Release of Memory after Effective Lifetime Description: The affected function is called during X.509 certificate chain verification when OCSP response checking is enabled with the X509_V_FLAG_OCSP_RESP_CHECK or X509_V_FLAG_OCSP_RESP_CHECK_ALL verification flags, for example when a TLS client verifies an OCSP response stapled into the TLS handshake by the server. When the received BasicOCSPResponse contains an empty SEQUENCE OF SingleResponse, which is permitted on the wire and accepted by the OpenSSL decoder, the OCSP_BASICRESP structure allocated by OCSP_response_get1_basic() was not freed because an early return bypassed the cleanup code at the end of the function. The amount of memory leaked per handshake can be amplified by the attacker by padding the certs field of the BasicOCSPResponse with bogus certificates, which are parsed and stored in the leaked structure before the empty response check triggers the early return. A long-running TLS client that repeatedly connects to a malicious server can have its memory exhausted over time. OCSP response checking is not enabled by default. Only client applications that explicitly enable the OCSP response check verification flags are affected. FIPS impact: no The FIPS modules in 4.0 and 3.6 are not affected by this issue as the affected code is outside the OpenSSL FIPS module boundary.

What

Issue summary: A malicious TLS server can cause a memory leak in a TLS client that has enabled OCSP response checking by sending an OCSP response that contains no single response entries. Impact summary: An attacker can leak an attacker-tunable amount of memory per TLS handshake in a victim client application. A long-running client that repeatedly connects to a malicious server can have its memory exhausted, resulting in a Denial of Service. CWE: CWE-401: Missing Release of Memory after Effective Lifetime Description: The affected function is called during X.509 certificate chain verification when OCSP response checking is enabled with the X509_V_FLAG_OCSP_RESP_CHECK or X509_V_FLAG_OCSP_RESP_CHECK_ALL verification flags, for example when a TLS client verifies an OCSP response stapled into the TLS handshake by the server. When the received BasicOCSPResponse contains an empty SEQUENCE OF SingleResponse, which is permitted on the wire and accepted by the OpenSSL decoder, the OCSP_BASICRESP structure allocated by OCSP_response_get1_basic() was not freed because an early return bypassed the cleanup code at the end of the function. The amount of memory leaked per handshake can be amplified by the attacker by padding the certs field of the BasicOCSPResponse with bogus certificates, which are parsed and stored in the leaked structure before the empty response check triggers the early return. A long-running TLS client that repeatedly connects to a malicious server can have its memory exhausted over time. OCSP response checking is not enabled by default. Only client applications that explicitly enable the OCSP response check verification flags are affected. FIPS impact: no The FIPS modules in 4.0 and 3.6 are not affected by this issue as the affected code is outside the OpenSSL FIPS module boundary.

Why

The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse.

How

An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may disrupt the affected service.

What

Issue summary: A malicious TLS server can cause a memory leak in a TLS client that has enabled OCSP response checking by sending an OCSP response that contains no single response entries. Impact summary: An attacker can leak an attacker-tunable amount of memory per TLS handshake in a victim client application. A long-running client that repeatedly connects to a malicious server can have its memory exhausted, resulting in a Denial of Service. CWE: CWE-401: Missing Release of Memory after Effective Lifetime Description: The affected function is called during X.509 certificate chain verification when OCSP response checking is enabled with the X509_V_FLAG_OCSP_RESP_CHECK or X509_V_FLAG_OCSP_RESP_CHECK_ALL verification flags, for example when a TLS client verifies an OCSP response stapled into the TLS handshake by the server. When the received BasicOCSPResponse contains an empty SEQUENCE OF SingleResponse, which is permitted on the wire and accepted by the OpenSSL decoder, the OCSP_BASICRESP structure allocated by OCSP_response_get1_basic() was not freed because an early return bypassed the cleanup code at the end of the function. The amount of memory leaked per handshake can be amplified by the attacker by padding the certs field of the BasicOCSPResponse with bogus certificates, which are parsed and stored in the leaked structure before the empty response check triggers the early return. A long-running TLS client that repeatedly connects to a malicious server can have its memory exhausted over time. OCSP response checking is not enabled by default. Only client applications that explicitly enable the OCSP response check verification flags are affected. FIPS impact: no The FIPS modules in 4.0 and 3.6 are not affected by this issue as the affected code is outside the OpenSSL FIPS module boundary.

Why

The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse.

How

An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may disrupt the affected service.

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 Release of Memory after Effective Lifetime → disrupt the affected service
Attack surface
Network
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
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-401

CWE-401: Missing Release of Memory after Effective Lifetime. The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse.

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:L/PR:N/UI:N/S:U/C:N/I:N/A:H

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.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.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.CNoneConfidentiality impact: No direct loss is represented by this metric.INoneIntegrity impact: No direct loss is represented by this metric.AHighAvailability impact: A successful attack can cause a major loss.
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.
NetworkUnauthenticatedDenial of serviceCWE-401
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-2668OpenSSL: Schwachstelle ermöglicht Denial of Service

Ein entfernter, anonymer Angreifer kann eine Schwachstelle in OpenSSL ausnutzen, um einen Denial of Service Angriff durchzuführen.

Official advisory
CSIRT Italia · Italian · risolte-vulnerabilita-in-openssl-2Risolte vulnerabilità in OpenSSL

Aggiornamenti di sicurezza risolvono una vulnerabilità con gravità "alta", presente in OpenSSL, libreria open source per la crittografia e la gestione delle connessioni sicure. Tale vulnerabilità, qualora sfruttata, potrebbe consentire ad un utente malintenzionato di inviare risposte OCSP opportunamente predisposte al fine di compromettere la disponibilità del servizio sui sistemi interessati.

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
confidential-clusters-beta/compute-pcrs-rhel9 as a component of Confidential Cluster Operator; 3scale-amp2/backend-rhel8 as a component of Red Hat 3scale API Management Platform 2; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 2; 3scale-amp2/toolbox-rhel9 as a component of Red Hat 3scale API Management Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; rhcl-1/limitador-rhel9 as a component of Red Hat Connectivity Link 1; rhosp-rhel8/openstack-aodh-evaluator as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-aodh-listener as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-central as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-compute as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-ipmi as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-cinder-api as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ironic-base as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-keystone as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-manila-api as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-mistral-executor as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-nova-base as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-nova-libvirt as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-octavia-housekeeping as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ovn-controller as a component of Red Hat OpenStack Platform 16.2; quay/quay-rhel9 as a component of Red Hat Quay 3; satellite/iop-vmaas-rhel9 as a component of Red Hat Satellite 6
Fixed
chunkah-main@aarch64 as a component of Red Hat Hardened Images; chunkah-main@src as a component of Red Hat Hardened Images; chunkah-main@x86_64 as a component of Red Hat Hardened Images; openssl-main@aarch64 as a component of Red Hat Hardened Images; openssl-main@src as a component of Red Hat Hardened Images; openssl-main@x86_64 as a component of Red Hat Hardened Images; openssl3-main@aarch64 as a component of Red Hat Hardened Images; openssl3-main@src as a component of Red Hat Hardened Images; openssl3-main@x86_64 as a component of Red Hat Hardened Images; python-cryptography-main@aarch64 as a component of Red Hat Hardened Images; python-cryptography-main@src as a component of Red Hat Hardened Images; python-cryptography-main@x86_64 as a component of Red Hat Hardened Images; ruby3-3-main@aarch64 as a component of Red Hat Hardened Images; ruby3-3-main@noarch as a component of Red Hat Hardened Images; ruby3-3-main@src as a component of Red Hat Hardened Images; ruby3-3-main@x86_64 as a component of Red Hat Hardened Images; ruby3-4-main@aarch64 as a component of Red Hat Hardened Images; ruby3-4-main@noarch as a component of Red Hat Hardened Images; ruby3-4-main@src as a component of Red Hat Hardened Images; ruby3-4-main@x86_64 as a component of Red Hat Hardened Images; ruby4-0-main@aarch64 as a component of Red Hat Hardened Images; ruby4-0-main@noarch as a component of Red Hat Hardened Images; ruby4-0-main@src as a component of Red Hat Hardened Images; ruby4-0-main@x86_64 as a component of Red Hat Hardened Images
Action
For details on how to apply this update, which includes the changes described in this advisory, refer to: https://images.redhat.com/
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 5 Aug 2026 · Last source change 5 Aug 2026, 19:31 UTC · CWE-401 · Missing Release of Memory after Effective Lifetime

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-53385
Product sourceVendor CSAF · Red Hat Product Security
Remediation sourceVendor CSAF · Red Hat Product Security
CWE sourceCNA
NVD statusNVD awaiting enrichment

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
    confidential-clusters-beta/compute-pcrs-rhel9 as a component of Confidential Cluster Operator; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; rhosp-rhel8/openstack-aodh-evaluator as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-aodh-listener as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-central as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-compute as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-ipmi as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-cinder-api as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ironic-base as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-keystone as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-manila-api as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-mistral-executor as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-nova-base as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-nova-libvirt as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-octavia-housekeeping as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ovn-controller as a component of Red Hat OpenStack Platform 16.2; quay/quay-rhel9 as a component of Red Hat Quay 3; satellite/iop-vmaas-rhel9 as a component of Red Hat Satellite 6 · Fixed: chunkah-main@aarch64 as a component of Red Hat Hardened Images; chunkah-main@src as a component of Red Hat Hardened Images; chunkah-main@x86_64 as a component of Red Hat Hardened Images; openssl-main@aarch64 as a component of Red Hat Hardened Images; openssl-main@src as a component of Red Hat Hardened Images; openssl-main@x86_64 as a component of Red Hat Hardened Images; openssl3-main@aarch64 as a component of Red Hat Hardened Images; openssl3-main@src as a component of Red Hat Hardened Images; openssl3-main@x86_64 as a component of Red Hat Hardened Images; python-cryptography-main@aarch64 as a component of Red Hat Hardened Images; python-cryptography-main@src as a component of Red Hat Hardened Images; python-cryptography-main@x86_64 as a component of Red Hat Hardened Images; ruby3-3-main@aarch64 as a component of Red Hat Hardened Images; ruby3-3-main@noarch as a component of Red Hat Hardened Images; ruby3-3-main@src as a component of Red Hat Hardened Images; ruby3-3-main@x86_64 as a component of Red Hat Hardened Images; ruby3-4-main@aarch64 as a component of Red Hat Hardened Images; ruby3-4-main@noarch as a component of Red Hat Hardened Images; ruby3-4-main@src as a component of Red Hat Hardened Images; ruby3-4-main@x86_64 as a component of Red Hat Hardened Images; ruby4-0-main@aarch64 as a component of Red Hat Hardened Images; ruby4-0-main@noarch as a component of Red Hat Hardened Images; ruby4-0-main@src as a component of Red Hat Hardened Images; ruby4-0-main@x86_64 as a component of Red Hat Hardened Images
    After
    confidential-clusters-beta/compute-pcrs-rhel9 as a component of Confidential Cluster Operator; 3scale-amp2/backend-rhel8 as a component of Red Hat 3scale API Management Platform 2; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 2; 3scale-amp2/toolbox-rhel9 as a component of Red Hat 3scale API Management Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; rhcl-1/limitador-rhel9 as a component of Red Hat Connectivity Link 1; rhosp-rhel8/openstack-aodh-evaluator as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-aodh-listener as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-central as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-compute as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ceilometer-ipmi as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-cinder-api as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ironic-base as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-keystone as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-manila-api as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-mistral-executor as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-nova-base as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-nova-libvirt as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-octavia-housekeeping as a component of Red Hat OpenStack Platform 16.2; rhosp-rhel8/openstack-ovn-controller as a component of Red Hat OpenStack Platform 16.2; quay/quay-rhel9 as a component of Red Hat Quay 3; satellite/iop-vmaas-rhel9 as a component of Red Hat Satellite 6 · Fixed: chunkah-main@aarch64 as a component of Red Hat Hardened Images; chunkah-main@src as a component of Red Hat Hardened Images; chunkah-main@x86_64 as a component of Red Hat Hardened Images; openssl-main@aarch64 as a component of Red Hat Hardened Images; openssl-main@src as a component of Red Hat Hardened Images; openssl-main@x86_64 as a component of Red Hat Hardened Images; openssl3-main@aarch64 as a component of Red Hat Hardened Images; openssl3-main@src as a component of Red Hat Hardened Images; openssl3-main@x86_64 as a component of Red Hat Hardened Images; python-cryptography-main@aarch64 as a component of Red Hat Hardened Images; python-cryptography-main@src as a component of Red Hat Hardened Images; python-cryptography-main@x86_64 as a component of Red Hat Hardened Images; ruby3-3-main@aarch64 as a component of Red Hat Hardened Images; ruby3-3-main@noarch as a component of Red Hat Hardened Images; ruby3-3-main@src as a component of Red Hat Hardened Images; ruby3-3-main@x86_64 as a component of Red Hat Hardened Images; ruby3-4-main@aarch64 as a component of Red Hat Hardened Images; ruby3-4-main@noarch as a component of Red Hat Hardened Images; ruby3-4-main@src as a component of Red Hat Hardened Images; ruby3-4-main@x86_64 as a component of Red Hat Hardened Images; ruby4-0-main@aarch64 as a component of Red Hat Hardened Images; ruby4-0-main@noarch as a component of Red Hat Hardened Images; ruby4-0-main@src as a component of Red Hat Hardened Images; ruby4-0-main@x86_64 as a component of Red Hat Hardened Images
    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-54876 · cve.blacktree.nl