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

jackson-databind: PolymorphicTypeValidator bypass via generic type parameters allows arbitrary class instantiation

FasterXML · jackson-databind

8.1HighCVSS 3.1
Recommended action
Within 7 days

High technical severity with public exploit material referenced by a structured source; 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.

1 package state
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 archivejackson-databindUnder 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
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-54512 · CSAF 2.0 · revision 3 · finalRed Hat Product Securityjackson-databind: jackson-databind: Arbitrary code execution via PolymorphicTypeValidator bypass
51 known affected

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

  • jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services
  • jenkins.src as a component of OpenShift Developer Tools and Services
  • openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless
  • openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless
Summary
A flaw was found in jackson-databind. This vulnerability allows a remote attacker to bypass the PolymorphicTypeValidator (PTV) when polymorphic typing is enabled and a type identifier contains generic parameters. By crafting a malicious type ID, an attacker can place a denied class as a generic type parameter of an allowed container. This leads to the loading and instantiation of arbitrary classes, potentially resulting in arbitrary code execution.
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-38595

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 with public exploit material referenced by a structured source; prioritise exposed affected systems while verifying vendor guidance.

Patch available
01

What, why and how

jackson-databind contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor. From 2.10.0 until 2.18.8, 2.21.4, and 3.1.4, jackson-databind's PolymorphicTypeValidator (PTV) is the primary safety mechanism guarding polymorphic deserialization. When polymorphic typing is enabled and a type identifier contains generic parameters (i.e. the type ID string contains <), DatabindContext._resolveAndValidateGeneric() validates only the raw container class name (the substring before <) against the configured PTV. If the container type is approved, the method parses the full canonical type string via TypeFactory.constructFromCanonical() and returns the fully parameterized type without ever validating the nested type arguments against the PTV. The nested type arguments are then resolved, instantiated, and populated as beans during deserialization. An attacker who controls the type ID can therefore place a denied class as a generic type parameter of an allowed container — for example java.util.ArrayList<com.evil.Gadget> when only java.util.ArrayList is allow-listed. The container passes the PTV check; com.evil.Gadget is loaded via Class.forName(name, true, loader), instantiated, and its properties are set from attacker-controlled JSON. This completely bypasses an explicitly configured PTV allow-list. This vulnerability is fixed in 2.18.8, 2.21.4, and 3.1.4.

What

jackson-databind contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor. From 2.10.0 until 2.18.8, 2.21.4, and 3.1.4, jackson-databind's PolymorphicTypeValidator (PTV) is the primary safety mechanism guarding polymorphic deserialization. When polymorphic typing is enabled and a type identifier contains generic parameters (i.e. the type ID string contains <), DatabindContext._resolveAndValidateGeneric() validates only the raw container class name (the substring before <) against the configured PTV. If the container type is approved, the method parses the full canonical type string via TypeFactory.constructFromCanonical() and returns the fully parameterized type without ever validating the nested type arguments against the PTV. The nested type arguments are then resolved, instantiated, and populated as beans during deserialization. An attacker who controls the type ID can therefore place a denied class as a generic type parameter of an allowed container — for example java.util.ArrayList<com.evil.Gadget> when only java.util.ArrayList is allow-listed. The container passes the PTV check; com.evil.Gadget is loaded via Class.forName(name, true, loader), instantiated, and its properties are set from attacker-controlled JSON. This completely bypasses an explicitly configured PTV allow-list. This vulnerability is fixed in 2.18.8, 2.21.4, and 3.1.4.

Why

The product implements a protection mechanism that relies on a list of inputs (or properties of inputs) that are not allowed by policy or otherwise require other action to neutralize before additional processing takes place, but the list is incomplete.

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

jackson-databind contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor. From 2.10.0 until 2.18.8, 2.21.4, and 3.1.4, jackson-databind's PolymorphicTypeValidator (PTV) is the primary safety mechanism guarding polymorphic deserialization. When polymorphic typing is enabled and a type identifier contains generic parameters (i.e. the type ID string contains <), DatabindContext._resolveAndValidateGeneric() validates only the raw container class name (the substring before <) against the configured PTV. If the container type is approved, the method parses the full canonical type string via TypeFactory.constructFromCanonical() and returns the fully parameterized type without ever validating the nested type arguments against the PTV. The nested type arguments are then resolved, instantiated, and populated as beans during deserialization. An attacker who controls the type ID can therefore place a denied class as a generic type parameter of an allowed container — for example java.util.ArrayList<com.evil.Gadget> when only java.util.ArrayList is allow-listed. The container passes the PTV check; com.evil.Gadget is loaded via Class.forName(name, true, loader), instantiated, and its properties are set from attacker-controlled JSON. This completely bypasses an explicitly configured PTV allow-list. This vulnerability is fixed in 2.18.8, 2.21.4, and 3.1.4.

