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

Out of bounds write in PKCS12_get_friendlyname() UTF-8 conversion

OpenSSL · OpenSSL

7.4HighCVSS 3.1
Recommended action
Within 7 days

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

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 10 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.7Canonical record ↗Source updated 10 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.

2 current
CVE-2025-69419 · CSAF 2.0 · revision 3 · finalRed Hat Product Securityopenssl: OpenSSL: Arbitrary code execution due to out-of-bounds write in PKCS#12 processing
6 known affected

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

  • openssl as a component of Red Hat Enterprise Linux 6
  • openssl-devel as a component of Red Hat Enterprise Linux 6
  • openssl-perl as a component of Red Hat Enterprise Linux 6
  • openssl-static as a component of Red Hat Enterprise Linux 6
  • openssl.src as a component of Red Hat Enterprise Linux 6
  • openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4
Summary
A flaw was found in OpenSSL. When processing a specially crafted PKCS#12 (Personal Information Exchange Syntax Standard) file, a remote attacker can exploit an out-of-bounds write vulnerability. This issue, occurring within the OPENSSL_uni2utf8() function, leads to memory corruption by writing data beyond its allocated buffer. Successful exploitation could result in a denial of service or potentially allow for arbitrary code execution.
Remediation
Before applying this update, make sure all previously released errata relevant to your system have been applied. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258
SSA-265688 · CSAF 2.0 · revision 13 · interimSiemens ProductCERTSSA-265688: Vulnerabilities in the additional GNU/Linux subsystem of the SIMATIC S7-1500 TM MFP V1.1
1 known affected

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

  • SIMATIC S7-1500 TM MFP - GNU/Linux subsystem
Summary
Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously crafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing non-ASCII BMP code point can trigger a one byte write before the allocated buffer. Impact summary: The out-of-bounds write can cause a memory corruption which can have various consequences including a Denial of Service. The OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12 BMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes, the helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16 source byte count as the destination buffer capacity to UTF8_putc(). For BMP code points above U+07FF, UTF-8 requires three bytes, but the forwarded capacity can be just two bytes. UTF8_putc() then returns -1, and this negative value is added to the output length without validation, causing the length to become negative. The subsequent trailing NUL byte is then written at a negative offset, causing write outside of heap allocated buffer. The vulnerability is reachable via the public PKCS12_get_friendlyname() API when parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a different code path that avoids this issue, PKCS12_get_friendlyname() directly invokes the vulnerable function. Exploitation requires an attacker to provide a malicious PKCS#12 file to be parsed by the application and the attacker can just trigger a one zero byte write before the allocated buffer. For that reason the issue was assessed as Low severity according to our Security Policy. The FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue, as the PKCS#12 implementation is outside the OpenSSL FIPS module boundary. OpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue. OpenSSL 1.0.2 is not affected by this issue.
Remediation
Limit access to the interactive shell of the additional GNU/Linux subssytem to trusted personnel only.
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-2025-206395

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: Calling PKCS12_get_friendlyname() function on a maliciously crafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing non-ASCII BMP code point can trigger a one byte write before the allocated buffer. Impact summary: The out-of-bounds write can cause a memory corruption which can have various consequences including a Denial of Service. The OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12 BMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes, the helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16 source byte count as the destination buffer capacity to UTF8_putc(). For BMP code points above U+07FF, UTF-8 requires three bytes, but the forwarded capacity can be just two bytes. UTF8_putc() then returns -1, and this negative value is added to the output length without validation, causing the length to become negative. The subsequent trailing NUL byte is then written at a negative offset, causing write outside of heap allocated buffer. The vulnerability is reachable via the public PKCS12_get_friendlyname() API when parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a different code path that avoids this issue, PKCS12_get_friendlyname() directly invokes the vulnerable function. Exploitation requires an attacker to provide a malicious PKCS#12 file to be parsed by the application and the attacker can just trigger a one zero byte write before the allocated buffer. For that reason the issue was assessed as Low severity according to our Security Policy. The FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue, as the PKCS#12 implementation is outside the OpenSSL FIPS module boundary. OpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue. OpenSSL 1.0.2 is not affected by this issue.

What

