AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-13505

HIGH · CVSS 8.7 EPSS 0.25% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-08 · Last synced 2026-08-16

CyberRota Analysis

AI-Generated

The vulnerability affects Bouncy Castle for Java FIPS versions prior to 1.0.2.7, 2.0.2, and 2.1.3, where sensitive key material managed by certain cryptographic engines and classes is not properly zeroed out due to reliance on Java's finalization mechanism. This can lead to sensitive data remaining in memory longer than intended, potentially exposing it to unauthorized access and contributing to OutOfMemoryErrors under high load. Organizations using affected versions of Bouncy Castle in environments with Java 9 or later should prioritize remediation to mitigate the risk of data leakage.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-13505
Severity
HIGH
CVSS
8.7
EPSS
0.25%
Java

Original NVD Description

In Bouncy Castle for Java FIPS (BC-FJA) before bc-fips 1.0.2.7 (1.0.X series), 2.0.2 (2.0.X series) and 2.1.3 (2.1.X series), sensitive key material held by the AES and DESede engines, the SP 800-90A DRBGs, SymmetricSecretKey and the PBKD and scrypt parameter classes was zeroised on garbage collection by overriding Object.finalize. Finalization runs at an unspecified time and in an unspecified order and is serviced by a single finalizer thread, so where objects carrying a finalizer are allocated faster than that thread retires them the pending-finalization queue grows without bound: disposal falls arbitrarily far behind, which can contribute to an OutOfMemoryError under load, and the key material those objects hold stays resident in the heap for as long as they are queued, defeating the purpose of the zeroisation. The behaviour was not a problem on Java 8 or Java 11; it is later JVMs, on which finalization has been deprecated and progressively de-emphasised, where it becomes one. Disposal of these classes now runs from a java.lang.ref.Cleaner registered in the multi-release jdk1.9 overlay, so on Java 9 and later it no longer depends on the finalizer being scheduled. Bouncy Castle for Java (bcprov) and Bouncy Castle for Java LTS are not affected, as neither implements the finalizer-based zeroisation scheme.