Why

The product implements a protection mechanism that relies on a list of inputs (or properties of inputs) that are not allowed by policy or otherwise require other action to neutralize before additional processing takes place, but the list is incomplete.

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.
Reference recorded

A structured CVE source labels at least one public reference as exploit material. BlackTree has not independently validated that it is safe, reliable or weaponised.

Likely attack path
a network path → Incomplete List of Disallowed Inputs → 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-184

CWE-184: Incomplete List of Disallowed Inputs. The product implements a protection mechanism that relies on a list of inputs (or properties of inputs) that are not allowed by policy or otherwise require other action to neutralize before additional processing takes place, but the list is incomplete.

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: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.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.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.
NetworkUnauthenticatedCWE-184Public exploit reference
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-3043IBM QRadar SIEM: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in IBM QRadar SIEM ausnutzen, um Sicherheitsvorkehrungen zu umgehen, 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 beliebigen Programmcode auszuführen.

Official advisory
BSI · German · WID-SEC-W-2026-2923Atlassian Produkte (Bamboo, Bitbucket, Confluence, Crucible, Fisheye, und Jira): Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in Atlassian Bamboo, Atlassian Bitbucket, Atlassian Confluence, Atlassian Crucible, Atlassian Fisheye und Atlassian Jira ausnutzen, um beliebigen Programmcode auszuführen, um einen Denial of Service Angriff durchzuführen, um Informationen offenzulegen, um Dateien zu manipulieren, um einen Cross-Site Scripting Angriff durchzuführen, um einen SQL-Injection Angriff durchzuführen, und um Sicherheitsvorkehrungen zu umgehen.

Official advisory
BSI · German · WID-SEC-W-2026-2444Oracle Fusion Middleware: Mehrere Schwachstellen

Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in Oracle Fusion Middleware ausnutzen, um die Vertraulichkeit, Integrität und Verfügbarkeit zu gefährden.

Official advisory
BSI · German · WID-SEC-W-2026-2058FasterXML Jackson: Mehrere Schwachstellen

Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in FasterXML Jackson ausnutzen, um Schutzmechanismen und Autorisierungsregeln zu umgehen, Daten zu manipulieren, Informationen offenzulegen oder einen Denial-of-Service zu verursachen.

Official advisory
BSI · German · WID-SEC-W-2026-2867RealObjects PDFreactor: Mehrere Schwachstellen ermöglichen nicht spezifizierten Angriff

Ein Angreifer kann mehrere Schwachstellen in RealObjects PDFreactor ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

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

ecord?id=CVE-2026-54280 Référence CVE CVE-2026-54282 https://www.cve.org/CVERecord?id=CVE-2026-54282 Référence CVE CVE-2026-54283 https://www.cve.org/CVERecord?id=CVE-2026-54283 Référence CVE CVE-2026-54293 https://www.cve.org/CVERecord?id=CVE-2026-54293 Référence CVE CVE-2026-5435 https://www.cve.org/CVERecord?id=CVE-2026-5435 Référence CVE CVE-2026-54369 https://www.cve.org/CVERecord?id=CVE-2026-54369 Référence CVE CVE-2026-54370 https://www.cve.org/CVERecord?id=CVE-2026-54370 Référence CVE CVE-2026-54475 https://www.cve.org/CVERecord?id=CVE-2026-54475 Référence CVE CVE-2026-5450 https://www.cve.org/CVERecord?id=CVE-2026-5450 Référence CVE CVE-2026-54512 https://www.cve.org/CVERecord?id=CVE-2026-54512 Référence CVE CVE-2026-54513 https://www.cve.org/CVERecord?id=CVE-2026-54513 Référence CVE CVE-2026-54514 https://www.cve.org/CVERecord?id=CVE-2026-54514 Référence CVE CVE-2026-54515 https://www.cve.org/CVERecord?id=CVE-2026-54515 Référence CVE CVE-2026-55153 https://www.cve.org/CVERecord?id=CVE-2026-55153 Référence CVE CVE-2026-55276 https://www.cve.org/CVERecord?id=CVE-2026-55276 Référence CVE CVE-2026-55379 https://www.cve.org/CVERecord?id=CVE-2026-55379 Référence CVE CVE-2026-55380 https://www.cve.org/CVERecord?id=CVE-2026-55380 Référence CVE CVE-2026-55443 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2026-50162 Référence CVE CVE-2026-50163 https://www.cve.org/CVERecord?id=CVE-2026-50163 Référence CVE CVE-2026-50645 https://www.cve.org/CVERecord?id=CVE-2026-50645 Référence CVE CVE-2026-50734 https://www.cve.org/CVERecord?id=CVE-2026-50734 Référence CVE CVE-2026-53916 https://www.cve.org/CVERecord?id=CVE-2026-53916 Référence CVE CVE-2026-53917 https://www.cve.org/CVERecord?id=CVE-2026-53917 Référence CVE CVE-2026-54399 https://www.cve.org/CVERecord?id=CVE-2026-54399 Référence CVE CVE-2026-54428 https://www.cve.org/CVERecord?id=CVE-2026-54428 Référence CVE CVE-2026-54475 https://www.cve.org/CVERecord?id=CVE-2026-54475 Référence CVE CVE-2026-54512 https://www.cve.org/CVERecord?id=CVE-2026-54512 Référence CVE CVE-2026-54513 https://www.cve.org/CVERecord?id=CVE-2026-54513 Référence CVE CVE-2026-54514 https://www.cve.org/CVERecord?id=CVE-2026-54514 Référence CVE CVE-2026-54515 https://www.cve.org/CVERecord?id=CVE-2026-54515 Référence CVE CVE-2026-54516 https://www.cve.org/CVERecord?id=CVE-2026-54516 Référence CVE CVE-2026-54517 https://www.cve.org/CVERecord?id=CVE-2026-54517 Référence CVE CVE-2026-54518 https://www.cve.org/CVERecord?id=CVE-2026-54518 Référence CVE CVE-2026-5588 https://www.cve.org/CVERecord?id=CVE-2026-5588 Référence CVE CVE-2026-5598 https://www.cve.org/CVERecord?id=CVE

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