Issue summary: Calling PKCS12_get_friendlyname() function on a maliciously crafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing non-ASCII BMP code point can trigger a one byte write before the allocated buffer. Impact summary: The out-of-bounds write can cause a memory corruption which can have various consequences including a Denial of Service. The OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12 BMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes, the helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16 source byte count as the destination buffer capacity to UTF8_putc(). For BMP code points above U+07FF, UTF-8 requires three bytes, but the forwarded capacity can be just two bytes. UTF8_putc() then returns -1, and this negative value is added to the output length without validation, causing the length to become negative. The subsequent trailing NUL byte is then written at a negative offset, causing write outside of heap allocated buffer. The vulnerability is reachable via the public PKCS12_get_friendlyname() API when parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a different code path that avoids this issue, PKCS12_get_friendlyname() directly invokes the vulnerable function. Exploitation requires an attacker to provide a malicious PKCS#12 file to be parsed by the application and the attacker can just trigger a one zero byte write before the allocated buffer. For that reason the issue was assessed as Low severity according to our Security Policy. The FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue, as the PKCS#12 implementation is outside the OpenSSL FIPS module boundary. OpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue. OpenSSL 1.0.2 is not affected by this issue.

Why

A bounds error lets data be written beyond the intended memory region, potentially corrupting control data.

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: Calling PKCS12_get_friendlyname() function on a maliciously crafted PKCS#12 file with a BMPString (UTF-16BE) friendly name containing non-ASCII BMP code point can trigger a one byte write before the allocated buffer. Impact summary: The out-of-bounds write can cause a memory corruption which can have various consequences including a Denial of Service. The OPENSSL_uni2utf8() function performs a two-pass conversion of a PKCS#12 BMPString (UTF-16BE) to UTF-8. In the second pass, when emitting UTF-8 bytes, the helper function bmp_to_utf8() incorrectly forwards the remaining UTF-16 source byte count as the destination buffer capacity to UTF8_putc(). For BMP code points above U+07FF, UTF-8 requires three bytes, but the forwarded capacity can be just two bytes. UTF8_putc() then returns -1, and this negative value is added to the output length without validation, causing the length to become negative. The subsequent trailing NUL byte is then written at a negative offset, causing write outside of heap allocated buffer. The vulnerability is reachable via the public PKCS12_get_friendlyname() API when parsing attacker-controlled PKCS#12 files. While PKCS12_parse() uses a different code path that avoids this issue, PKCS12_get_friendlyname() directly invokes the vulnerable function. Exploitation requires an attacker to provide a malicious PKCS#12 file to be parsed by the application and the attacker can just trigger a one zero byte write before the allocated buffer. For that reason the issue was assessed as Low severity according to our Security Policy. The FIPS modules in 3.6, 3.5, 3.4, 3.3 and 3.0 are not affected by this issue, as the PKCS#12 implementation is outside the OpenSSL FIPS module boundary. OpenSSL 3.6, 3.5, 3.4, 3.3, 3.0 and 1.1.1 are vulnerable to this issue. OpenSSL 1.0.2 is not affected by this issue.

Why

A bounds error lets data be written beyond the intended memory region, potentially corrupting control data.

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 → Out-of-bounds Write → disrupt the affected service
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-787

CWE-787: Out-of-bounds Write. The product writes data past the end, or before the beginning, of the intended buffer.

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:H/I:H/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.CHighConfidentiality impact: A successful attack can cause a major loss.IHighIntegrity impact: A successful attack can cause a major 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.
NetworkUnauthenticatedDenial of serviceCWE-787
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-2253IBM Security Verify Access: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in IBM Security Verify Access ausnutzen, um erweiterte Berechtigungen zu erlangen, beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, Daten zu manipulieren, sensible Informationen offenzulegen und andere, nicht näher bezeichnete Angriffe durchzuführen.

Official advisory
BSI · German · WID-SEC-W-2026-2189Dell PowerProtect Data Domain: Mehrere Schwachstellen

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

Official advisory
BSI · German · WID-SEC-W-2026-0778Dell Secure Connect Gateway Policy Manager: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in Dell Secure Connect Gateway Policy Manager ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

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

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

Official advisory
BSI · German · WID-SEC-W-2026-1730Xerox FreeFlow Print Server: Mehrere Schwachstellen ermöglichen nicht spezifizierten Angriff

