AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-17510

HIGH · CVSS 7.5 EPSS 0.45% Public Exploit

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

CyberRota Analysis

AI-Generated

Versions of Crypt::OpenSSL::PKCS12 prior to 1.98 for Perl are vulnerable to a NULL pointer dereference due to improper handling of zero-length BMPSTRING attributes in the print_attribute function. This vulnerability can lead to application crashes when an untrusted PKCS#12 file is processed, making it critical for developers and system administrators using affected versions to prioritize updates. Users of this library should assess their exposure and implement the necessary patches to mitigate potential disruptions.

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-17510
Severity
HIGH
CVSS
7.5
EPSS
0.45%
OpenSSL

Original NVD Description

Crypt::OpenSSL::PKCS12 versions before 1.98 for Perl allow a NULL pointer dereference in print_attribute via a zero length BMPSTRING attribute. print_attribute() sizes the destination buffer for a BMPSTRING attribute from its declared byte length with `Renew(*attribute, length, char)`. A zero length attribute makes that a zero size reallocation, which Perl implements as a free returning NULL, so the buffer pointer becomes NULL, the following `strncpy` copies nothing, and the caller dereferences NULL in the `strlen()` it passes to `newSVpvn()`. A zero length BMPSTRING is even length, so the ASN.1 decoder accepts it and the value reaches this code. The UTF8STRING, OCTET STRING and BIT STRING arms size on `length + 1` or `length * 4 + 1` and are unaffected. Any caller that passes an untrusted PKCS#12 file to info_as_hash() can crash the process. info() prints attribute values directly without sizing a buffer and is unaffected.