d?id=CVE-2026-54274 Référence CVE CVE-2026-54275 https://www.cve.org/CVERecord?id=CVE-2026-54275 Référence CVE CVE-2026-54276 https://www.cve.org/CVERecord?id=CVE-2026-54276 Référence CVE CVE-2026-54277 https://www.cve.org/CVERecord?id=CVE-2026-54277 Référence CVE CVE-2026-54278 https://www.cve.org/CVERecord?id=CVE-2026-54278 Référence CVE CVE-2026-54279 https://www.cve.org/CVERecord?id=CVE-2026-54279 Référence CVE CVE-2026-54280 https://www.cve.org/CVERecord?id=CVE-2026-54280 Référence CVE CVE-2026-54282 https://www.cve.org/CVERecord?id=CVE-2026-54282 Référence CVE CVE-2026-54283 https://www.cve.org/CVERecord?id=CVE-2026-54283 Référence CVE CVE-2026-54512 https://www.cve.org/CVERecord?id=CVE-2026-54512 Référence CVE CVE-2026-54513 https://www.cve.org/CVERecord?id=CVE-2026-54513 Référence CVE CVE-2026-54514 https://www.cve.org/CVERecord?id=CVE-2026-54514 Référence CVE CVE-2026-54515 https://www.cve.org/CVERecord?id=CVE-2026-54515 Référence CVE CVE-2026-54516 https://www.cve.org/CVERecord?id=CVE-2026-54516 Référence CVE CVE-2026-54517 https://www.cve.org/CVERecord?id=CVE-2026-54517 Référence CVE CVE-2026-54518 https://www.cve.org/CVERecord?id=CVE-2026-54518 Référence CVE CVE-2026-54530 https://www.cve.org/CVERecord?id=CVE-2026-54530 Référence CVE CVE-2026-54531 https://www.cve.org/CVERecord?id=

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

ord?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=CVE-2026-47060 Référence CVE CVE-2026-47061 https://www.cve.org/CVERecord?id=CVE-2026-47061 Référence CVE CVE-2026-4738 https://www.cve.org/CVERecord?id=CVE-2026-4738 Référence CVE CVE-2026-54512 https://www.cve.org/CVERecord?id=CVE-2026-54512 Référence CVE CVE-2026-54513 https://www.cve.org/CVERecord?id=CVE-2026-54513 Référence CVE CVE-2026-54514 https://www.cve.org/CVERecord?id=CVE-2026-54514 Référence CVE CVE-2026-54515 https://www.cve.org/CVERecord?id=CVE-2026-54515 Référence CVE CVE-2026-54516 https://www.cve.org/CVERecord?id=CVE-2026-54516 Référence CVE CVE-2026-54517 https://www.cve.org/CVERecord?id=CVE-2026-54517 Référence CVE CVE-2026-54518 https://www.cve.org/CVERecord?id=CVE-2026-54518 Référence CVE CVE-2026-60175 https://www.cve.org/CVERecord?id=CVE-2026-60175 Référence CVE CVE-2026-61211 https://www.cve.org/CVERecord?id=