Ein Angreifer kann mehrere Schwachstellen in Xerox FreeFlow Print Server ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

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

d?id=CVE-2025-14179 Référence CVE CVE-2025-15467 https://www.cve.org/CVERecord?id=CVE-2025-15467 Référence CVE CVE-2025-15468 https://www.cve.org/CVERecord?id=CVE-2025-15468 Référence CVE CVE-2025-15469 https://www.cve.org/CVERecord?id=CVE-2025-15469 Référence CVE CVE-2025-61726 https://www.cve.org/CVERecord?id=CVE-2025-61726 Référence CVE CVE-2025-66199 https://www.cve.org/CVERecord?id=CVE-2025-66199 Référence CVE CVE-2025-68121 https://www.cve.org/CVERecord?id=CVE-2025-68121 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2026-18667 https://www.cve.org/CVERecord?id=CVE-2026-18667 Référence CVE CVE-2026-2003 https://www.cve.org/CVERecord?id=CVE-2026-2003 Référence CVE CVE-2026-2004 https://www.cve.org/CVERecord?id=CVE-2026-2004 Référence CVE CVE-2026-2005 https://www.cve.org/CVERecord?id=CVE-2026-2005 Référence CVE CVE-2026-2006 https://www.cve.org/CVERecord?id=CVE-2026-2006 Référence CVE CVE-2026-22795 https://www.cve.org/CVERecord?id=CVE-2026

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0905Multiples vulnérabilités dans Tenable Security Center

d?id=CVE-2025-14179 Référence CVE CVE-2025-15467 https://www.cve.org/CVERecord?id=CVE-2025-15467 Référence CVE CVE-2025-15468 https://www.cve.org/CVERecord?id=CVE-2025-15468 Référence CVE CVE-2025-15469 https://www.cve.org/CVERecord?id=CVE-2025-15469 Référence CVE CVE-2025-61726 https://www.cve.org/CVERecord?id=CVE-2025-61726 Référence CVE CVE-2025-66199 https://www.cve.org/CVERecord?id=CVE-2025-66199 Référence CVE CVE-2025-68121 https://www.cve.org/CVERecord?id=CVE-2025-68121 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2026-2003 https://www.cve.org/CVERecord?id=CVE-2026-2003 Référence CVE CVE-2026-2004 https://www.cve.org/CVERecord?id=CVE-2026-2004 Référence CVE CVE-2026-2005 https://www.cve.org/CVERecord?id=CVE-2026-2005 Référence CVE CVE-2026-2006 https://www.cve.org/CVERecord?id=CVE-2026-2006 Référence CVE CVE-2026-22795 https://www.cve.org/CVERecord?id=CVE-2026-22795 Référence CVE CVE-2026-22796 https://www.cve.org/CVERecord?id=CVE-2026

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

d?id=CVE-2025-55163 Référence CVE CVE-2025-58056 https://www.cve.org/CVERecord?id=CVE-2025-58056 Référence CVE CVE-2025-58057 https://www.cve.org/CVERecord?id=CVE-2025-58057 Référence CVE CVE-2025-62718 https://www.cve.org/CVERecord?id=CVE-2025-62718 Référence CVE CVE-2025-66199 https://www.cve.org/CVERecord?id=CVE-2025-66199 Référence CVE CVE-2025-67735 https://www.cve.org/CVERecord?id=CVE-2025-67735 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-68161 https://www.cve.org/CVERecord?id=CVE-2025-68161 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-7962 https://www.cve.org/CVERecord?id=CVE-2025-7962 Référence CVE CVE-2026-0636 https://www.cve.org/CVERecord?id=CVE-2026-0636 Référence CVE CVE-2026-0994 https://www.cve.org/CVERecord?id=CVE-2026-0994 Référence CVE CVE-2026-10109 https://www.cve.org/CVERecord?id=CVE-2026-10109 Référence CVE CVE-2026-10845 https://www.cve.org/CVERecord?id=CVE-2026-10845 Référence CVE CVE-2026-11383 https://www.cve.org/CVERecord?id=CVE-20

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

d?id=CVE-2025-55132 Référence CVE CVE-2025-55247 https://www.cve.org/CVERecord?id=CVE-2025-55247 Référence CVE CVE-2025-55248 https://www.cve.org/CVERecord?id=CVE-2025-55248 Référence CVE CVE-2025-55315 https://www.cve.org/CVERecord?id=CVE-2025-55315 Référence CVE CVE-2025-59465 https://www.cve.org/CVERecord?id=CVE-2025-59465 Référence CVE CVE-2025-59466 https://www.cve.org/CVERecord?id=CVE-2025-59466 Référence CVE CVE-2025-66199 https://www.cve.org/CVERecord?id=CVE-2025-66199 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2026-13007 https://www.cve.org/CVERecord?id=CVE-2026-13007 Référence CVE CVE-2026-1965 https://www.cve.org/CVERecord?id=CVE-2026-1965 Référence CVE CVE-2026-21218 https://www.cve.org/CVERecord?id=CVE-2026-21218 Référence CVE CVE-2026-21262 https://www.cve.org/CVERecord?id=CVE-2026-21262 Référence CVE CVE-2026-21637 https://www.cve.org/CVERecord?id=CVE-2026-21637 Référence CVE CVE-2026-21710 https://www.cve.org/CVERecord?id=CV

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

d?id=CVE-2025-68973 Référence CVE CVE-2025-69223 https://www.cve.org/CVERecord?id=CVE-2025-69223 Référence CVE CVE-2025-69225 https://www.cve.org/CVERecord?id=CVE-2025-69225 Référence CVE CVE-2025-69226 https://www.cve.org/CVERecord?id=CVE-2025-69226 Référence CVE CVE-2025-69227 https://www.cve.org/CVERecord?id=CVE-2025-69227 Référence CVE CVE-2025-69228 https://www.cve.org/CVERecord?id=CVE-2025-69228 Référence CVE CVE-2025-69229 https://www.cve.org/CVERecord?id=CVE-2025-69229 Référence CVE CVE-2025-69277 https://www.cve.org/CVERecord?id=CVE-2025-69277 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-7338 https://www.cve.org/CVERecord?id=CVE-2025-7338 Référence CVE CVE-2025-8194 https://www.cve.org/CVERecord?id=CVE-2025-8194 Référence CVE CVE-2025-8291 https://www.cve.org/CVERecord?id=CVE-2025-8291 Référence CVE CVE-2025-9086 https://www.cve.org/CVERecord?id=CVE-2025-9086 Référence CVE CVE-2025-9232 https://www.cve.org/CVERecord?id=CVE-2025-9232 Référence CVE CVE-2025-9820 https://www.cve.org/CVERecord?id=CVE-2025-98

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0539Multiples vulnérabilités dans Juniper Networks Secure Analytics

De multiples vulnérabilités ont été découvertes dans Juniper Networks Secure Analytics. Elles permettent à un attaquant de provoquer un déni de service à distance et un problème de sécurité non spécifié par l'éditeur.

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0469Multiples vulnérabilités dans Oracle MySQL

rg/CVERecord?id=CVE-2025-4878 Référence CVE CVE-2025-5318 https://www.cve.org/CVERecord?id=CVE-2025-5318 Référence CVE CVE-2025-5351 https://www.cve.org/CVERecord?id=CVE-2025-5351 Référence CVE CVE-2025-5372 https://www.cve.org/CVERecord?id=CVE-2025-5372 Référence CVE CVE-2025-5449 https://www.cve.org/CVERecord?id=CVE-2025-5449 Référence CVE CVE-2025-5987 https://www.cve.org/CVERecord?id=CVE-2025-5987 Référence CVE CVE-2025-66199 https://www.cve.org/CVERecord?id=CVE-2025-66199 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2026-21998 https://www.cve.org/CVERecord?id=CVE-2026-21998 Référence CVE CVE-2026-22001 https://www.cve.org/CVERecord?id=CVE-2026-22001 Référence CVE CVE-2026-22002 https://www.cve.org/CVERecord?id=CVE-2026-22002 Référence CVE CVE-2026-22004 https://www.cve.org/CVERecord?id=CVE-2026-22004 Référence CVE CVE-2026-22005 https://www.cve.org/CVERecord?id=CVE-2026-22005 Référence CVE CVE-2026-22009 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0470Multiples vulnérabilités dans Oracle PeopleSoft