Official advisory
NCSC-NL · Dutch · NCSC-2026-0325Kwetsbaarheden verholpen in Atlassian producten

Multiple vulnerabilities in jackson-databind, including a PolymorphicTypeValidator bypass via nested generic type parameters, along with issues in Keycloak SAML assertion validation and Oracle Utilities Application Framework denial of service, have been addressed in recent updates.

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
jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 21 more
Fixed
jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 585 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 23 Jun 2026 · Last source change 24 Jun 2026, 15:22 UTC · CWE-184 · Incomplete List of Disallowed Inputs

CVE recordCVE.org · 5.2
CVSS sourceCNA
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-38595
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
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 23 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 580 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 21 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 585 more
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 24 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 563 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 23 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 580 more
    Red Hat Product Security
  3. Affected versionsThe structured affected or fixed version information changed.
    Before
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 27 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 551 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 24 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 563 more
    Red Hat Product Security
  4. Affected versionsThe structured affected or fixed version information changed.
    Before
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; and 28 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 549 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; jboss-eap-7/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 27 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 551 more
    Red Hat Product Security
  5. Affected versionsThe structured affected or fixed version information changed.
    Before
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; and 28 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 536 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; and 28 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 549 more
    Red Hat Product Security
  6. Affected versionsThe structured affected or fixed version information changed.
    Before
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; ocp-tools-4/jenkins-rhel8 as a component of OpenShift Developer Tools and Services; ocp-tools-4/jenkins-rhel9 as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 30 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 511 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk8-openshift-rhel8/eap74-els-openjdk8-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 7; and 28 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 536 more
    Red Hat Product Security
  7. Affected versionsThe structured affected or fixed version information changed.
    Before
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; ocp-tools-4/jenkins-rhel8 as a component of OpenShift Developer Tools and Services; ocp-tools-4/jenkins-rhel9 as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform 8; jackson-databind as a component of Red Hat JBoss Enterprise Application Platform Expansion Pack; and 24 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 511 more
    After
    jenkins-2-plugins.src as a component of OpenShift Developer Tools and Services; jenkins.src as a component of OpenShift Developer Tools and Services; ocp-tools-4/jenkins-rhel8 as a component of OpenShift Developer Tools and Services; ocp-tools-4/jenkins-rhel9 as a component of OpenShift Developer Tools and Services; openshift-serverless-1/kn-ekb-dispatcher-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-ekb-receiver-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-ddb-streams-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-s3-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sns-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-aws-sqs-source-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-log-sink-rhel9 as a component of OpenShift Serverless; openshift-serverless-1/kn-eventing-integrations-timer-source-rhel9 as a component of OpenShift Serverless; rhaii/vllm-gaudi-rhel9 as a component of Red Hat AI Inference Server; rhaiis/vllm-cuda-rhel9 as a component of Red Hat AI Inference Server; jackson-databind as a component of Red Hat AMQ Broker 7; jackson-databind as a component of Red Hat AMQ Clients; jackson-databind as a component of Red Hat build of Apache Camel - HawtIO 4; jackson-databind as a component of Red Hat build of Apache Camel 4 for Quarkus 3; jackson-databind as a component of Red Hat build of Apicurio Registry 3; jackson-databind as a component of Red Hat build of Debezium 3; jackson-databind as a component of Red Hat build of Quarkus; redhat-pki.src as a component of Red Hat Certificate System 11; jackson-databind-javadoc (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind.src (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; jackson-databind (pki-deps:10.6) as a component of Red Hat Enterprise Linux 8; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; eap74-els-openjdk11-openshift-rhel8/eap74-els-openjdk11-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; eap74-els-openjdk17-openshift-rhel8/eap74-els-openjdk17-openshift-rhel8 as a component of Red Hat JBoss Enterprise Application Platform 7; and 30 more · Fixed: jss-0:5.9.1-2.module+el8pki+24483+db4528cf.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; jss-debugsource-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; python3-redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-javadoc-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tomcat-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-jss-tools-debuginfo-0:5.9.1-2.module+el8pki+24483+db4528cf.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-ldapjdk-javadoc-0:5.6.0-3.module+el8pki+24228+5326976e.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.src (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-acme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-base-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ca-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-console-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-debugsource-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-est-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-java-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-javadoc-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-kra-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-ocsp-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-server-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-theme-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tks-0:11.9.2-4.module+el8pki+24565+7517ad63.noarch (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; redhat-pki-tools-0:11.9.2-4.module+el8pki+24565+7517ad63.x86_64 (redhat-pki:10) as a component of Red Hat Certificate System 10.8 for RHEL 8; and 511 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-54512 · cve.blacktree.nl