ord?id=CVE-2025-43966 Référence CVE CVE-2025-43967 https://www.cve.org/CVERecord?id=CVE-2025-43967 Référence CVE CVE-2025-58754 https://www.cve.org/CVERecord?id=CVE-2025-58754 Référence CVE CVE-2025-6069 https://www.cve.org/CVERecord?id=CVE-2025-6069 Référence CVE CVE-2025-66418 https://www.cve.org/CVERecord?id=CVE-2025-66418 Référence CVE CVE-2025-66471 https://www.cve.org/CVERecord?id=CVE-2025-66471 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-68161 https://www.cve.org/CVERecord?id=CVE-2025-68161 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-8194 https://www.cve.org/CVERecord?id=CVE-2025-8194 Référence CVE CVE-2026-22006 https://www.cve.org/CVERecord?id=CVE-2026-22006 Référence CVE CVE-2026-22019 https://www.cve.org/CVERecord?id=CVE-2026-22019 Référence CVE CVE-2026-22795 https://www.cve.org/CVERecord?id=CVE-2026-22795 Référence CVE CVE-2026-22796 https://www.cve.org/CVERecord?id=CVE-2026-22796 Référence CVE CVE-2026-34266 https://www.cve.org/CVERecord?id=CV

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

d?id=CVE-2025-49124 Référence CVE CVE-2025-50181 https://www.cve.org/CVERecord?id=CVE-2025-50181 Référence CVE CVE-2025-52434 https://www.cve.org/CVERecord?id=CVE-2025-52434 Référence CVE CVE-2025-52520 https://www.cve.org/CVERecord?id=CVE-2025-52520 Référence CVE CVE-2025-53506 https://www.cve.org/CVERecord?id=CVE-2025-53506 Référence CVE CVE-2025-55752 https://www.cve.org/CVERecord?id=CVE-2025-55752 Référence CVE CVE-2025-55754 https://www.cve.org/CVERecord?id=CVE-2025-55754 Référence CVE CVE-2025-61795 https://www.cve.org/CVERecord?id=CVE-2025-61795 Référence CVE CVE-2025-68800 https://www.cve.org/CVERecord?id=CVE-2025-68800 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-71085 https://www.cve.org/CVERecord?id=CVE-2025-71085 Référence CVE CVE-2025-8194 https://www.cve.org/CVERecord?id=CVE-2025-8194 Référence CVE CVE-2025-8869 https://www.cve.org/CVERecord?id=CVE-2025-8869 Référence CVE CVE-2026-1188 https://www.cve.org/CVERecord?id=CVE-2026-1188 Référence CVE CVE-2026-21860 https://www.cve.org/CVERecord?id=CVE-2026-21860 Référence CVE CVE-2026-21925 https://www.cve.org/CVERecord?id=CVE-2026-21925 Référence CVE CVE-2026-21932 https://www.cve.org/CVERecord?id=CVE-2026-21932 Référence CVE CVE-2026-21933 https://www.cve.org/CVERecord?id=CVE-20

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0390Multiples vulnérabilités dans Belden NetModule Router Software

De multiples vulnérabilités ont été découvertes dans Belden NetModule Router Software. Elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance et un déni de service à distance.

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

d?id=CVE-2025-68816 Référence CVE CVE-2025-68817 https://www.cve.org/CVERecord?id=CVE-2025-68817 Référence CVE CVE-2025-68818 https://www.cve.org/CVERecord?id=CVE-2025-68818 Référence CVE CVE-2025-68819 https://www.cve.org/CVERecord?id=CVE-2025-68819 Référence CVE CVE-2025-68820 https://www.cve.org/CVERecord?id=CVE-2025-68820 Référence CVE CVE-2025-68821 https://www.cve.org/CVERecord?id=CVE-2025-68821 Référence CVE CVE-2025-68822 https://www.cve.org/CVERecord?id=CVE-2025-68822 Référence CVE CVE-2025-68972 https://www.cve.org/CVERecord?id=CVE-2025-68972 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-69534 https://www.cve.org/CVERecord?id=CVE-2025-69534 Référence CVE CVE-2025-69644 https://www.cve.org/CVERecord?id=CVE-2025-69644 Référence CVE CVE-2025-69645 https://www.cve.org/CVERecord?id=CVE-2025-69645 Référence CVE CVE-2025-69646 https://www.cve.org/CVERecord?id=CVE-2025-69646 Référence CVE CVE-2025-69647 https://www.cve.org/CVERecord?id=CVE-2025-69647 Référence CVE CVE-2025-69648 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2025-68816 Référence CVE CVE-2025-68817 https://www.cve.org/CVERecord?id=CVE-2025-68817 Référence CVE CVE-2025-68818 https://www.cve.org/CVERecord?id=CVE-2025-68818 Référence CVE CVE-2025-68819 https://www.cve.org/CVERecord?id=CVE-2025-68819 Référence CVE CVE-2025-68820 https://www.cve.org/CVERecord?id=CVE-2025-68820 Référence CVE CVE-2025-68821 https://www.cve.org/CVERecord?id=CVE-2025-68821 Référence CVE CVE-2025-68822 https://www.cve.org/CVERecord?id=CVE-2025-68822 Référence CVE CVE-2025-68972 https://www.cve.org/CVERecord?id=CVE-2025-68972 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-69534 https://www.cve.org/CVERecord?id=CVE-2025-69534 Référence CVE CVE-2025-69644 https://www.cve.org/CVERecord?id=CVE-2025-69644 Référence CVE CVE-2025-69645 https://www.cve.org/CVERecord?id=CVE-2025-69645 Référence CVE CVE-2025-69646 https://www.cve.org/CVERecord?id=CVE-2025-69646 Référence CVE CVE-2025-69647 https://www.cve.org/CVERecord?id=CVE-2025-69647 Référence CVE CVE-2025-69648 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2025-61732 Référence CVE CVE-2025-61748 https://www.cve.org/CVERecord?id=CVE-2025-61748 Référence CVE CVE-2025-66564 https://www.cve.org/CVERecord?id=CVE-2025-66564 Référence CVE CVE-2025-66614 https://www.cve.org/CVERecord?id=CVE-2025-66614 Référence CVE CVE-2025-67735 https://www.cve.org/CVERecord?id=CVE-2025-67735 Référence CVE CVE-2025-68119 https://www.cve.org/CVERecord?id=CVE-2025-68119 Référence CVE CVE-2025-68121 https://www.cve.org/CVERecord?id=CVE-2025-68121 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-8194 https://www.cve.org/CVERecord?id=CVE-2025-8194 Référence CVE CVE-2025-8291 https://www.cve.org/CVERecord?id=CVE-2025-8291 Référence CVE CVE-2025-8869 https://www.cve.org/CVERecord?id=CVE-2025-8869 Référence CVE CVE-2026-0672 https://www.cve.org/CVERecord?id=CVE-2026-0672 Référence CVE CVE-2026-0865 https://www.cve.org/CVERecord?id=CVE-2026-0865 Référence CVE CVE-2026-1225 https://www.cve.org/CVERecord?id=CVE-2026-12

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

d?id=CVE-2025-69223 Référence CVE CVE-2025-69224 https://www.cve.org/CVERecord?id=CVE-2025-69224 Référence CVE CVE-2025-69225 https://www.cve.org/CVERecord?id=CVE-2025-69225 Référence CVE CVE-2025-69226 https://www.cve.org/CVERecord?id=CVE-2025-69226 Référence CVE CVE-2025-69227 https://www.cve.org/CVERecord?id=CVE-2025-69227 Référence CVE CVE-2025-69228 https://www.cve.org/CVERecord?id=CVE-2025-69228 Référence CVE CVE-2025-69229 https://www.cve.org/CVERecord?id=CVE-2025-69229 Référence CVE CVE-2025-69230 https://www.cve.org/CVERecord?id=CVE-2025-69230 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-6965 https://www.cve.org/CVERecord?id=CVE-2025-6965 Référence CVE CVE-2025-8114 https://www.cve.org/CVERecord?id=CVE-2025-8114 Référence CVE CVE-2025-8291 https://www.cve.org/CVERecord?id=CVE-2025-8291 Référence CVE CVE-2025-8556 https://www.cve.org/CVERecord?id=CVE-2025-8556 Référence CVE CVE-2025-8885 https://www.cve.org/CVERecord?id=CVE-2025-8885 Référence CVE CVE-2025-8916 https://www.cve.org/CVERecord?id=CVE-2025-89

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

d?id=CVE-2025-67735 Référence CVE CVE-2025-68119 https://www.cve.org/CVERecord?id=CVE-2025-68119 Référence CVE CVE-2025-68121 https://www.cve.org/CVERecord?id=CVE-2025-68121 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-68249 https://www.cve.org/CVERecord?id=CVE-2025-68249 Référence CVE CVE-2025-68750 https://www.cve.org/CVERecord?id=CVE-2025-68750 Référence CVE CVE-2025-68972 https://www.cve.org/CVERecord?id=CVE-2025-68972 Référence CVE CVE-2025-68973 https://www.cve.org/CVERecord?id=CVE-2025-68973 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-6965 https://www.cve.org/CVERecord?id=CVE-2025-6965 Référence CVE CVE-2025-7039 https://www.cve.org/CVERecord?id=CVE-2025-7039 Référence CVE CVE-2025-7424 https://www.cve.org/CVERecord?id=CVE-2025-7424 Référence CVE CVE-2025-7425 https://www.cve.org/CVERecord?id=CVE-2025-7425 Référence CVE CVE-2025-7545 https://www.cve.org/CVERecord?id=CVE-2025-7545 Référence CVE CVE-2025-7546 https://www.cve.org/CVERecord?id=CVE-2025-75

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

d?id=CVE-2025-66614 Référence CVE CVE-2025-67735 https://www.cve.org/CVERecord?id=CVE-2025-67735 Référence CVE CVE-2025-68119 https://www.cve.org/CVERecord?id=CVE-2025-68119 Référence CVE CVE-2025-68121 https://www.cve.org/CVERecord?id=CVE-2025-68121 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-68249 https://www.cve.org/CVERecord?id=CVE-2025-68249 Référence CVE CVE-2025-68973 https://www.cve.org/CVERecord?id=CVE-2025-68973 Référence CVE CVE-2025-69277 https://www.cve.org/CVERecord?id=CVE-2025-69277 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-7039 https://www.cve.org/CVERecord?id=CVE-2025-7039 Référence CVE CVE-2025-8277 https://www.cve.org/CVERecord?id=CVE-2025-8277 Référence CVE CVE-2025-8291 https://www.cve.org/CVERecord?id=CVE-2025-8291 Référence CVE CVE-2025-8556 https://www.cve.org/CVERecord?id=CVE-2025-8556 Référence CVE CVE-2025-8732 https://www.cve.org/CVERecord?id=CVE-2025-8732 Référence CVE CVE-2025-8869 https://www.cve.org/CVERecord?id=CVE-2025-88

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

d?id=CVE-2025-67735 Référence CVE CVE-2025-68119 https://www.cve.org/CVERecord?id=CVE-2025-68119 Référence CVE CVE-2025-68121 https://www.cve.org/CVERecord?id=CVE-2025-68121 Référence CVE CVE-2025-68146 https://www.cve.org/CVERecord?id=CVE-2025-68146 Référence CVE CVE-2025-68160 https://www.cve.org/CVERecord?id=CVE-2025-68160 Référence CVE CVE-2025-68161 https://www.cve.org/CVERecord?id=CVE-2025-68161 Référence CVE CVE-2025-68249 https://www.cve.org/CVERecord?id=CVE-2025-68249 Référence CVE CVE-2025-68973 https://www.cve.org/CVERecord?id=CVE-2025-68973 Référence CVE CVE-2025-69418 https://www.cve.org/CVERecord?id=CVE-2025-69418 Référence CVE CVE-2025-69419 https://www.cve.org/CVERecord?id=CVE-2025-69419 Référence CVE CVE-2025-69420 https://www.cve.org/CVERecord?id=CVE-2025-69420 Référence CVE CVE-2025-69421 https://www.cve.org/CVERecord?id=CVE-2025-69421 Référence CVE CVE-2025-6965 https://www.cve.org/CVERecord?id=CVE-2025-6965 Référence CVE CVE-2025-7425 https://www.cve.org/CVERecord?id=CVE-2025-7425 Référence CVE CVE-2025-8058 https://www.cve.org/CVERecord?id=CVE-2025-8058 Référence CVE CVE-2025-8194 https://www.cve.org/CVERecord?id=CVE-2025-8194 Référence CVE CVE-2025-8291 https://www.cve.org/CVERecord?id=CVE-2025-8291 Référence CVE CVE-2025-8556 https://www.cve.org/CVERecord?id=CVE-2025-85

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

De multiples vulnérabilités ont été découvertes dans Tenable Identity Exposure. Elles permettent à un attaquant de provoquer un déni de service à distance et un problème de sécurité non spécifié par l'éditeur.

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0096Multiples 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
openssl as a component of Red Hat Enterprise Linux 6; openssl-devel as a component of Red Hat Enterprise Linux 6; openssl-perl as a component of Red Hat Enterprise Linux 6; openssl-static as a component of Red Hat Enterprise Linux 6; openssl.src as a component of Red Hat Enterprise Linux 6; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4
Fixed
jbcs-httpd24-apr-util-0:1.6.3-4.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-debuginfo-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-devel-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-ldap-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-mysql-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-nss-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-odbc-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-openssl-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-pgsql-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-sqlite-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-0:8.11.0-4.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-debuginfo-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-0:2.4.62-11.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-debuginfo-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-devel-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-manual-0:2.4.62-11.el7jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-selinux-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-tools-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-libcurl-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-libcurl-devel-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-0:2.0.29-8.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-0:2.0.29-8.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-debuginfo-0:2.0.29-8.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-0:1.2.50-12.redhat_1.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-ap24-0:1.2.50-12.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-debuginfo-0:1.2.50-12.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_ldap-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; and 523 more
Action
Before applying this update, make sure all previously released errata relevant to your system have been applied. For details on how to apply this update, 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 27 Jan 2026 · Last source change 12 May 2026, 12:08 UTC · CWE-787 · Out-of-bounds Write

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-2025-206395
Product sourceVendor CSAF · Red Hat Product Security
Remediation sourceVendor CSAF · Red Hat Product Security
CWE sourceCNA
NVD statusNVD modified after 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
    openssl as a component of Red Hat Enterprise Linux 6; openssl-devel as a component of Red Hat Enterprise Linux 6; openssl-perl as a component of Red Hat Enterprise Linux 6; openssl-static as a component of Red Hat Enterprise Linux 6; openssl.src as a component of Red Hat Enterprise Linux 6 · Fixed: jbcs-httpd24-apr-util-0:1.6.3-4.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-debuginfo-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-devel-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-ldap-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-mysql-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-nss-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-odbc-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-openssl-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-pgsql-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-sqlite-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-0:8.11.0-4.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-debuginfo-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-0:2.4.62-11.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-debuginfo-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-devel-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-manual-0:2.4.62-11.el7jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-selinux-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-tools-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-libcurl-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-libcurl-devel-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-0:2.0.29-8.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-0:2.0.29-8.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-debuginfo-0:2.0.29-8.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-0:1.2.50-12.redhat_1.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-ap24-0:1.2.50-12.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-debuginfo-0:1.2.50-12.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_ldap-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; and 523 more
    After
    openssl as a component of Red Hat Enterprise Linux 6; openssl-devel as a component of Red Hat Enterprise Linux 6; openssl-perl as a component of Red Hat Enterprise Linux 6; openssl-static as a component of Red Hat Enterprise Linux 6; openssl.src as a component of Red Hat Enterprise Linux 6; openshift/ose-rhel-coreos-9 as a component of Red Hat OpenShift Container Platform 4 · Fixed: jbcs-httpd24-apr-util-0:1.6.3-4.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-debuginfo-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-devel-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-ldap-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-mysql-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-nss-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-odbc-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-openssl-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-pgsql-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-apr-util-sqlite-0:1.6.3-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-0:8.11.0-4.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-curl-debuginfo-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-0:2.4.62-11.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-debuginfo-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-devel-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-manual-0:2.4.62-11.el7jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-selinux-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-httpd-tools-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-libcurl-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-libcurl-devel-0:8.11.0-4.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-0:2.0.29-8.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-0:2.0.29-8.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_http2-debuginfo-0:2.0.29-8.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-0:1.2.50-12.redhat_1.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-ap24-0:1.2.50-12.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_jk-debuginfo-0:1.2.50-12.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; jbcs-httpd24-mod_ldap-0:2.4.62-11.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server; and 523 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-2025-69419 · cve.blacktree.nl