{"document":{"aggregate_severity":{"namespace":"https://www.suse.com/support/security/rating/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright 2024 SUSE LLC. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"summary","text":"SUSE CVE-2025-22058","title":"Title"},{"category":"description","text":"In the Linux kernel, the following vulnerability has been resolved:\n\nudp: Fix memory accounting leak.\n\nMatt Dowling reported a weird UDP memory usage issue.\n\nUnder normal operation, the UDP memory usage reported in /proc/net/sockstat\nremains close to zero.  However, it occasionally spiked to 524,288 pages\nand never dropped.  Moreover, the value doubled when the application was\nterminated.  Finally, it caused intermittent packet drops.\n\nWe can reproduce the issue with the script below [0]:\n\n  1. /proc/net/sockstat reports 0 pages\n\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 1 mem 0\n\n  2. Run the script till the report reaches 524,288\n\n    # python3 test.py & sleep 5\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 3 mem 524288  <-- (INT_MAX + 1) >> PAGE_SHIFT\n\n  3. Kill the socket and confirm the number never drops\n\n    # pkill python3 && sleep 5\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 1 mem 524288\n\n  4. (necessary since v6.0) Trigger proto_memory_pcpu_drain()\n\n    # python3 test.py & sleep 1 && pkill python3\n\n  5. The number doubles\n\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 1 mem 1048577\n\nThe application set INT_MAX to SO_RCVBUF, which triggered an integer\noverflow in udp_rmem_release().\n\nWhen a socket is close()d, udp_destruct_common() purges its receive\nqueue and sums up skb->truesize in the queue.  This total is calculated\nand stored in a local unsigned integer variable.\n\nThe total size is then passed to udp_rmem_release() to adjust memory\naccounting.  However, because the function takes a signed integer\nargument, the total size can wrap around, causing an overflow.\n\nThen, the released amount is calculated as follows:\n\n  1) Add size to sk->sk_forward_alloc.\n  2) Round down sk->sk_forward_alloc to the nearest lower multiple of\n      PAGE_SIZE and assign it to amount.\n  3) Subtract amount from sk->sk_forward_alloc.\n  4) Pass amount >> PAGE_SHIFT to __sk_mem_reduce_allocated().\n\nWhen the issue occurred, the total in udp_destruct_common() was 2147484480\n(INT_MAX + 833), which was cast to -2147482816 in udp_rmem_release().\n\nAt 1) sk->sk_forward_alloc is changed from 3264 to -2147479552, and\n2) sets -2147479552 to amount.  3) reverts the wraparound, so we don't\nsee a warning in inet_sock_destruct().  However, udp_memory_allocated\nends up doubling at 4).\n\nSince commit 3cd3399dd7a8 (\"net: implement per-cpu reserves for\nmemory_allocated\"), memory usage no longer doubles immediately after\na socket is close()d because __sk_mem_reduce_allocated() caches the\namount in udp_memory_per_cpu_fw_alloc.  However, the next time a UDP\nsocket receives a packet, the subtraction takes effect, causing UDP\nmemory usage to double.\n\nThis issue makes further memory allocation fail once the socket's\nsk->sk_rmem_alloc exceeds net.ipv4.udp_rmem_min, resulting in packet\ndrops.\n\nTo prevent this issue, let's use unsigned int for the calculation and\ncall sk_forward_alloc_add() only once for the small delta.\n\nNote that first_packet_length() also potentially has the same problem.\n\n[0]:\nfrom socket import *\n\nSO_RCVBUFFORCE = 33\nINT_MAX = (2 ** 31) - 1\n\ns = socket(AF_INET, SOCK_DGRAM)\ns.bind(('', 0))\ns.setsockopt(SOL_SOCKET, SO_RCVBUFFORCE, INT_MAX)\n\nc = socket(AF_INET, SOCK_DGRAM)\nc.connect(s.getsockname())\n\ndata = b'a' * 100\n\nwhile True:\n    c.send(data)","title":"Description of the CVE"},{"category":"legal_disclaimer","text":"CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).","title":"Terms of use"}],"publisher":{"category":"vendor","contact_details":"https://www.suse.com/support/security/contact/","name":"SUSE Product Security Team","namespace":"https://www.suse.com/"},"references":[{"category":"external","summary":"CVE-2025-22058","url":"https://www.suse.com/security/cve/CVE-2025-22058"},{"category":"external","summary":"SUSE Security Ratings","url":"https://www.suse.com/support/security/rating/"},{"category":"external","summary":"SUSE Bug 1241332 for CVE-2025-22058","url":"https://bugzilla.suse.com/1241332"},{"category":"external","summary":"Advisory link for RHSA-2025:14420","url":"https://lists.suse.com/pipermail/suse-liberty-linux-updates/2025-August/001940.html"},{"category":"external","summary":"Advisory link for RHSA-2025:14438","url":"https://lists.suse.com/pipermail/suse-liberty-linux-updates/2025-August/001933.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01614-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039292.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01707-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039343.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01919-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2025-June/021477.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01951-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/040285.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01964-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2025-June/021531.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01967-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2025-June/021533.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01972-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/040321.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01983-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/040323.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20343-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039431.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20344-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039430.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20354-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/039505.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20355-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/039504.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2026:20300-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2026-February/024190.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2026:20327-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2026-February/024168.html"}],"title":"SUSE CVE CVE-2025-22058","tracking":{"current_release_date":"2026-03-05T07:28:11Z","generator":{"date":"2025-04-18T01:23:53Z","engine":{"name":"cve-database.git:bin/generate-csaf-vex.pl","version":"1"}},"id":"CVE-2025-22058","initial_release_date":"2025-04-18T01:23:53Z","revision_history":[{"date":"2025-04-18T01:23:53Z","number":"2","summary":"Current version"},{"date":"2025-05-06T03:00:28Z","number":"3","summary":"Current version"},{"date":"2025-05-13T03:34:27Z","number":"4","summary":"Current version"},{"date":"2025-05-13T23:43:18Z","number":"5","summary":"Current version"},{"date":"2025-05-17T02:58:38Z","number":"6","summary":"Current version"},{"date":"2025-05-21T00:48:47Z","number":"7","summary":"Current version"},{"date":"2025-05-22T01:36:03Z","number":"8","summary":"Current version"},{"date":"2025-05-23T01:53:21Z","number":"9","summary":"Current version"},{"date":"2025-05-27T01:12:18Z","number":"10","summary":"Current version"},{"date":"2025-05-29T02:10:21Z","number":"11","summary":"Current version"},{"date":"2025-05-30T01:28:59Z","number":"12","summary":"Current version"},{"date":"2025-06-03T02:40:52Z","number":"13","summary":"Current version"},{"date":"2025-06-06T02:19:09Z","number":"14","summary":"Current version"},{"date":"2025-06-10T02:13:07Z","number":"15","summary":"Current version"},{"date":"2025-06-11T02:52:17Z","number":"16","summary":"Current version"},{"date":"2025-06-12T03:38:52Z","number":"17","summary":"Current version"},{"date":"2025-06-13T02:21:31Z","number":"18","summary":"Current version"},{"date":"2025-06-14T02:57:28Z","number":"19","summary":"Current version"},{"date":"2025-06-17T02:24:01Z","number":"20","summary":"Current version"},{"date":"2025-06-17T23:43:33Z","number":"21","summary":"Current version"},{"date":"2025-06-19T03:24:43Z","number":"22","summary":"Current version"},{"date":"2025-06-25T13:49:29Z","number":"23","summary":"Current version"},{"date":"2025-06-27T23:23:44Z","number":"24","summary":"Current version"},{"date":"2025-07-08T23:29:16Z","number":"25","summary":"Current version"},{"date":"2025-07-16T23:29:54Z","number":"26","summary":"Current version"},{"date":"2025-07-25T23:29:26Z","number":"27","summary":"Current version"},{"date":"2025-08-06T23:24:40Z","number":"28","summary":"Current version"},{"date":"2025-08-27T23:29:27Z","number":"29","summary":"Current version"},{"date":"2025-08-28T23:29:25Z","number":"30","summary":"Current version"},{"date":"2025-09-06T23:30:40Z","number":"31","summary":"Current version"},{"date":"2025-10-23T23:45:30Z","number":"32","summary":"Current version"},{"date":"2025-10-28T00:38:36Z","number":"33","summary":"Current version"},{"date":"2025-11-03T00:38:27Z","number":"34","summary":"Current version"},{"date":"2026-01-15T00:47:43Z","number":"35","summary":"unknown changes"},{"date":"2026-02-16T00:45:23Z","number":"36","summary":"references added"},{"date":"2026-03-05T07:28:11Z","number":"37","summary":"unknown changes"}],"status":"interim","version":"37"}},"product_tree":{"branches":[{"branches":[{"branches":[{"category":"product_name","name":"SLES-LTSS-TERADATA 15 SP2","product":{"name":"SLES-LTSS-TERADATA 15 SP2","product_id":"SLES-LTSS-TERADATA 15 SP2","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss-teradata:15:sp2"}}},{"category":"product_name","name":"SUSE Liberty Linux 8","product":{"name":"SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8","product_identification_helper":{"cpe":"cpe:/o:suse:sll:8"}}},{"category":"product_name","name":"SUSE Liberty Linux 9","product":{"name":"SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9","product_identification_helper":{"cpe":"cpe:/o:suse:sll:9"}}},{"category":"product_name","name":"SUSE Linux Enterprise Desktop 15 SP6","product":{"name":"SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sled:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Desktop 15 SP7","product":{"name":"SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sled:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Availability Extension 15 SP6","product":{"name":"SUSE Linux Enterprise High Availability Extension 15 SP6","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-ha:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Availability Extension 15 SP7","product":{"name":"SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-ha:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product":{"name":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp3"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product":{"name":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product":{"name":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_identification_helper":{"cpe":"cpe:/o:suse:sle_hpc-espos:15:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product":{"name":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sle_hpc-ltss:15:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Performance Computing 15 SP6","product":{"name":"SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle_hpc:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise High Performance Computing 15 SP7","product":{"name":"SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle_hpc:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Live Patching 12 SP5","product":{"name":"SUSE Linux Enterprise Live Patching 12 SP5","product_id":"SUSE Linux Enterprise Live Patching 12 SP5","product_identification_helper":{"cpe":"cpe:/o:suse:sle-live-patching:12:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Live Patching 15 SP3","product":{"name":"SUSE Linux Enterprise Live Patching 15 SP3","product_id":"SUSE Linux Enterprise Live Patching 15 SP3","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp3"}}},{"category":"product_name","name":"SUSE Linux Enterprise Live Patching 15 SP4","product":{"name":"SUSE Linux Enterprise Live Patching 15 SP4","product_id":"SUSE Linux Enterprise Live Patching 15 SP4","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Live Patching 15 SP5","product":{"name":"SUSE Linux Enterprise Live Patching 15 SP5","product_id":"SUSE Linux Enterprise Live Patching 15 SP5","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Live Patching 15 SP6","product":{"name":"SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Live Patching 15 SP7","product":{"name":"SUSE Linux Enterprise Live Patching 15 SP7","product_id":"SUSE Linux Enterprise Live Patching 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-live-patching:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Micro 5.0","product":{"name":"SUSE Linux Enterprise Micro 5.0","product_id":"SUSE Linux Enterprise Micro 5.0","product_identification_helper":{"cpe":"cpe:/o:suse:suse-microos:5.0"}}},{"category":"product_name","name":"SUSE Linux Enterprise Micro 5.1","product":{"name":"SUSE Linux Enterprise Micro 5.1","product_id":"SUSE Linux Enterprise Micro 5.1","product_identification_helper":{"cpe":"cpe:/o:suse:suse-microos:5.1"}}},{"category":"product_name","name":"SUSE Linux Enterprise Micro 5.2","product":{"name":"SUSE Linux Enterprise Micro 5.2","product_id":"SUSE Linux Enterprise Micro 5.2","product_identification_helper":{"cpe":"cpe:/o:suse:suse-microos:5.2"}}},{"category":"product_name","name":"SUSE Linux Enterprise Micro 5.3","product":{"name":"SUSE Linux Enterprise Micro 5.3","product_id":"SUSE Linux Enterprise Micro 5.3","product_identification_helper":{"cpe":"cpe:/o:suse:sle-micro:5.3"}}},{"category":"product_name","name":"SUSE Linux Enterprise Micro 5.4","product":{"name":"SUSE Linux Enterprise Micro 5.4","product_id":"SUSE Linux Enterprise Micro 5.4","product_identification_helper":{"cpe":"cpe:/o:suse:sle-micro:5.4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Micro 5.5","product":{"name":"SUSE Linux Enterprise Micro 5.5","product_id":"SUSE Linux Enterprise Micro 5.5","product_identification_helper":{"cpe":"cpe:/o:suse:sle-micro:5.5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Basesystem 15 SP6","product":{"name":"SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Basesystem 15 SP7","product":{"name":"SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-basesystem:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product":{"name":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-confidential-computing:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Development Tools 15 SP6","product":{"name":"SUSE Linux Enterprise Module for Development Tools 15 SP6","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Development Tools 15 SP7","product":{"name":"SUSE Linux Enterprise Module for Development Tools 15 SP7","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-development-tools:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Legacy 15 SP6","product":{"name":"SUSE Linux Enterprise Module for Legacy 15 SP6","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Legacy 15 SP7","product":{"name":"SUSE Linux Enterprise Module for Legacy 15 SP7","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-legacy:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Public Cloud 15 SP6","product":{"name":"SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Module for Public Cloud 15 SP7","product":{"name":"SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-public-cloud:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Real Time 15 SP6","product":{"name":"SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6"}},{"category":"product_name","name":"SUSE Linux Enterprise Real Time 15 SP7","product":{"name":"SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7"}},{"category":"product_name","name":"SUSE Linux Enterprise Server 11 SP4 LTSS","product":{"name":"SUSE Linux Enterprise Server 11 SP4 LTSS","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:suse_sles_ltss:11:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product":{"name":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product_identification_helper":{"cpe":"cpe:/o:suse:suse_sles_ltss-extreme-core:11:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 12 SP2-LTSS","product":{"name":"SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:12:sp2"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 12 SP4-LTSS","product":{"name":"SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:12:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 12 SP5-LTSS","product":{"name":"SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:12:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP1-LTSS","product":{"name":"SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:15:sp1"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP2-LTSS","product":{"name":"SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:15:sp2"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP3-LTSS","product":{"name":"SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:15:sp3"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP4-LTSS","product":{"name":"SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:15:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP5-LTSS","product":{"name":"SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:15:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP6","product":{"name":"SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15 SP7","product":{"name":"SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 15-LTSS","product":{"name":"SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss:15"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server 16.0","product":{"name":"SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0","product_identification_helper":{"cpe":"cpe:/o:suse:sles:16:16.0:server"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product":{"name":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_identification_helper":{"cpe":"cpe:/o:suse:sles-ltss-extended-security:12:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server Teradata 12 SP3","product":{"name":"SUSE Linux Enterprise Server Teradata 12 SP3","product_id":"SUSE Linux Enterprise Server Teradata 12 SP3","product_identification_helper":{"cpe":"cpe:/o:suse:sles_teradata:12:sp3"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server Teradata 15 SP4","product":{"name":"SUSE Linux Enterprise Server Teradata 15 SP4","product_id":"SUSE Linux Enterprise Server Teradata 15 SP4","product_identification_helper":{"cpe":"cpe:/o:suse:sles_teradata:15:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server for SAP Applications 15 SP3","product":{"name":"SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_identification_helper":{"cpe":"cpe:/o:suse:sles_sap:15:sp3"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server for SAP Applications 15 SP4","product":{"name":"SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_identification_helper":{"cpe":"cpe:/o:suse:sles_sap:15:sp4"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server for SAP Applications 15 SP5","product":{"name":"SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_identification_helper":{"cpe":"cpe:/o:suse:sles_sap:15:sp5"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server for SAP Applications 15 SP6","product":{"name":"SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sles_sap:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Server for SAP Applications 15 SP7","product":{"name":"SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sles_sap:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Enterprise Workstation Extension 15 SP6","product":{"name":"SUSE Linux Enterprise Workstation Extension 15 SP6","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-we:15:sp6"}}},{"category":"product_name","name":"SUSE Linux Enterprise Workstation Extension 15 SP7","product":{"name":"SUSE Linux Enterprise Workstation Extension 15 SP7","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-we:15:sp7"}}},{"category":"product_name","name":"SUSE Linux Micro 6.0","product":{"name":"SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0","product_identification_helper":{"cpe":"cpe:/o:suse:sl-micro:6.0"}}},{"category":"product_name","name":"SUSE Linux Micro 6.1","product":{"name":"SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1","product_identification_helper":{"cpe":"cpe:/o:suse:sl-micro:6.1"}}},{"category":"product_name","name":"SUSE Manager Proxy 4.3","product":{"name":"SUSE Manager Proxy 4.3","product_id":"SUSE Manager Proxy 4.3","product_identification_helper":{"cpe":"cpe:/o:suse:suse-manager-proxy:4.3"}}},{"category":"product_name","name":"SUSE Manager Retail Branch Server 4.3","product":{"name":"SUSE Manager Retail Branch Server 4.3","product_id":"SUSE Manager Retail Branch Server 4.3","product_identification_helper":{"cpe":"cpe:/o:suse:suse-manager-retail-branch-server:4.3"}}},{"category":"product_name","name":"SUSE Manager Server 4.3","product":{"name":"SUSE Manager Server 4.3","product_id":"SUSE Manager Server 4.3","product_identification_helper":{"cpe":"cpe:/o:suse:suse-manager-server:4.3"}}},{"category":"product_name","name":"SUSE Real Time Module 15 SP6","product":{"name":"SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-rt:15:sp6"}}},{"category":"product_name","name":"SUSE Real Time Module 15 SP7","product":{"name":"SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7","product_identification_helper":{"cpe":"cpe:/o:suse:sle-module-rt:15:sp7"}}},{"category":"product_name","name":"openSUSE Leap 15.6","product":{"name":"openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6","product_identification_helper":{"cpe":"cpe:/o:opensuse:leap:15.6"}}},{"category":"product_version","name":"bpftool-4.18.0-553.71.1.el8_10","product":{"name":"bpftool-4.18.0-553.71.1.el8_10","product_id":"bpftool-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/bpftool@4.18.0-553.71.1.el8_10?upstream=bpftool-4.18.0-553.71.1.el8_10.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-64kb-6.4.0-150600.23.50.1","product":{"name":"cluster-md-kmp-64kb-6.4.0-150600.23.50.1","product_id":"cluster-md-kmp-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-64kb@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-azure-6.4.0-150600.8.37.1","product":{"name":"cluster-md-kmp-azure-6.4.0-150600.8.37.1","product_id":"cluster-md-kmp-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-azure@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-default","product":{"name":"cluster-md-kmp-default","product_id":"cluster-md-kmp-default","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-default@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-default-4.12.14-122.261.1","product":{"name":"cluster-md-kmp-default-4.12.14-122.261.1","product_id":"cluster-md-kmp-default-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-default@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-default-6.4.0-150600.23.50.1","product":{"name":"cluster-md-kmp-default-6.4.0-150600.23.50.1","product_id":"cluster-md-kmp-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-default-6.4.0-150700.53.3.1","product":{"name":"cluster-md-kmp-default-6.4.0-150700.53.3.1","product_id":"cluster-md-kmp-default-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-default@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-rt-6.4.0-150600.10.39.1","product":{"name":"cluster-md-kmp-rt-6.4.0-150600.10.39.1","product_id":"cluster-md-kmp-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-rt@6.4.0-150600.10.39.1?upstream=kernel-source-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"cluster-md-kmp-rt-6.4.0-150700.7.3.1","product":{"name":"cluster-md-kmp-rt-6.4.0-150700.7.3.1","product_id":"cluster-md-kmp-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/cluster-md-kmp-rt@6.4.0-150700.7.3.1?upstream=kernel-source-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-64kb-6.4.0-150600.23.50.1","product":{"name":"dlm-kmp-64kb-6.4.0-150600.23.50.1","product_id":"dlm-kmp-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-64kb@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-azure-6.4.0-150600.8.37.1","product":{"name":"dlm-kmp-azure-6.4.0-150600.8.37.1","product_id":"dlm-kmp-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-azure@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-default","product":{"name":"dlm-kmp-default","product_id":"dlm-kmp-default","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-default@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-default-4.12.14-122.261.1","product":{"name":"dlm-kmp-default-4.12.14-122.261.1","product_id":"dlm-kmp-default-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-default@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-default-6.4.0-150600.23.50.1","product":{"name":"dlm-kmp-default-6.4.0-150600.23.50.1","product_id":"dlm-kmp-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-default-6.4.0-150700.53.3.1","product":{"name":"dlm-kmp-default-6.4.0-150700.53.3.1","product_id":"dlm-kmp-default-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-default@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-rt-6.4.0-150600.10.39.1","product":{"name":"dlm-kmp-rt-6.4.0-150600.10.39.1","product_id":"dlm-kmp-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-rt@6.4.0-150600.10.39.1?upstream=kernel-source-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"dlm-kmp-rt-6.4.0-150700.7.3.1","product":{"name":"dlm-kmp-rt-6.4.0-150700.7.3.1","product_id":"dlm-kmp-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dlm-kmp-rt@6.4.0-150700.7.3.1?upstream=kernel-source-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"dtb-allwinner-6.4.0-150600.23.50.1","product":{"name":"dtb-allwinner-6.4.0-150600.23.50.1","product_id":"dtb-allwinner-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-allwinner@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-altera-6.4.0-150600.23.50.1","product":{"name":"dtb-altera-6.4.0-150600.23.50.1","product_id":"dtb-altera-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-altera@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-amazon-6.4.0-150600.23.50.1","product":{"name":"dtb-amazon-6.4.0-150600.23.50.1","product_id":"dtb-amazon-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-amazon@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-amd-6.4.0-150600.23.50.1","product":{"name":"dtb-amd-6.4.0-150600.23.50.1","product_id":"dtb-amd-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-amd@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-amlogic-6.4.0-150600.23.50.1","product":{"name":"dtb-amlogic-6.4.0-150600.23.50.1","product_id":"dtb-amlogic-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-amlogic@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-apm-6.4.0-150600.23.50.1","product":{"name":"dtb-apm-6.4.0-150600.23.50.1","product_id":"dtb-apm-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-apm@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-apple-6.4.0-150600.23.50.1","product":{"name":"dtb-apple-6.4.0-150600.23.50.1","product_id":"dtb-apple-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-apple@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-arm-6.4.0-150600.23.50.1","product":{"name":"dtb-arm-6.4.0-150600.23.50.1","product_id":"dtb-arm-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-arm@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-broadcom-6.4.0-150600.23.50.1","product":{"name":"dtb-broadcom-6.4.0-150600.23.50.1","product_id":"dtb-broadcom-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-broadcom@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-cavium-6.4.0-150600.23.50.1","product":{"name":"dtb-cavium-6.4.0-150600.23.50.1","product_id":"dtb-cavium-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-cavium@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-exynos-6.4.0-150600.23.50.1","product":{"name":"dtb-exynos-6.4.0-150600.23.50.1","product_id":"dtb-exynos-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-exynos@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-freescale-6.4.0-150600.23.50.1","product":{"name":"dtb-freescale-6.4.0-150600.23.50.1","product_id":"dtb-freescale-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-freescale@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-hisilicon-6.4.0-150600.23.50.1","product":{"name":"dtb-hisilicon-6.4.0-150600.23.50.1","product_id":"dtb-hisilicon-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-hisilicon@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-lg-6.4.0-150600.23.50.1","product":{"name":"dtb-lg-6.4.0-150600.23.50.1","product_id":"dtb-lg-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-lg@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-marvell-6.4.0-150600.23.50.1","product":{"name":"dtb-marvell-6.4.0-150600.23.50.1","product_id":"dtb-marvell-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-marvell@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-mediatek-6.4.0-150600.23.50.1","product":{"name":"dtb-mediatek-6.4.0-150600.23.50.1","product_id":"dtb-mediatek-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-mediatek@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-nvidia-6.4.0-150600.23.50.1","product":{"name":"dtb-nvidia-6.4.0-150600.23.50.1","product_id":"dtb-nvidia-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-nvidia@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-qcom-6.4.0-150600.23.50.1","product":{"name":"dtb-qcom-6.4.0-150600.23.50.1","product_id":"dtb-qcom-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-qcom@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-renesas-6.4.0-150600.23.50.1","product":{"name":"dtb-renesas-6.4.0-150600.23.50.1","product_id":"dtb-renesas-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-renesas@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-rockchip-6.4.0-150600.23.50.1","product":{"name":"dtb-rockchip-6.4.0-150600.23.50.1","product_id":"dtb-rockchip-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-rockchip@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-socionext-6.4.0-150600.23.50.1","product":{"name":"dtb-socionext-6.4.0-150600.23.50.1","product_id":"dtb-socionext-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-socionext@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-sprd-6.4.0-150600.23.50.1","product":{"name":"dtb-sprd-6.4.0-150600.23.50.1","product_id":"dtb-sprd-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-sprd@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"dtb-xilinx-6.4.0-150600.23.50.1","product":{"name":"dtb-xilinx-6.4.0-150600.23.50.1","product_id":"dtb-xilinx-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/dtb-xilinx@6.4.0-150600.23.50.1?upstream=dtb-aarch64-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-64kb-6.4.0-150600.23.50.1","product":{"name":"gfs2-kmp-64kb-6.4.0-150600.23.50.1","product_id":"gfs2-kmp-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-64kb@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-azure-6.4.0-150600.8.37.1","product":{"name":"gfs2-kmp-azure-6.4.0-150600.8.37.1","product_id":"gfs2-kmp-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-azure@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-default","product":{"name":"gfs2-kmp-default","product_id":"gfs2-kmp-default","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-default@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-default-4.12.14-122.261.1","product":{"name":"gfs2-kmp-default-4.12.14-122.261.1","product_id":"gfs2-kmp-default-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-default@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-default-6.4.0-150600.23.50.1","product":{"name":"gfs2-kmp-default-6.4.0-150600.23.50.1","product_id":"gfs2-kmp-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-default-6.4.0-150700.53.3.1","product":{"name":"gfs2-kmp-default-6.4.0-150700.53.3.1","product_id":"gfs2-kmp-default-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-default@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-rt-6.4.0-150600.10.39.1","product":{"name":"gfs2-kmp-rt-6.4.0-150600.10.39.1","product_id":"gfs2-kmp-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-rt@6.4.0-150600.10.39.1?upstream=kernel-source-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"gfs2-kmp-rt-6.4.0-150700.7.3.1","product":{"name":"gfs2-kmp-rt-6.4.0-150700.7.3.1","product_id":"gfs2-kmp-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/gfs2-kmp-rt@6.4.0-150700.7.3.1?upstream=kernel-source-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-4.18.0-553.71.1.el8_10","product":{"name":"kernel-4.18.0-553.71.1.el8_10","product_id":"kernel-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-5.14.0-570.37.1.el9_6","product":{"name":"kernel-5.14.0-570.37.1.el9_6","product_id":"kernel-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-64kb-6.12.0-160000.5.1","product":{"name":"kernel-64kb-6.12.0-160000.5.1","product_id":"kernel-64kb-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-6.4.0-150600.23.50.1","product":{"name":"kernel-64kb-6.4.0-150600.23.50.1","product_id":"kernel-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-6.4.0-150700.53.3.1","product":{"name":"kernel-64kb-6.4.0-150700.53.3.1","product_id":"kernel-64kb-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-devel-6.12.0-160000.5.1","product":{"name":"kernel-64kb-devel-6.12.0-160000.5.1","product_id":"kernel-64kb-devel-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb-devel@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-devel-6.4.0-150600.23.50.1","product":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1","product_id":"kernel-64kb-devel-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb-devel@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-devel-6.4.0-150700.53.3.1","product":{"name":"kernel-64kb-devel-6.4.0-150700.53.3.1","product_id":"kernel-64kb-devel-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb-devel@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-extra-6.12.0-160000.5.1","product":{"name":"kernel-64kb-extra-6.12.0-160000.5.1","product_id":"kernel-64kb-extra-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb-extra@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-extra-6.4.0-150600.23.50.1","product":{"name":"kernel-64kb-extra-6.4.0-150600.23.50.1","product_id":"kernel-64kb-extra-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb-extra@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-64kb-optional-6.4.0-150600.23.50.1","product":{"name":"kernel-64kb-optional-6.4.0-150600.23.50.1","product_id":"kernel-64kb-optional-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-64kb-optional@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-abi-stablelists-4.18.0-553.71.1.el8_10","product":{"name":"kernel-abi-stablelists-4.18.0-553.71.1.el8_10","product_id":"kernel-abi-stablelists-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-abi-stablelists@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-abi-stablelists-5.14.0-570.37.1.el9_6","product":{"name":"kernel-abi-stablelists-5.14.0-570.37.1.el9_6","product_id":"kernel-abi-stablelists-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-abi-stablelists@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-azure-6.12.0-160000.2.2","product":{"name":"kernel-azure-6.12.0-160000.2.2","product_id":"kernel-azure-6.12.0-160000.2.2","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure@6.12.0-160000.2.2?upstream=kernel-source-6.12.0-160000.2.2.src.rpm"}}},{"category":"product_version","name":"kernel-azure-6.4.0-150600.8.37.1","product":{"name":"kernel-azure-6.4.0-150600.8.37.1","product_id":"kernel-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure@6.4.0-150600.8.37.1?upstream=kernel-source-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-azure-6.4.0-150700.20.3.1","product":{"name":"kernel-azure-6.4.0-150700.20.3.1","product_id":"kernel-azure-6.4.0-150700.20.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure@6.4.0-150700.20.3.1?upstream=kernel-source-6.4.0-150700.20.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-azure-devel-6.12.0-160000.2.2","product":{"name":"kernel-azure-devel-6.12.0-160000.2.2","product_id":"kernel-azure-devel-6.12.0-160000.2.2","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-devel@6.12.0-160000.2.2?upstream=kernel-source-6.12.0-160000.2.2.src.rpm"}}},{"category":"product_version","name":"kernel-azure-devel-6.4.0-150600.8.37.1","product":{"name":"kernel-azure-devel-6.4.0-150600.8.37.1","product_id":"kernel-azure-devel-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-devel@6.4.0-150600.8.37.1?upstream=kernel-source-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-azure-devel-6.4.0-150700.20.3.1","product":{"name":"kernel-azure-devel-6.4.0-150700.20.3.1","product_id":"kernel-azure-devel-6.4.0-150700.20.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-devel@6.4.0-150700.20.3.1?upstream=kernel-source-6.4.0-150700.20.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-azure-extra-6.12.0-160000.2.2","product":{"name":"kernel-azure-extra-6.12.0-160000.2.2","product_id":"kernel-azure-extra-6.12.0-160000.2.2","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-extra@6.12.0-160000.2.2?upstream=kernel-source-6.12.0-160000.2.2.src.rpm"}}},{"category":"product_version","name":"kernel-azure-extra-6.4.0-150600.8.37.1","product":{"name":"kernel-azure-extra-6.4.0-150600.8.37.1","product_id":"kernel-azure-extra-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-extra@6.4.0-150600.8.37.1?upstream=kernel-source-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-azure-optional-6.4.0-150600.8.37.1","product":{"name":"kernel-azure-optional-6.4.0-150600.8.37.1","product_id":"kernel-azure-optional-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-optional@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-azure-vdso-6.12.0-160000.2.2","product":{"name":"kernel-azure-vdso-6.12.0-160000.2.2","product_id":"kernel-azure-vdso-6.12.0-160000.2.2","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-vdso@6.12.0-160000.2.2?upstream=kernel-source-6.12.0-160000.2.2.src.rpm"}}},{"category":"product_version","name":"kernel-azure-vdso-6.4.0-150600.8.37.1","product":{"name":"kernel-azure-vdso-6.4.0-150600.8.37.1","product_id":"kernel-azure-vdso-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-azure-vdso@6.4.0-150600.8.37.1?upstream=kernel-source-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-coco-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-coco-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-coco-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-coco-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-coco-devel-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-coco_debug-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-core-4.18.0-553.71.1.el8_10","product":{"name":"kernel-core-4.18.0-553.71.1.el8_10","product_id":"kernel-core-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-core@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-core-5.14.0-570.37.1.el9_6","product_id":"kernel-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-cross-headers-4.18.0-553.71.1.el8_10","product":{"name":"kernel-cross-headers-4.18.0-553.71.1.el8_10","product_id":"kernel-cross-headers-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-cross-headers@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-cross-headers-5.14.0-570.37.1.el9_6","product":{"name":"kernel-cross-headers-5.14.0-570.37.1.el9_6","product_id":"kernel-cross-headers-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-cross-headers@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-4.18.0-553.71.1.el8_10","product":{"name":"kernel-debug-4.18.0-553.71.1.el8_10","product_id":"kernel-debug-4.18.0-553.71.1.el8_10","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:4.18.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug@4.18.0-553.71.1.el8_10?upstream=kernel-debug-4.18.0-553.71.1.el8_10.src.rpm"}}},{"category":"product_version","name":"kernel-debug-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-5.14.0-570.37.1.el9_6","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:5.14.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug@5.14.0-570.37.1.el9_6?upstream=kernel-debug-5.14.0-570.37.1.el9_6.src.rpm"}}},{"category":"product_version","name":"kernel-debug-6.4.0-150600.23.50.1","product":{"name":"kernel-debug-6.4.0-150600.23.50.1","product_id":"kernel-debug-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug@6.4.0-150600.23.50.1?upstream=kernel-debug-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-debug-core-4.18.0-553.71.1.el8_10","product":{"name":"kernel-debug-core-4.18.0-553.71.1.el8_10","product_id":"kernel-debug-core-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-core@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-debug-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-core-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-devel-4.18.0-553.71.1.el8_10","product":{"name":"kernel-debug-devel-4.18.0-553.71.1.el8_10","product_id":"kernel-debug-devel-4.18.0-553.71.1.el8_10","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:4.18.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug-devel@4.18.0-553.71.1.el8_10?upstream=kernel-debug-4.18.0-553.71.1.el8_10.src.rpm"}}},{"category":"product_version","name":"kernel-debug-devel-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-devel-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-devel-5.14.0-570.37.1.el9_6","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:5.14.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug-devel@5.14.0-570.37.1.el9_6?upstream=kernel-debug-5.14.0-570.37.1.el9_6.src.rpm"}}},{"category":"product_version","name":"kernel-debug-devel-6.4.0-150600.23.50.1","product":{"name":"kernel-debug-devel-6.4.0-150600.23.50.1","product_id":"kernel-debug-devel-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug-devel@6.4.0-150600.23.50.1?upstream=kernel-debug-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-devel-matched@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-modules-4.18.0-553.71.1.el8_10","product":{"name":"kernel-debug-modules-4.18.0-553.71.1.el8_10","product_id":"kernel-debug-modules-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-modules@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-debug-modules-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-modules-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-modules-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-modules@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-modules-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-modules-core-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-modules-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-modules-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","product":{"name":"kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","product_id":"kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-modules-extra@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-modules-extra@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","product":{"name":"kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","product_id":"kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-debug-uki-virt@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-debug-vdso-6.4.0-150600.23.50.1","product":{"name":"kernel-debug-vdso-6.4.0-150600.23.50.1","product_id":"kernel-debug-vdso-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-debug-vdso@6.4.0-150600.23.50.1?upstream=kernel-debug-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default","product":{"name":"kernel-default","product_id":"kernel-default","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-4.12.14-122.261.1","product":{"name":"kernel-default-4.12.14-122.261.1","product_id":"kernel-default-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-6.12.0-160000.5.1","product":{"name":"kernel-default-6.12.0-160000.5.1","product_id":"kernel-default-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default@6.12.0-160000.5.1?upstream=kernel-default-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-6.4.0-150600.23.50.1","product":{"name":"kernel-default-6.4.0-150600.23.50.1","product_id":"kernel-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-6.4.0-150700.53.3.1","product":{"name":"kernel-default-6.4.0-150700.53.3.1","product_id":"kernel-default-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-6.4.0-29.1","product":{"name":"kernel-default-6.4.0-29.1","product_id":"kernel-default-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default@6.4.0-29.1?upstream=kernel-default-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-base","product":{"name":"kernel-default-base","product_id":"kernel-default-base","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-base@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-base-4.12.14-122.261.1","product":{"name":"kernel-default-base-4.12.14-122.261.1","product_id":"kernel-default-base-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-base@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","product":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","product_id":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-base@6.4.0-150600.23.50.1.150600.12.22.1?upstream=kernel-default-6.4.0-150600.23.50.1.150600.12.22.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","product":{"name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","product_id":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-base@6.4.0-150700.53.3.1.150700.17.2.1?upstream=kernel-default-6.4.0-150700.53.3.1.150700.17.2.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-base-6.4.0-29.1.21.7","product":{"name":"kernel-default-base-6.4.0-29.1.21.7","product_id":"kernel-default-base-6.4.0-29.1.21.7","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-base@6.4.0-29.1.21.7?upstream=kernel-default-6.4.0-29.1.21.7.src.rpm"}}},{"category":"product_version","name":"kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","product":{"name":"kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","product_id":"kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-base-rebuild@6.4.0-150600.23.50.1.150600.12.22.1?upstream=kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-devel","product":{"name":"kernel-default-devel","product_id":"kernel-default-devel","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-devel@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-devel-4.12.14-122.261.1","product":{"name":"kernel-default-devel-4.12.14-122.261.1","product_id":"kernel-default-devel-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-devel@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-devel-6.12.0-160000.5.1","product":{"name":"kernel-default-devel-6.12.0-160000.5.1","product_id":"kernel-default-devel-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-devel@6.12.0-160000.5.1?upstream=kernel-default-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-devel-6.4.0-150600.23.50.1","product":{"name":"kernel-default-devel-6.4.0-150600.23.50.1","product_id":"kernel-default-devel-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-devel@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-devel-6.4.0-150700.53.3.1","product":{"name":"kernel-default-devel-6.4.0-150700.53.3.1","product_id":"kernel-default-devel-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-devel@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-devel-6.4.0-29.1","product":{"name":"kernel-default-devel-6.4.0-29.1","product_id":"kernel-default-devel-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-devel@6.4.0-29.1?upstream=kernel-default-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-extra","product":{"name":"kernel-default-extra","product_id":"kernel-default-extra","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-extra@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-extra-6.12.0-160000.5.1","product":{"name":"kernel-default-extra-6.12.0-160000.5.1","product_id":"kernel-default-extra-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-extra@6.12.0-160000.5.1?upstream=kernel-default-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-extra-6.4.0-150600.23.50.1","product":{"name":"kernel-default-extra-6.4.0-150600.23.50.1","product_id":"kernel-default-extra-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-extra@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-extra-6.4.0-150700.53.3.1","product":{"name":"kernel-default-extra-6.4.0-150700.53.3.1","product_id":"kernel-default-extra-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-extra@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-kgraft","product":{"name":"kernel-default-kgraft","product_id":"kernel-default-kgraft","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-kgraft@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-kgraft-devel","product":{"name":"kernel-default-kgraft-devel","product_id":"kernel-default-kgraft-devel","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-kgraft-devel@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-livepatch","product":{"name":"kernel-default-livepatch","product_id":"kernel-default-livepatch","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-livepatch@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-livepatch-6.12.0-160000.5.1","product":{"name":"kernel-default-livepatch-6.12.0-160000.5.1","product_id":"kernel-default-livepatch-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-livepatch@6.12.0-160000.5.1?upstream=kernel-default-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-livepatch-6.4.0-150600.23.50.1","product":{"name":"kernel-default-livepatch-6.4.0-150600.23.50.1","product_id":"kernel-default-livepatch-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-livepatch@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-livepatch-6.4.0-29.1","product":{"name":"kernel-default-livepatch-6.4.0-29.1","product_id":"kernel-default-livepatch-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-livepatch@6.4.0-29.1?upstream=kernel-default-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-livepatch-devel","product":{"name":"kernel-default-livepatch-devel","product_id":"kernel-default-livepatch-devel","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-livepatch-devel@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1","product":{"name":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1","product_id":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-livepatch-devel@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-man","product":{"name":"kernel-default-man","product_id":"kernel-default-man","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-man@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"kernel-default-man-4.12.14-122.261.1","product":{"name":"kernel-default-man-4.12.14-122.261.1","product_id":"kernel-default-man-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-man@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-optional-6.4.0-150600.23.50.1","product":{"name":"kernel-default-optional-6.4.0-150600.23.50.1","product_id":"kernel-default-optional-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-optional@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-vdso-6.12.0-160000.5.1","product":{"name":"kernel-default-vdso-6.12.0-160000.5.1","product_id":"kernel-default-vdso-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-vdso@6.12.0-160000.5.1?upstream=kernel-default-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-default-vdso-6.4.0-150600.23.50.1","product":{"name":"kernel-default-vdso-6.4.0-150600.23.50.1","product_id":"kernel-default-vdso-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-default-vdso@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel","product":{"name":"kernel-devel","product_id":"kernel-devel","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@?upstream=kernel-source.src.rpm"}}},{"category":"product_version","name":"kernel-devel-4.12.14-122.261.1","product":{"name":"kernel-devel-4.12.14-122.261.1","product_id":"kernel-devel-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@4.12.14-122.261.1?upstream=kernel-source-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-4.18.0-553.71.1.el8_10","product":{"name":"kernel-devel-4.18.0-553.71.1.el8_10","product_id":"kernel-devel-4.18.0-553.71.1.el8_10","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.18.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@4.18.0-553.71.1.el8_10?upstream=kernel-source-4.18.0-553.71.1.el8_10.src.rpm"}}},{"category":"product_version","name":"kernel-devel-5.14.0-570.37.1.el9_6","product":{"name":"kernel-devel-5.14.0-570.37.1.el9_6","product_id":"kernel-devel-5.14.0-570.37.1.el9_6","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:5.14.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@5.14.0-570.37.1.el9_6?upstream=kernel-source-5.14.0-570.37.1.el9_6.src.rpm"}}},{"category":"product_version","name":"kernel-devel-6.12.0-160000.5.1","product":{"name":"kernel-devel-6.12.0-160000.5.1","product_id":"kernel-devel-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-6.4.0-150600.23.50.1","product":{"name":"kernel-devel-6.4.0-150600.23.50.1","product_id":"kernel-devel-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-6.4.0-150700.53.3.1","product":{"name":"kernel-devel-6.4.0-150700.53.3.1","product_id":"kernel-devel-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-6.4.0-29.1","product":{"name":"kernel-devel-6.4.0-29.1","product_id":"kernel-devel-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel@6.4.0-29.1?upstream=kernel-source-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-azure","product":{"name":"kernel-devel-azure","product_id":"kernel-devel-azure","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-azure@?upstream=kernel-source-azure.src.rpm"}}},{"category":"product_version","name":"kernel-devel-azure-6.12.0-160000.2.2","product":{"name":"kernel-devel-azure-6.12.0-160000.2.2","product_id":"kernel-devel-azure-6.12.0-160000.2.2","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-azure@6.12.0-160000.2.2?upstream=kernel-source-azure-6.12.0-160000.2.2.src.rpm"}}},{"category":"product_version","name":"kernel-devel-azure-6.4.0-150600.8.37.1","product":{"name":"kernel-devel-azure-6.4.0-150600.8.37.1","product_id":"kernel-devel-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-azure@6.4.0-150600.8.37.1?upstream=kernel-source-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-azure-6.4.0-150700.20.3.1","product":{"name":"kernel-devel-azure-6.4.0-150700.20.3.1","product_id":"kernel-devel-azure-6.4.0-150700.20.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-azure@6.4.0-150700.20.3.1?upstream=kernel-source-azure-6.4.0-150700.20.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-devel-coco-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-devel-matched-5.14.0-570.37.1.el9_6","product":{"name":"kernel-devel-matched-5.14.0-570.37.1.el9_6","product_id":"kernel-devel-matched-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-devel-matched@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-devel-rt","product":{"name":"kernel-devel-rt","product_id":"kernel-devel-rt","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-rt@?upstream=kernel-source-rt.src.rpm"}}},{"category":"product_version","name":"kernel-devel-rt-6.4.0-150600.10.39.1","product":{"name":"kernel-devel-rt-6.4.0-150600.10.39.1","product_id":"kernel-devel-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-rt@6.4.0-150600.10.39.1?upstream=kernel-source-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-rt-6.4.0-150700.7.3.1","product":{"name":"kernel-devel-rt-6.4.0-150700.7.3.1","product_id":"kernel-devel-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-rt@6.4.0-150700.7.3.1?upstream=kernel-source-rt-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-devel-rt-6.4.0-31.1","product":{"name":"kernel-devel-rt-6.4.0-31.1","product_id":"kernel-devel-rt-6.4.0-31.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-devel-rt@6.4.0-31.1?upstream=kernel-source-rt-6.4.0-31.1.src.rpm"}}},{"category":"product_version","name":"kernel-doc-4.18.0-553.71.1.el8_10","product":{"name":"kernel-doc-4.18.0-553.71.1.el8_10","product_id":"kernel-doc-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-doc@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-doc-5.14.0-570.37.1.el9_6","product":{"name":"kernel-doc-5.14.0-570.37.1.el9_6","product_id":"kernel-doc-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-doc@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-docs-6.12.0-160000.5.1","product":{"name":"kernel-docs-6.12.0-160000.5.1","product_id":"kernel-docs-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-docs@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-docs-6.4.0-150600.23.50.1","product":{"name":"kernel-docs-6.4.0-150600.23.50.1","product_id":"kernel-docs-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-docs@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-docs-6.4.0-150700.53.3.1","product":{"name":"kernel-docs-6.4.0-150700.53.3.1","product_id":"kernel-docs-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-docs@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-docs-html-6.12.0-160000.5.1","product":{"name":"kernel-docs-html-6.12.0-160000.5.1","product_id":"kernel-docs-html-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-docs-html@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-docs-html-6.4.0-150600.23.50.1","product":{"name":"kernel-docs-html-6.4.0-150600.23.50.1","product_id":"kernel-docs-html-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-docs-html@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-headers-4.18.0-553.71.1.el8_10","product":{"name":"kernel-headers-4.18.0-553.71.1.el8_10","product_id":"kernel-headers-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-headers@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-headers-5.14.0-570.37.1.el9_6","product":{"name":"kernel-headers-5.14.0-570.37.1.el9_6","product_id":"kernel-headers-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-headers@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-kvmsmall-6.12.0-160000.5.1","product":{"name":"kernel-kvmsmall-6.12.0-160000.5.1","product_id":"kernel-kvmsmall-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-kvmsmall-6.4.0-150600.23.50.1","product":{"name":"kernel-kvmsmall-6.4.0-150600.23.50.1","product_id":"kernel-kvmsmall-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-kvmsmall-6.4.0-29.1","product":{"name":"kernel-kvmsmall-6.4.0-29.1","product_id":"kernel-kvmsmall-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall@6.4.0-29.1?upstream=kernel-source-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-kvmsmall-devel-6.12.0-160000.5.1","product":{"name":"kernel-kvmsmall-devel-6.12.0-160000.5.1","product_id":"kernel-kvmsmall-devel-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall-devel@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-kvmsmall-devel-6.4.0-150600.23.50.1","product":{"name":"kernel-kvmsmall-devel-6.4.0-150600.23.50.1","product_id":"kernel-kvmsmall-devel-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall-devel@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-kvmsmall-vdso-6.12.0-160000.5.1","product":{"name":"kernel-kvmsmall-vdso-6.12.0-160000.5.1","product_id":"kernel-kvmsmall-vdso-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall-vdso@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","product":{"name":"kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","product_id":"kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-kvmsmall-vdso@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","product":{"name":"kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","product_id":"kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-livepatch-6_4_0-150600_10_39-rt@1-150600.1.3.2?upstream=kernel-livepatch-SLE15-SP6-RT_Update_11-1-150600.1.3.2.src.rpm"}}},{"category":"product_version","name":"kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","product":{"name":"kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","product_id":"kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-livepatch-6_4_0-150600_23_50-default@1-150600.13.3.1?upstream=kernel-livepatch-SLE15-SP6_Update_11-1-150600.13.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","product":{"name":"kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","product_id":"kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-livepatch-6_4_0-150700_7_3-rt@1-150700.1.3.1?upstream=kernel-livepatch-SLE15-SP7-RT_Update_1-1-150700.1.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-livepatch-6_4_0-29-default-1-1.2","product":{"name":"kernel-livepatch-6_4_0-29-default-1-1.2","product_id":"kernel-livepatch-6_4_0-29-default-1-1.2","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-livepatch-6_4_0-29-default@1-1.2?upstream=kernel-livepatch-MICRO-6-0_Update_7-1-1.2.src.rpm"}}},{"category":"product_version","name":"kernel-livepatch-6_4_0-31-rt-1-1.2","product":{"name":"kernel-livepatch-6_4_0-31-rt-1-1.2","product_id":"kernel-livepatch-6_4_0-31-rt-1-1.2","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-livepatch-6_4_0-31-rt@1-1.2?upstream=kernel-livepatch-MICRO-6-0-RT_Update_8-1-1.2.src.rpm"}}},{"category":"product_version","name":"kernel-macros","product":{"name":"kernel-macros","product_id":"kernel-macros","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-macros@?upstream=kernel-source.src.rpm"}}},{"category":"product_version","name":"kernel-macros-4.12.14-122.261.1","product":{"name":"kernel-macros-4.12.14-122.261.1","product_id":"kernel-macros-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-macros@4.12.14-122.261.1?upstream=kernel-source-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-macros-6.12.0-160000.5.1","product":{"name":"kernel-macros-6.12.0-160000.5.1","product_id":"kernel-macros-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-macros@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-macros-6.4.0-150600.23.50.1","product":{"name":"kernel-macros-6.4.0-150600.23.50.1","product_id":"kernel-macros-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-macros@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-macros-6.4.0-150700.53.3.1","product":{"name":"kernel-macros-6.4.0-150700.53.3.1","product_id":"kernel-macros-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-macros@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-macros-6.4.0-29.1","product":{"name":"kernel-macros-6.4.0-29.1","product_id":"kernel-macros-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-macros@6.4.0-29.1?upstream=kernel-source-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-modules-4.18.0-553.71.1.el8_10","product":{"name":"kernel-modules-4.18.0-553.71.1.el8_10","product_id":"kernel-modules-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-modules@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-modules-5.14.0-570.37.1.el9_6","product":{"name":"kernel-modules-5.14.0-570.37.1.el9_6","product_id":"kernel-modules-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-modules@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-modules-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-modules-core-5.14.0-570.37.1.el9_6","product_id":"kernel-modules-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-modules-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-modules-extra-4.18.0-553.71.1.el8_10","product":{"name":"kernel-modules-extra-4.18.0-553.71.1.el8_10","product_id":"kernel-modules-extra-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-modules-extra@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-modules-extra-5.14.0-570.37.1.el9_6","product":{"name":"kernel-modules-extra-5.14.0-570.37.1.el9_6","product_id":"kernel-modules-extra-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-modules-extra@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-obs-build-6.4.0-150600.23.50.1","product":{"name":"kernel-obs-build-6.4.0-150600.23.50.1","product_id":"kernel-obs-build-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-obs-build@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-obs-build-6.4.0-150700.53.3.1","product":{"name":"kernel-obs-build-6.4.0-150700.53.3.1","product_id":"kernel-obs-build-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-obs-build@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-obs-qa-6.12.0-160000.5.1","product":{"name":"kernel-obs-qa-6.12.0-160000.5.1","product_id":"kernel-obs-qa-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-obs-qa@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-obs-qa-6.4.0-150600.23.50.1","product":{"name":"kernel-obs-qa-6.4.0-150600.23.50.1","product_id":"kernel-obs-qa-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-obs-qa@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt","product":{"name":"kernel-rt","product_id":"kernel-rt","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt@?upstream=kernel-rt.src.rpm"}}},{"category":"product_version","name":"kernel-rt-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-5.14.0-570.37.1.el9_6","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:5.14.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt@5.14.0-570.37.1.el9_6?upstream=kernel-rt-5.14.0-570.37.1.el9_6.src.rpm"}}},{"category":"product_version","name":"kernel-rt-6.4.0-150600.10.39.1","product":{"name":"kernel-rt-6.4.0-150600.10.39.1","product_id":"kernel-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt@6.4.0-150600.10.39.1?upstream=kernel-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-6.4.0-150700.7.3.1","product":{"name":"kernel-rt-6.4.0-150700.7.3.1","product_id":"kernel-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt@6.4.0-150700.7.3.1?upstream=kernel-rt-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-6.4.0-31.1","product":{"name":"kernel-rt-6.4.0-31.1","product_id":"kernel-rt-6.4.0-31.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt@6.4.0-31.1?upstream=kernel-rt-6.4.0-31.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-core-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-core-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug-devel@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug-kvm@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug-modules@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug-modules-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-debug-modules-extra@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-devel-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-devel-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-devel-5.14.0-570.37.1.el9_6","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:5.14.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-devel@5.14.0-570.37.1.el9_6?upstream=kernel-source-5.14.0-570.37.1.el9_6.src.rpm"}}},{"category":"product_version","name":"kernel-rt-devel-6.4.0-150600.10.39.1","product":{"name":"kernel-rt-devel-6.4.0-150600.10.39.1","product_id":"kernel-rt-devel-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-devel@6.4.0-150600.10.39.1?upstream=kernel-source-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-devel-6.4.0-150700.7.3.1","product":{"name":"kernel-rt-devel-6.4.0-150700.7.3.1","product_id":"kernel-rt-devel-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-devel@6.4.0-150700.7.3.1?upstream=kernel-source-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-devel-6.4.0-31.1","product":{"name":"kernel-rt-devel-6.4.0-31.1","product_id":"kernel-rt-devel-6.4.0-31.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-devel@6.4.0-31.1?upstream=kernel-source-6.4.0-31.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-extra-6.4.0-150600.10.39.1","product":{"name":"kernel-rt-extra-6.4.0-150600.10.39.1","product_id":"kernel-rt-extra-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-extra@6.4.0-150600.10.39.1?upstream=kernel-source-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-kvm-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-kvm-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-kvm-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-kvm@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-livepatch-6.4.0-31.1","product":{"name":"kernel-rt-livepatch-6.4.0-31.1","product_id":"kernel-rt-livepatch-6.4.0-31.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-livepatch@6.4.0-31.1?upstream=kernel-source-6.4.0-31.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","product":{"name":"kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","product_id":"kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-livepatch-devel@6.4.0-150600.10.39.1?upstream=kernel-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-modules-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-modules-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-modules-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-modules@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-modules-core-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-modules-core-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-modules-core-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-modules-core@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","product":{"name":"kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","product_id":"kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-rt-modules-extra@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-rt-optional-6.4.0-150600.10.39.1","product":{"name":"kernel-rt-optional-6.4.0-150600.10.39.1","product_id":"kernel-rt-optional-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-optional@6.4.0-150600.10.39.1?upstream=kernel-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt-vdso-6.4.0-150600.10.39.1","product":{"name":"kernel-rt-vdso-6.4.0-150600.10.39.1","product_id":"kernel-rt-vdso-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt-vdso@6.4.0-150600.10.39.1?upstream=kernel-source-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt_debug-6.4.0-150600.10.39.1","product":{"name":"kernel-rt_debug-6.4.0-150600.10.39.1","product_id":"kernel-rt_debug-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt_debug@6.4.0-150600.10.39.1?upstream=kernel-rt_debug-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt_debug-6.4.0-150700.7.3.1","product":{"name":"kernel-rt_debug-6.4.0-150700.7.3.1","product_id":"kernel-rt_debug-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt_debug@6.4.0-150700.7.3.1?upstream=kernel-rt_debug-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt_debug-devel-6.4.0-150600.10.39.1","product":{"name":"kernel-rt_debug-devel-6.4.0-150600.10.39.1","product_id":"kernel-rt_debug-devel-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt_debug-devel@6.4.0-150600.10.39.1?upstream=kernel-rt_debug-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt_debug-devel-6.4.0-150700.7.3.1","product":{"name":"kernel-rt_debug-devel-6.4.0-150700.7.3.1","product_id":"kernel-rt_debug-devel-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt_debug-devel@6.4.0-150700.7.3.1?upstream=kernel-rt_debug-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-rt_debug-vdso-6.4.0-150600.10.39.1","product":{"name":"kernel-rt_debug-vdso-6.4.0-150600.10.39.1","product_id":"kernel-rt_debug-vdso-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-rt_debug-vdso@6.4.0-150600.10.39.1?upstream=kernel-rt_debug-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-source","product":{"name":"kernel-source","product_id":"kernel-source","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source@?upstream=kernel-source.src.rpm"}}},{"category":"product_version","name":"kernel-source-4.12.14-122.261.1","product":{"name":"kernel-source-4.12.14-122.261.1","product_id":"kernel-source-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source@4.12.14-122.261.1?upstream=kernel-source-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-6.12.0-160000.5.1","product":{"name":"kernel-source-6.12.0-160000.5.1","product_id":"kernel-source-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-6.4.0-150600.23.50.1","product":{"name":"kernel-source-6.4.0-150600.23.50.1","product_id":"kernel-source-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-6.4.0-150700.53.3.1","product":{"name":"kernel-source-6.4.0-150700.53.3.1","product_id":"kernel-source-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-6.4.0-29.1","product":{"name":"kernel-source-6.4.0-29.1","product_id":"kernel-source-6.4.0-29.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source@6.4.0-29.1?upstream=kernel-source-6.4.0-29.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-azure","product":{"name":"kernel-source-azure","product_id":"kernel-source-azure","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-azure@?upstream=kernel-source-azure.src.rpm"}}},{"category":"product_version","name":"kernel-source-azure-6.12.0-160000.2.2","product":{"name":"kernel-source-azure-6.12.0-160000.2.2","product_id":"kernel-source-azure-6.12.0-160000.2.2","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-azure@6.12.0-160000.2.2?upstream=kernel-source-azure-6.12.0-160000.2.2.src.rpm"}}},{"category":"product_version","name":"kernel-source-azure-6.4.0-150600.8.37.1","product":{"name":"kernel-source-azure-6.4.0-150600.8.37.1","product_id":"kernel-source-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-azure@6.4.0-150600.8.37.1?upstream=kernel-source-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-azure-6.4.0-150700.20.3.1","product":{"name":"kernel-source-azure-6.4.0-150700.20.3.1","product_id":"kernel-source-azure-6.4.0-150700.20.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-azure@6.4.0-150700.20.3.1?upstream=kernel-source-azure-6.4.0-150700.20.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-coco-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-source-coco-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-source-coco-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-coco-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-source-rt","product":{"name":"kernel-source-rt","product_id":"kernel-source-rt","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-rt@?upstream=kernel-source-rt.src.rpm"}}},{"category":"product_version","name":"kernel-source-rt-6.4.0-150600.10.39.1","product":{"name":"kernel-source-rt-6.4.0-150600.10.39.1","product_id":"kernel-source-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-rt@6.4.0-150600.10.39.1?upstream=kernel-source-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-rt-6.4.0-150700.7.3.1","product":{"name":"kernel-source-rt-6.4.0-150700.7.3.1","product_id":"kernel-source-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-rt@6.4.0-150700.7.3.1?upstream=kernel-source-rt-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-rt-6.4.0-31.1","product":{"name":"kernel-source-rt-6.4.0-31.1","product_id":"kernel-source-rt-6.4.0-31.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-rt@6.4.0-31.1?upstream=kernel-source-rt-6.4.0-31.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-vanilla-6.12.0-160000.5.1","product":{"name":"kernel-source-vanilla-6.12.0-160000.5.1","product_id":"kernel-source-vanilla-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-vanilla@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-source-vanilla-6.4.0-150600.23.50.1","product":{"name":"kernel-source-vanilla-6.4.0-150600.23.50.1","product_id":"kernel-source-vanilla-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-source-vanilla@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-4.12.14-122.261.1","product":{"name":"kernel-syms-4.12.14-122.261.1","product_id":"kernel-syms-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms@4.12.14-122.261.1?upstream=kernel-source-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-6.12.0-160000.5.1","product":{"name":"kernel-syms-6.12.0-160000.5.1","product_id":"kernel-syms-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-6.4.0-150600.23.50.1","product":{"name":"kernel-syms-6.4.0-150600.23.50.1","product_id":"kernel-syms-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-6.4.0-150700.53.3.1","product":{"name":"kernel-syms-6.4.0-150700.53.3.1","product_id":"kernel-syms-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-azure-6.4.0-150600.8.37.1","product":{"name":"kernel-syms-azure-6.4.0-150600.8.37.1","product_id":"kernel-syms-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms-azure@6.4.0-150600.8.37.1?upstream=kernel-syms-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-azure-6.4.0-150700.20.3.1","product":{"name":"kernel-syms-azure-6.4.0-150700.20.3.1","product_id":"kernel-syms-azure-6.4.0-150700.20.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms-azure@6.4.0-150700.20.3.1?upstream=kernel-syms-azure-6.4.0-150700.20.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","product":{"name":"kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","product_id":"kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms-coco-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"kernel-syms-rt-6.4.0-150600.10.39.1","product":{"name":"kernel-syms-rt-6.4.0-150600.10.39.1","product_id":"kernel-syms-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms-rt@6.4.0-150600.10.39.1?upstream=kernel-syms-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"kernel-syms-rt-6.4.0-150700.7.3.1","product":{"name":"kernel-syms-rt-6.4.0-150700.7.3.1","product_id":"kernel-syms-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-syms-rt@6.4.0-150700.7.3.1?upstream=kernel-syms-rt-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"kernel-tools-4.18.0-553.71.1.el8_10","product":{"name":"kernel-tools-4.18.0-553.71.1.el8_10","product_id":"kernel-tools-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-tools@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-tools-5.14.0-570.37.1.el9_6","product":{"name":"kernel-tools-5.14.0-570.37.1.el9_6","product_id":"kernel-tools-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-tools@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-tools-libs-4.18.0-553.71.1.el8_10","product":{"name":"kernel-tools-libs-4.18.0-553.71.1.el8_10","product_id":"kernel-tools-libs-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-tools-libs@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-tools-libs-5.14.0-570.37.1.el9_6","product":{"name":"kernel-tools-libs-5.14.0-570.37.1.el9_6","product_id":"kernel-tools-libs-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-tools-libs@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","product":{"name":"kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","product_id":"kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-tools-libs-devel@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","product":{"name":"kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","product_id":"kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-tools-libs-devel@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-uki-virt-5.14.0-570.37.1.el9_6","product":{"name":"kernel-uki-virt-5.14.0-570.37.1.el9_6","product_id":"kernel-uki-virt-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-uki-virt@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","product":{"name":"kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","product_id":"kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/kernel-uki-virt-addons@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"kernel-zfcpdump-6.12.0-160000.5.1","product":{"name":"kernel-zfcpdump-6.12.0-160000.5.1","product_id":"kernel-zfcpdump-6.12.0-160000.5.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-zfcpdump@6.12.0-160000.5.1?upstream=kernel-source-6.12.0-160000.5.1.src.rpm"}}},{"category":"product_version","name":"kernel-zfcpdump-6.4.0-150600.23.50.1","product":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1","product_id":"kernel-zfcpdump-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-zfcpdump@6.4.0-150600.23.50.1?upstream=kernel-source-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kernel-zfcpdump-6.4.0-150700.53.3.1","product":{"name":"kernel-zfcpdump-6.4.0-150700.53.3.1","product_id":"kernel-zfcpdump-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:a:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kernel-zfcpdump@6.4.0-150700.53.3.1?upstream=kernel-source-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"kselftests-kmp-64kb-6.4.0-150600.23.50.1","product":{"name":"kselftests-kmp-64kb-6.4.0-150600.23.50.1","product_id":"kselftests-kmp-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kselftests-kmp-64kb@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kselftests-kmp-azure-6.4.0-150600.8.37.1","product":{"name":"kselftests-kmp-azure-6.4.0-150600.8.37.1","product_id":"kselftests-kmp-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kselftests-kmp-azure@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"kselftests-kmp-default-6.4.0-150600.23.50.1","product":{"name":"kselftests-kmp-default-6.4.0-150600.23.50.1","product_id":"kselftests-kmp-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kselftests-kmp-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"kselftests-kmp-rt-6.4.0-150600.10.39.1","product":{"name":"kselftests-kmp-rt-6.4.0-150600.10.39.1","product_id":"kselftests-kmp-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/kselftests-kmp-rt@6.4.0-150600.10.39.1?upstream=kernel-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"libperf-5.14.0-570.37.1.el9_6","product":{"name":"libperf-5.14.0-570.37.1.el9_6","product_id":"libperf-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/libperf@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"ocfs2-kmp-64kb-6.4.0-150600.23.50.1","product":{"name":"ocfs2-kmp-64kb-6.4.0-150600.23.50.1","product_id":"ocfs2-kmp-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-64kb@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-azure-6.4.0-150600.8.37.1","product":{"name":"ocfs2-kmp-azure-6.4.0-150600.8.37.1","product_id":"ocfs2-kmp-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-azure@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-default","product":{"name":"ocfs2-kmp-default","product_id":"ocfs2-kmp-default","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-default@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-default-4.12.14-122.261.1","product":{"name":"ocfs2-kmp-default-4.12.14-122.261.1","product_id":"ocfs2-kmp-default-4.12.14-122.261.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:4.12.14:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-default@4.12.14-122.261.1?upstream=kernel-default-4.12.14-122.261.1.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-default-6.4.0-150600.23.50.1","product":{"name":"ocfs2-kmp-default-6.4.0-150600.23.50.1","product_id":"ocfs2-kmp-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-default-6.4.0-150700.53.3.1","product":{"name":"ocfs2-kmp-default-6.4.0-150700.53.3.1","product_id":"ocfs2-kmp-default-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-default@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-rt-6.4.0-150600.10.39.1","product":{"name":"ocfs2-kmp-rt-6.4.0-150600.10.39.1","product_id":"ocfs2-kmp-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-rt@6.4.0-150600.10.39.1?upstream=kernel-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"ocfs2-kmp-rt-6.4.0-150700.7.3.1","product":{"name":"ocfs2-kmp-rt-6.4.0-150700.7.3.1","product_id":"ocfs2-kmp-rt-6.4.0-150700.7.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/ocfs2-kmp-rt@6.4.0-150700.7.3.1?upstream=kernel-rt-6.4.0-150700.7.3.1.src.rpm"}}},{"category":"product_version","name":"perf-4.18.0-553.71.1.el8_10","product":{"name":"perf-4.18.0-553.71.1.el8_10","product_id":"perf-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/perf@4.18.0-553.71.1.el8_10?upstream=perf-4.18.0-553.71.1.el8_10.src.rpm"}}},{"category":"product_version","name":"perf-5.14.0-570.37.1.el9_6","product":{"name":"perf-5.14.0-570.37.1.el9_6","product_id":"perf-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/perf@5.14.0-570.37.1.el9_6?upstream=perf-5.14.0-570.37.1.el9_6.src.rpm"}}},{"category":"product_version","name":"python3-perf-4.18.0-553.71.1.el8_10","product":{"name":"python3-perf-4.18.0-553.71.1.el8_10","product_id":"python3-perf-4.18.0-553.71.1.el8_10","product_identification_helper":{"purl":"pkg:rpm/suse/python3-perf@4.18.0-553.71.1.el8_10"}}},{"category":"product_version","name":"python3-perf-5.14.0-570.37.1.el9_6","product":{"name":"python3-perf-5.14.0-570.37.1.el9_6","product_id":"python3-perf-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/python3-perf@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"reiserfs-kmp-64kb-6.4.0-150600.23.50.1","product":{"name":"reiserfs-kmp-64kb-6.4.0-150600.23.50.1","product_id":"reiserfs-kmp-64kb-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/reiserfs-kmp-64kb@6.4.0-150600.23.50.1?upstream=kernel-64kb-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"reiserfs-kmp-azure-6.4.0-150600.8.37.1","product":{"name":"reiserfs-kmp-azure-6.4.0-150600.8.37.1","product_id":"reiserfs-kmp-azure-6.4.0-150600.8.37.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/reiserfs-kmp-azure@6.4.0-150600.8.37.1?upstream=kernel-azure-6.4.0-150600.8.37.1.src.rpm"}}},{"category":"product_version","name":"reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","product":{"name":"reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","product_id":"reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","product_identification_helper":{"purl":"pkg:rpm/suse/reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1@"}}},{"category":"product_version","name":"reiserfs-kmp-default","product":{"name":"reiserfs-kmp-default","product_id":"reiserfs-kmp-default","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/reiserfs-kmp-default@?upstream=kernel-default.src.rpm"}}},{"category":"product_version","name":"reiserfs-kmp-default-6.4.0-150600.23.50.1","product":{"name":"reiserfs-kmp-default-6.4.0-150600.23.50.1","product_id":"reiserfs-kmp-default-6.4.0-150600.23.50.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/reiserfs-kmp-default@6.4.0-150600.23.50.1?upstream=kernel-default-6.4.0-150600.23.50.1.src.rpm"}}},{"category":"product_version","name":"reiserfs-kmp-default-6.4.0-150700.53.3.1","product":{"name":"reiserfs-kmp-default-6.4.0-150700.53.3.1","product_id":"reiserfs-kmp-default-6.4.0-150700.53.3.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/reiserfs-kmp-default@6.4.0-150700.53.3.1?upstream=kernel-default-6.4.0-150700.53.3.1.src.rpm"}}},{"category":"product_version","name":"reiserfs-kmp-rt-6.4.0-150600.10.39.1","product":{"name":"reiserfs-kmp-rt-6.4.0-150600.10.39.1","product_id":"reiserfs-kmp-rt-6.4.0-150600.10.39.1","product_identification_helper":{"cpe":"cpe:2.3:o:linux:linux_kernel:6.4.0:*:*:*:*:*:*:*","purl":"pkg:rpm/suse/reiserfs-kmp-rt@6.4.0-150600.10.39.1?upstream=kernel-rt-6.4.0-150600.10.39.1.src.rpm"}}},{"category":"product_version","name":"rtla-5.14.0-570.37.1.el9_6","product":{"name":"rtla-5.14.0-570.37.1.el9_6","product_id":"rtla-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/rtla@5.14.0-570.37.1.el9_6"}}},{"category":"product_version","name":"rv-5.14.0-570.37.1.el9_6","product":{"name":"rv-5.14.0-570.37.1.el9_6","product_id":"rv-5.14.0-570.37.1.el9_6","product_identification_helper":{"purl":"pkg:rpm/suse/rv@5.14.0-570.37.1.el9_6"}}}],"category":"product_family","name":"SUSE Linux Enterprise"},{"branches":[{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP1 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp1-chost-byos-v20210304-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-amazon:suse-sles-15-sp1-chost-byos-v20210304-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP1 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp1-chost-byos-v20220127-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-amazon:suse-sles-15-sp1-chost-byos-v20220127-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP1 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp1-chost-byos-v20220715-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-amazon:suse-sles-15-sp1-chost-byos-v20220715-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP2 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp2-chost-byos-v20210610-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-amazon:suse-sles-15-sp2-chost-byos-v20210610-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP2 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp2-chost-byos-v20210722-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-amazon:suse-sles-15-sp2-chost-byos-v20210722-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP2 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp2-chost-byos-v20210913-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-amazon:suse-sles-15-sp2-chost-byos-v20210913-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP2 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp2-chost-byos-v20211025-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-amazon:suse-sles-15-sp2-chost-byos-v20211025-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP2 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp2-chost-byos-v20220126-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-amazon:suse-sles-15-sp2-chost-byos-v20220126-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP2 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp2-chost-byos-v20220718-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-amazon:suse-sles-15-sp2-chost-byos-v20220718-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20210729-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20210729-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20210827-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20210827-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20210927-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20210927-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20211004-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20211004-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20211101-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20211101-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20211202-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20211202-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220103-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220103-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220126-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220126-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220222-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220222-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220310-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220310-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220411-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220411-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220510-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220510-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220608-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220608-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220708-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220708-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220718-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220718-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220818-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220818-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220916-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220916-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20220921-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20220921-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20221019-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20221019-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20221119-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20221119-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20221215-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20221215-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20230313-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20230313-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20230613-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20230613-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20240807-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20240807-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP3 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp3-chost-byos-v20240912-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-amazon:suse-sles-15-sp3-chost-byos-v20240912-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20220718-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20220718-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20220721-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20220721-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20220819-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20220819-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20220916-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20220916-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20220923-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20220923-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20221018-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20221018-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20221118-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20221118-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20221215-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20221215-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230111-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230111-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230210-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230210-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230310-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230310-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230410-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230410-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230510-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230510-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230606-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230606-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230704-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230704-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230803-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230803-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230901-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230901-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20230928-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20230928-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20231027-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20231027-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20231127-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20231127-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20231212-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20231212-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20240312-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20240312-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20240612-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20240612-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20240809-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20240809-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20240912-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20240912-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20250721-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20250721-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP4 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp4-chost-byos-v20251022-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-amazon:suse-sles-15-sp4-chost-byos-v20251022-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20230704-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20230704-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20230816-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20230816-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20230915-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20230915-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20231013-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20231013-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20231113-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20231113-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20231213-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20231213-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240111-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240111-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240209-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240209-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240307-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240307-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240403-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240403-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240502-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240502-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240529-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240529-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240626-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240626-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240726-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240726-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240809-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240809-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240826-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240826-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20240912-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20240912-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20241011-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20241011-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20241112-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20241112-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20241216-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20241216-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20250122-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20250122-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20250212-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20250212-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20250512-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20250512-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Amazon EC2","product":{"name":"SLES 15 SP5 CHOST Images for Amazon EC2","product_id":"chost:amazon/suse-sles-15-sp5-chost-byos-v20251022-hvm-ssd-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-amazon:suse-sles-15-sp5-chost-byos-v20251022-hvm-ssd-x86_64"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Google","product":{"name":"SLES 15 SP1 CHOST Images for Google","product_id":"chost:google/sles-15-sp1-chost-byos-v20210202","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-google:sles-15-sp1-chost-byos-v20210202"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Google","product":{"name":"SLES 15 SP1 CHOST Images for Google","product_id":"chost:google/sles-15-sp1-chost-byos-v20210304","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-google:sles-15-sp1-chost-byos-v20210304"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Google","product":{"name":"SLES 15 SP1 CHOST Images for Google","product_id":"chost:google/sles-15-sp1-chost-byos-v20220127","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-google:sles-15-sp1-chost-byos-v20220127"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Google","product":{"name":"SLES 15 SP1 CHOST Images for Google","product_id":"chost:google/sles-15-sp1-chost-byos-v20220715-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-google:sles-15-sp1-chost-byos-v20220715-x86-64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210202","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210202"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210304","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210304"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210405","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210405"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210506","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210506"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210610","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210610"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210722","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210722"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20210913","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20210913"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20211025","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20211025"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20220126","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20220126"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Google","product":{"name":"SLES 15 SP2 CHOST Images for Google","product_id":"chost:google/sles-15-sp2-chost-byos-v20220718-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-google:sles-15-sp2-chost-byos-v20220718-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20210729","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20210729"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20210827","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20210827"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20210927","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20210927"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20211004","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20211004"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20211101","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20211101"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20211202","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20211202"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220103","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220103"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220126","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220126"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220222","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220222"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220310","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220310"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220411-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220411-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220510-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220510-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220608-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220608-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220708-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220708-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220718-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220718-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220818-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220818-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20220916-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20220916-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20221019-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20221019-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20221118-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20221118-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20221215-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20221215-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20230313-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20230313-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20230613-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20230613-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20240807-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20240807-x86-64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Google","product":{"name":"SLES 15 SP3 CHOST Images for Google","product_id":"chost:google/sles-15-sp3-chost-byos-v20240912-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-google:sles-15-sp3-chost-byos-v20240912-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20220718-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20220718-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20220721-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20220721-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20220818-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20220818-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20220916-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20220916-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20221018-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20221018-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20221118-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20221118-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20221215-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20221215-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20221215-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20221215-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230111-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230111-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230111-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230111-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230210-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230210-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230210-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230210-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230310-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230310-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230310-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230310-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230410-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230410-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230410-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230410-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230510-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230510-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230510-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230510-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230606-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230606-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230606-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230606-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230704-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230704-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230704-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230704-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230804-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230804-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230804-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230804-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230901-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230901-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230901-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230901-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230928-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230928-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20230928-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20230928-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20231027-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20231027-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20231027-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20231027-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20231127-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20231127-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20231127-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20231127-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20231212-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20231212-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20231212-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20231212-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240312-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240312-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240312-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240312-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240612-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240612-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240612-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240612-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240809-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240809-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240809-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240809-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240912-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240912-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20240912-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20240912-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20250721-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20250721-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20250721-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20250721-x86-64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20251022-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20251022-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Google","product":{"name":"SLES 15 SP4 CHOST Images for Google","product_id":"chost:google/sles-15-sp4-chost-byos-v20251022-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-google:sles-15-sp4-chost-byos-v20251022-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230704-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230704-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230704-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230704-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230718-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230718-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230719-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230719-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230816-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230816-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230816-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230816-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230915-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230915-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20230915-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20230915-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20231013-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20231013-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20231013-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20231013-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20231113-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20231113-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20231113-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20231113-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20231213-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20231213-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20231213-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20231213-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240111-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240111-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240111-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240111-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240209-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240209-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240209-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240209-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240307-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240307-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240307-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240307-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240403-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240403-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240403-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240403-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240502-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240502-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240502-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240502-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240529-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240529-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240529-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240529-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240626-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240626-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240626-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240626-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240726-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240726-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240726-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240726-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240809-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240809-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240809-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240809-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240826-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240826-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240826-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240826-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240912-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240912-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20240912-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20240912-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20241011-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20241011-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20241011-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20241011-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20241112-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20241112-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20241112-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20241112-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20241216-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20241216-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20241216-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20241216-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20250122-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20250122-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20250122-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20250122-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20250212-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20250212-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20250212-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20250212-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20250512-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20250512-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20250512-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20250512-x86-64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20251022-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20251022-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Google","product":{"name":"SLES 15 SP5 CHOST Images for Google","product_id":"chost:google/sles-15-sp5-chost-byos-v20251022-x86-64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-google:sles-15-sp5-chost-byos-v20251022-x86-64"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp1-chost-byos-v20210202","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-microsoft:suse-sles-15-sp1-chost-byos-v20210202"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp1-chost-byos-v20210304","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-microsoft:suse-sles-15-sp1-chost-byos-v20210304"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp1-chost-byos-v20220127","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-microsoft:suse-sles-15-sp1-chost-byos-v20220127"}}},{"category":"product_name","name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP1 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp1-chost-byos-v20220715-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp1:chost-microsoft:suse-sles-15-sp1-chost-byos-v20220715-x86_64"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210202","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210202"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210304","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210304"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210405","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210405"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210506","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210506"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210610","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210610"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210722","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210722"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20210913","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20210913"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20211025","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20211025"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20220126","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20220126"}}},{"category":"product_name","name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP2 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp2-chost-byos-v20220718-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp2:chost-microsoft:suse-sles-15-sp2-chost-byos-v20220718-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20210729","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20210729"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20210827","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20210827"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20210927","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20210927"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20211004","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20211004"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20211101","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20211101"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20211202","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20211202"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220103","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220103"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220126","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220126"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220222","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220222"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220310","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220310"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220411-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220411-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220510-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220510-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220609-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220609-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220708-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220708-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220718-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220718-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220818-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220818-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220916-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220916-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20220921-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20220921-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20221019-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20221019-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20221119-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20221119-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20221215-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20221215-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20230313-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20230313-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20230613-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20230613-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20240807-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20240807-x86_64"}}},{"category":"product_name","name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP3 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp3-chost-byos-v20240912-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp3:chost-microsoft:suse-sles-15-sp3-chost-byos-v20240912-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20220718-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20220718-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20220721-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20220721-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20220819-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20220819-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20220916-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20220916-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20220923-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20220923-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20221018-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20221018-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20221118-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20221118-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20221215-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20221215-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20221215-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20221215-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230111-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230111-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230111-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230111-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230210-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230210-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230210-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230210-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230310-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230310-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230310-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230310-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230410-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230410-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230410-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230410-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230510-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230510-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230510-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230510-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230606-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230606-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230606-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230606-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230704-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230704-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230704-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230704-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230803-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230803-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230803-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230803-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230901-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230901-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230901-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230901-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230928-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230928-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20230928-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20230928-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20231027-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20231027-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20231027-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20231027-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20231127-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20231127-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20231127-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20231127-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20231212-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20231212-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20231212-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20231212-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240312-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240312-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240312-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240312-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240612-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240612-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240612-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240612-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240809-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240809-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240809-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240809-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240912-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240912-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20240912-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20240912-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20250721-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20250721-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20250721-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20250721-x86_64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20251022-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20251022-arm64"}}},{"category":"product_name","name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP4 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp4-chost-byos-v20251022-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp4:chost-microsoft:suse-sles-15-sp4-chost-byos-v20251022-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230704-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230704-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230704-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230704-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230718-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230718-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230719-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230719-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230816-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230816-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230816-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230816-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230915-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230915-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20230915-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20230915-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20231013-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20231013-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20231013-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20231013-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20231113-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20231113-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20231113-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20231113-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20231213-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20231213-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20231213-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20231213-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240111-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240111-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240111-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240111-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240209-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240209-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240209-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240209-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240307-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240307-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240307-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240307-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240403-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240403-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240403-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240403-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240502-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240502-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240502-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240502-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240529-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240529-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240529-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240529-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240626-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240626-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240626-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240626-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240726-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240726-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240726-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240726-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240809-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240809-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240809-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240809-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240826-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240826-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240826-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240826-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240912-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240912-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20240912-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20240912-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20241011-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20241011-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20241011-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20241011-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20241112-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20241112-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20241112-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20241112-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20241216-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20241216-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20250122-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20250122-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20250122-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20250122-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20250212-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20250212-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20250212-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20250212-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20250512-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20250512-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20250512-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20250512-x86_64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20251022-arm64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20251022-arm64"}}},{"category":"product_name","name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product":{"name":"SLES 15 SP5 CHOST Images for Microsoft Azure","product_id":"chost:microsoft/suse-sles-15-sp5-chost-byos-v20251022-x86_64","product_identification_helper":{"cpe":"cpe:/o:suse:sles:15:sp5:chost-microsoft:suse-sles-15-sp5-chost-byos-v20251022-x86_64"}}}],"category":"product_family","name":"SUSE Linux Enterprise CHOST images"}],"category":"vendor","name":"SUSE"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"bpftool-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:bpftool-4.18.0-553.71.1.el8_10"},"product_reference":"bpftool-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-abi-stablelists-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-abi-stablelists-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-abi-stablelists-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-core-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-core-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-core-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-cross-headers-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-cross-headers-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-cross-headers-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-debug-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-debug-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-core-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-debug-core-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-debug-core-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-devel-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-debug-devel-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-debug-devel-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-modules-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-debug-modules-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-debug-modules-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-modules-extra-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-debug-modules-extra-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-devel-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-devel-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-doc-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-doc-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-doc-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-headers-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-headers-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-headers-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-modules-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-modules-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-modules-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-modules-extra-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-modules-extra-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-modules-extra-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-tools-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-tools-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-tools-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-tools-libs-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-tools-libs-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-tools-libs-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-tools-libs-devel-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:kernel-tools-libs-devel-4.18.0-553.71.1.el8_10"},"product_reference":"kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"perf-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:perf-4.18.0-553.71.1.el8_10"},"product_reference":"perf-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"python3-perf-4.18.0-553.71.1.el8_10 as component of SUSE Liberty Linux 8","product_id":"SUSE Liberty Linux 8:python3-perf-4.18.0-553.71.1.el8_10"},"product_reference":"python3-perf-4.18.0-553.71.1.el8_10","relates_to_product_reference":"SUSE Liberty Linux 8"},{"category":"default_component_of","full_product_name":{"name":"kernel-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-abi-stablelists-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-abi-stablelists-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-abi-stablelists-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-cross-headers-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-cross-headers-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-cross-headers-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-devel-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-devel-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-devel-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-devel-matched-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-devel-matched-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-modules-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-modules-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-modules-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-modules-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-modules-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-modules-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-modules-extra-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-modules-extra-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-uki-virt-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-debug-uki-virt-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-devel-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-devel-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-matched-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-devel-matched-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-devel-matched-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-doc-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-doc-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-doc-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-headers-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-headers-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-headers-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-modules-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-modules-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-modules-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-modules-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-modules-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-modules-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-modules-extra-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-modules-extra-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-modules-extra-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-devel-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-devel-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-modules-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-modules-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-devel-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-devel-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-kvm-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-kvm-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-kvm-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-modules-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-modules-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-modules-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-modules-core-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-modules-core-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-modules-core-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-modules-extra-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-rt-modules-extra-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-tools-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-tools-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-tools-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-tools-libs-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-tools-libs-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-tools-libs-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-tools-libs-devel-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-tools-libs-devel-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-uki-virt-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-uki-virt-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-uki-virt-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"kernel-uki-virt-addons-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:kernel-uki-virt-addons-5.14.0-570.37.1.el9_6"},"product_reference":"kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"libperf-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:libperf-5.14.0-570.37.1.el9_6"},"product_reference":"libperf-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"perf-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:perf-5.14.0-570.37.1.el9_6"},"product_reference":"perf-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"python3-perf-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:python3-perf-5.14.0-570.37.1.el9_6"},"product_reference":"python3-perf-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"rtla-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:rtla-5.14.0-570.37.1.el9_6"},"product_reference":"rtla-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"rv-5.14.0-570.37.1.el9_6 as component of SUSE Liberty Linux 9","product_id":"SUSE Liberty Linux 9:rv-5.14.0-570.37.1.el9_6"},"product_reference":"rv-5.14.0-570.37.1.el9_6","relates_to_product_reference":"SUSE Liberty Linux 9"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP6","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP6:cluster-md-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"cluster-md-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP6","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP6:dlm-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"dlm-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP6","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP6:gfs2-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"gfs2-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP6","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP6:ocfs2-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"ocfs2-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"cluster-md-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"dlm-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"gfs2-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"ocfs2-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-livepatch-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2 as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2"},"product_reference":"kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1 as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1"},"product_reference":"kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1 as component of SUSE Linux Enterprise Live Patching 15 SP7","product_id":"SUSE Linux Enterprise Live Patching 15 SP7:kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1"},"product_reference":"kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-64kb-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-default-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-macros-6.4.0-150600.23.50.1"},"product_reference":"kernel-macros-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1"},"product_reference":"kernel-zfcpdump-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-default-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-macros-6.4.0-150600.23.50.1"},"product_reference":"kernel-macros-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1"},"product_reference":"kernel-zfcpdump-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-macros-6.4.0-150600.23.50.1"},"product_reference":"kernel-macros-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1"},"product_reference":"kernel-zfcpdump-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-macros-6.4.0-150600.23.50.1"},"product_reference":"kernel-macros-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1"},"product_reference":"kernel-zfcpdump-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-macros-6.4.0-150600.23.50.1"},"product_reference":"kernel-macros-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP6","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1"},"product_reference":"kernel-zfcpdump-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-64kb-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-default-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1"},"product_reference":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-macros-6.4.0-150700.53.3.1"},"product_reference":"kernel-macros-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1"},"product_reference":"kernel-zfcpdump-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-default-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1"},"product_reference":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-macros-6.4.0-150700.53.3.1"},"product_reference":"kernel-macros-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1"},"product_reference":"kernel-zfcpdump-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1"},"product_reference":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-macros-6.4.0-150700.53.3.1"},"product_reference":"kernel-macros-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1"},"product_reference":"kernel-zfcpdump-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1"},"product_reference":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-macros-6.4.0-150700.53.3.1"},"product_reference":"kernel-macros-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1"},"product_reference":"kernel-zfcpdump-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-64kb-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1"},"product_reference":"kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-devel-6.4.0-150700.53.3.1"},"product_reference":"kernel-devel-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-macros-6.4.0-150700.53.3.1"},"product_reference":"kernel-macros-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Basesystem 15 SP7","product_id":"SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1"},"product_reference":"kernel-zfcpdump-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Basesystem 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-coco-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-coco-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-coco-devel-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-devel-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-coco_debug-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-coco-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-devel-coco-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-coco-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-source-coco-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-source-coco-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-coco-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-syms-coco-6.4.0-15061.21.coco15sp6.1"},"product_reference":"kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1 as component of SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6","product_id":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1"},"product_reference":"reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-docs-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-build-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-source-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-syms-6.4.0-150600.23.50.1"},"product_reference":"kernel-syms-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-docs-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-build-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-source-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-syms-6.4.0-150600.23.50.1"},"product_reference":"kernel-syms-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-docs-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-build-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-6.4.0-150600.23.50.1"},"product_reference":"kernel-syms-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-docs-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-build-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-6.4.0-150600.23.50.1"},"product_reference":"kernel-syms-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP6","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-docs-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP6","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-build-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP6","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-source-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP6","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-syms-6.4.0-150600.23.50.1"},"product_reference":"kernel-syms-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-docs-6.4.0-150700.53.3.1"},"product_reference":"kernel-docs-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1"},"product_reference":"kernel-obs-build-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-source-6.4.0-150700.53.3.1"},"product_reference":"kernel-source-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-syms-6.4.0-150700.53.3.1"},"product_reference":"kernel-syms-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-docs-6.4.0-150700.53.3.1"},"product_reference":"kernel-docs-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1"},"product_reference":"kernel-obs-build-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-source-6.4.0-150700.53.3.1"},"product_reference":"kernel-source-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-syms-6.4.0-150700.53.3.1"},"product_reference":"kernel-syms-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-docs-6.4.0-150700.53.3.1"},"product_reference":"kernel-docs-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1"},"product_reference":"kernel-obs-build-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-6.4.0-150700.53.3.1"},"product_reference":"kernel-source-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-6.4.0-150700.53.3.1"},"product_reference":"kernel-syms-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-docs-6.4.0-150700.53.3.1"},"product_reference":"kernel-docs-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1"},"product_reference":"kernel-obs-build-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-6.4.0-150700.53.3.1"},"product_reference":"kernel-source-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-6.4.0-150700.53.3.1"},"product_reference":"kernel-syms-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP7","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-docs-6.4.0-150700.53.3.1"},"product_reference":"kernel-docs-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP7","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1"},"product_reference":"kernel-obs-build-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP7","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-source-6.4.0-150700.53.3.1"},"product_reference":"kernel-source-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Development Tools 15 SP7","product_id":"SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-syms-6.4.0-150700.53.3.1"},"product_reference":"kernel-syms-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Development Tools 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Module for Legacy 15 SP6","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Legacy 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Module for Legacy 15 SP7","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Legacy 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-devel-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-devel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-source-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-syms-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-devel-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-devel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-source-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-syms-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-devel-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-devel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-source-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP6","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-syms-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-devel-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-devel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-source-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150600.8.37.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP6","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-syms-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-devel-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-devel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-source-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-syms-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-devel-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-devel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-source-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-syms-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-devel-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-devel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-source-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-syms-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1"},"product_reference":"kernel-azure-devel-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-devel-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-source-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150700.20.3.1 as component of SUSE Linux Enterprise Module for Public Cloud 15 SP7","product_id":"SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1"},"product_reference":"kernel-syms-azure-6.4.0-150700.20.3.1","relates_to_product_reference":"SUSE Linux Enterprise Module for Public Cloud 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:cluster-md-kmp-default-4.12.14-122.261.1"},"product_reference":"cluster-md-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:dlm-kmp-default-4.12.14-122.261.1"},"product_reference":"dlm-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:gfs2-kmp-default-4.12.14-122.261.1"},"product_reference":"gfs2-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-4.12.14-122.261.1"},"product_reference":"kernel-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-base-4.12.14-122.261.1"},"product_reference":"kernel-default-base-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-devel-4.12.14-122.261.1"},"product_reference":"kernel-default-devel-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-man-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-man-4.12.14-122.261.1"},"product_reference":"kernel-default-man-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel-4.12.14-122.261.1"},"product_reference":"kernel-devel-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-macros-4.12.14-122.261.1"},"product_reference":"kernel-macros-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source-4.12.14-122.261.1"},"product_reference":"kernel-source-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-syms-4.12.14-122.261.1"},"product_reference":"kernel-syms-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:ocfs2-kmp-default-4.12.14-122.261.1"},"product_reference":"ocfs2-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.5.1"},"product_reference":"kernel-64kb-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.5.1"},"product_reference":"kernel-64kb-devel-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-extra-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.5.1"},"product_reference":"kernel-64kb-extra-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.12.0-160000.2.2 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-azure-6.12.0-160000.2.2"},"product_reference":"kernel-azure-6.12.0-160000.2.2","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.12.0-160000.2.2 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-azure-devel-6.12.0-160000.2.2"},"product_reference":"kernel-azure-devel-6.12.0-160000.2.2","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-extra-6.12.0-160000.2.2 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-azure-extra-6.12.0-160000.2.2"},"product_reference":"kernel-azure-extra-6.12.0-160000.2.2","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-vdso-6.12.0-160000.2.2 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-azure-vdso-6.12.0-160000.2.2"},"product_reference":"kernel-azure-vdso-6.12.0-160000.2.2","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.5.1"},"product_reference":"kernel-default-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.5.1"},"product_reference":"kernel-default-devel-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.5.1"},"product_reference":"kernel-default-extra-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.5.1"},"product_reference":"kernel-default-livepatch-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-vdso-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.5.1"},"product_reference":"kernel-default-vdso-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.5.1"},"product_reference":"kernel-devel-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.12.0-160000.2.2 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-devel-azure-6.12.0-160000.2.2"},"product_reference":"kernel-devel-azure-6.12.0-160000.2.2","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.5.1"},"product_reference":"kernel-docs-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-html-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.5.1"},"product_reference":"kernel-docs-html-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.5.1"},"product_reference":"kernel-kvmsmall-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-devel-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.5.1"},"product_reference":"kernel-kvmsmall-devel-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-vdso-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.5.1"},"product_reference":"kernel-kvmsmall-vdso-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.5.1"},"product_reference":"kernel-macros-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-qa-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.5.1"},"product_reference":"kernel-obs-qa-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.5.1"},"product_reference":"kernel-source-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.12.0-160000.2.2 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-source-azure-6.12.0-160000.2.2"},"product_reference":"kernel-source-azure-6.12.0-160000.2.2","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-vanilla-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.5.1"},"product_reference":"kernel-source-vanilla-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.5.1"},"product_reference":"kernel-syms-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.12.0-160000.5.1 as component of SUSE Linux Enterprise Server 16.0","product_id":"SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.5.1"},"product_reference":"kernel-zfcpdump-6.12.0-160000.5.1","relates_to_product_reference":"SUSE Linux Enterprise Server 16.0"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:cluster-md-kmp-default-4.12.14-122.261.1"},"product_reference":"cluster-md-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:dlm-kmp-default-4.12.14-122.261.1"},"product_reference":"dlm-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:gfs2-kmp-default-4.12.14-122.261.1"},"product_reference":"gfs2-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-4.12.14-122.261.1"},"product_reference":"kernel-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-base-4.12.14-122.261.1"},"product_reference":"kernel-default-base-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-devel-4.12.14-122.261.1"},"product_reference":"kernel-default-devel-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-devel-4.12.14-122.261.1"},"product_reference":"kernel-devel-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-macros-4.12.14-122.261.1"},"product_reference":"kernel-macros-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-source-4.12.14-122.261.1"},"product_reference":"kernel-source-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-syms-4.12.14-122.261.1"},"product_reference":"kernel-syms-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default-4.12.14-122.261.1 as component of SUSE Linux Enterprise Server LTSS Extended Security 12 SP5","product_id":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:ocfs2-kmp-default-4.12.14-122.261.1"},"product_reference":"ocfs2-kmp-default-4.12.14-122.261.1","relates_to_product_reference":"SUSE Linux Enterprise Server LTSS Extended Security 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-extra-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-extra-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-extra-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150600.23.50.1 as component of SUSE Linux Enterprise Workstation Extension 15 SP6","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-extra-6.4.0-150600.23.50.1","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-extra-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-extra-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-extra-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150700.53.3.1 as component of SUSE Linux Enterprise Workstation Extension 15 SP7","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1"},"product_reference":"kernel-default-extra-6.4.0-150700.53.3.1","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-29.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-default-6.4.0-29.1"},"product_reference":"kernel-default-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-29.1.21.7 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-default-base-6.4.0-29.1.21.7"},"product_reference":"kernel-default-base-6.4.0-29.1.21.7","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-6.4.0-29.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-default-livepatch-6.4.0-29.1"},"product_reference":"kernel-default-livepatch-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-29.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-devel-6.4.0-29.1"},"product_reference":"kernel-devel-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-31.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-devel-rt-6.4.0-31.1"},"product_reference":"kernel-devel-rt-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-6.4.0-29.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-kvmsmall-6.4.0-29.1"},"product_reference":"kernel-kvmsmall-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-29-default-1-1.2 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-29-default-1-1.2"},"product_reference":"kernel-livepatch-6_4_0-29-default-1-1.2","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-31-rt-1-1.2 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-31-rt-1-1.2"},"product_reference":"kernel-livepatch-6_4_0-31-rt-1-1.2","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-29.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-macros-6.4.0-29.1"},"product_reference":"kernel-macros-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-31.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-rt-6.4.0-31.1"},"product_reference":"kernel-rt-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-livepatch-6.4.0-31.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-rt-livepatch-6.4.0-31.1"},"product_reference":"kernel-rt-livepatch-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-29.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-source-6.4.0-29.1"},"product_reference":"kernel-source-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-31.1 as component of SUSE Linux Micro 6.0","product_id":"SUSE Linux Micro 6.0:kernel-source-rt-6.4.0-31.1"},"product_reference":"kernel-source-rt-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-default-6.4.0-29.1"},"product_reference":"kernel-default-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-29.1.21.7 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-default-base-6.4.0-29.1.21.7"},"product_reference":"kernel-default-base-6.4.0-29.1.21.7","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-default-devel-6.4.0-29.1"},"product_reference":"kernel-default-devel-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-default-livepatch-6.4.0-29.1"},"product_reference":"kernel-default-livepatch-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-devel-6.4.0-29.1"},"product_reference":"kernel-devel-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-31.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-devel-rt-6.4.0-31.1"},"product_reference":"kernel-devel-rt-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-kvmsmall-6.4.0-29.1"},"product_reference":"kernel-kvmsmall-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-29-default-1-1.2 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-29-default-1-1.2"},"product_reference":"kernel-livepatch-6_4_0-29-default-1-1.2","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-livepatch-6_4_0-31-rt-1-1.2 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-31-rt-1-1.2"},"product_reference":"kernel-livepatch-6_4_0-31-rt-1-1.2","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-macros-6.4.0-29.1"},"product_reference":"kernel-macros-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-31.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-rt-6.4.0-31.1"},"product_reference":"kernel-rt-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-6.4.0-31.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-rt-devel-6.4.0-31.1"},"product_reference":"kernel-rt-devel-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-livepatch-6.4.0-31.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-rt-livepatch-6.4.0-31.1"},"product_reference":"kernel-rt-livepatch-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-29.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-source-6.4.0-29.1"},"product_reference":"kernel-source-6.4.0-29.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-31.1 as component of SUSE Linux Micro 6.1","product_id":"SUSE Linux Micro 6.1:kernel-source-rt-6.4.0-31.1"},"product_reference":"kernel-source-rt-6.4.0-31.1","relates_to_product_reference":"SUSE Linux Micro 6.1"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"cluster-md-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"dlm-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"gfs2-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-devel-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-devel-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-source-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-syms-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Linux Enterprise Real Time 15 SP6","product_id":"SUSE Linux Enterprise Real Time 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"ocfs2-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"cluster-md-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"dlm-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"gfs2-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-devel-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-devel-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-source-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-syms-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-rt-6.4.0-150600.10.39.1 as component of SUSE Real Time Module 15 SP6","product_id":"SUSE Real Time Module 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"ocfs2-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"SUSE Real Time Module 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"cluster-md-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"dlm-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"gfs2-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-devel-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt-devel-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt_debug-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-devel-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt_debug-devel-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-source-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-syms-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Linux Enterprise Real Time 15 SP7","product_id":"SUSE Linux Enterprise Real Time 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"ocfs2-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Linux Enterprise Real Time 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"cluster-md-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"dlm-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"gfs2-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-devel-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt-devel-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt_debug-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-devel-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1"},"product_reference":"kernel-rt_debug-devel-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-source-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1"},"product_reference":"kernel-syms-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-rt-6.4.0-150700.7.3.1 as component of SUSE Real Time Module 15 SP7","product_id":"SUSE Real Time Module 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1"},"product_reference":"ocfs2-kmp-rt-6.4.0-150700.7.3.1","relates_to_product_reference":"SUSE Real Time Module 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:cluster-md-kmp-64kb-6.4.0-150600.23.50.1"},"product_reference":"cluster-md-kmp-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:cluster-md-kmp-azure-6.4.0-150600.8.37.1"},"product_reference":"cluster-md-kmp-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:cluster-md-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"cluster-md-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:cluster-md-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"cluster-md-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dlm-kmp-64kb-6.4.0-150600.23.50.1"},"product_reference":"dlm-kmp-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dlm-kmp-azure-6.4.0-150600.8.37.1"},"product_reference":"dlm-kmp-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dlm-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"dlm-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dlm-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"dlm-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-allwinner-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-allwinner-6.4.0-150600.23.50.1"},"product_reference":"dtb-allwinner-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-altera-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-altera-6.4.0-150600.23.50.1"},"product_reference":"dtb-altera-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-amazon-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-amazon-6.4.0-150600.23.50.1"},"product_reference":"dtb-amazon-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-amd-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-amd-6.4.0-150600.23.50.1"},"product_reference":"dtb-amd-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-amlogic-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-amlogic-6.4.0-150600.23.50.1"},"product_reference":"dtb-amlogic-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-apm-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-apm-6.4.0-150600.23.50.1"},"product_reference":"dtb-apm-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-apple-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-apple-6.4.0-150600.23.50.1"},"product_reference":"dtb-apple-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-arm-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-arm-6.4.0-150600.23.50.1"},"product_reference":"dtb-arm-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-broadcom-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-broadcom-6.4.0-150600.23.50.1"},"product_reference":"dtb-broadcom-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-cavium-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-cavium-6.4.0-150600.23.50.1"},"product_reference":"dtb-cavium-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-exynos-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-exynos-6.4.0-150600.23.50.1"},"product_reference":"dtb-exynos-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-freescale-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-freescale-6.4.0-150600.23.50.1"},"product_reference":"dtb-freescale-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-hisilicon-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-hisilicon-6.4.0-150600.23.50.1"},"product_reference":"dtb-hisilicon-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-lg-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-lg-6.4.0-150600.23.50.1"},"product_reference":"dtb-lg-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-marvell-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-marvell-6.4.0-150600.23.50.1"},"product_reference":"dtb-marvell-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-mediatek-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-mediatek-6.4.0-150600.23.50.1"},"product_reference":"dtb-mediatek-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-nvidia-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-nvidia-6.4.0-150600.23.50.1"},"product_reference":"dtb-nvidia-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-qcom-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-qcom-6.4.0-150600.23.50.1"},"product_reference":"dtb-qcom-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-renesas-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-renesas-6.4.0-150600.23.50.1"},"product_reference":"dtb-renesas-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-rockchip-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-rockchip-6.4.0-150600.23.50.1"},"product_reference":"dtb-rockchip-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-socionext-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-socionext-6.4.0-150600.23.50.1"},"product_reference":"dtb-socionext-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-sprd-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-sprd-6.4.0-150600.23.50.1"},"product_reference":"dtb-sprd-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"dtb-xilinx-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:dtb-xilinx-6.4.0-150600.23.50.1"},"product_reference":"dtb-xilinx-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:gfs2-kmp-64kb-6.4.0-150600.23.50.1"},"product_reference":"gfs2-kmp-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:gfs2-kmp-azure-6.4.0-150600.8.37.1"},"product_reference":"gfs2-kmp-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:gfs2-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"gfs2-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:gfs2-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"gfs2-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-64kb-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-devel-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-64kb-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-extra-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-64kb-extra-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-extra-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-64kb-optional-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-64kb-optional-6.4.0-150600.23.50.1"},"product_reference":"kernel-64kb-optional-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-devel-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-azure-devel-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-devel-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-extra-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-azure-extra-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-extra-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-optional-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-azure-optional-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-optional-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-azure-vdso-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-azure-vdso-6.4.0-150600.8.37.1"},"product_reference":"kernel-azure-vdso-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-debug-6.4.0-150600.23.50.1"},"product_reference":"kernel-debug-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-devel-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-debug-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-debug-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-debug-vdso-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-debug-vdso-6.4.0-150600.23.50.1"},"product_reference":"kernel-debug-vdso-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1"},"product_reference":"kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-extra-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-extra-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-livepatch-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-livepatch-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-livepatch-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-optional-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-optional-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-optional-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-vdso-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-default-vdso-6.4.0-150600.23.50.1"},"product_reference":"kernel-default-vdso-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-devel-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-devel-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-devel-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-devel-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-docs-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-docs-html-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-docs-html-6.4.0-150600.23.50.1"},"product_reference":"kernel-docs-html-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-kvmsmall-6.4.0-150600.23.50.1"},"product_reference":"kernel-kvmsmall-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-devel-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-kvmsmall-devel-6.4.0-150600.23.50.1"},"product_reference":"kernel-kvmsmall-devel-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-kvmsmall-vdso-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-kvmsmall-vdso-6.4.0-150600.23.50.1"},"product_reference":"kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-macros-6.4.0-150600.23.50.1"},"product_reference":"kernel-macros-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-build-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-obs-build-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-build-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-obs-qa-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-obs-qa-6.4.0-150600.23.50.1"},"product_reference":"kernel-obs-qa-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-devel-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-extra-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt-extra-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-extra-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-livepatch-devel-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt-livepatch-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-optional-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt-optional-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-optional-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt-vdso-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt-vdso-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt-vdso-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt_debug-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-devel-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt_debug-devel-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-devel-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt_debug-vdso-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-rt_debug-vdso-6.4.0-150600.10.39.1"},"product_reference":"kernel-rt_debug-vdso-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-source-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-source-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-source-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-source-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-source-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-vanilla-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-source-vanilla-6.4.0-150600.23.50.1"},"product_reference":"kernel-source-vanilla-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-syms-6.4.0-150600.23.50.1"},"product_reference":"kernel-syms-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-syms-azure-6.4.0-150600.8.37.1"},"product_reference":"kernel-syms-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-syms-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-syms-rt-6.4.0-150600.10.39.1"},"product_reference":"kernel-syms-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-zfcpdump-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kernel-zfcpdump-6.4.0-150600.23.50.1"},"product_reference":"kernel-zfcpdump-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kselftests-kmp-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kselftests-kmp-64kb-6.4.0-150600.23.50.1"},"product_reference":"kselftests-kmp-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kselftests-kmp-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kselftests-kmp-azure-6.4.0-150600.8.37.1"},"product_reference":"kselftests-kmp-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kselftests-kmp-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kselftests-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"kselftests-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kselftests-kmp-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:kselftests-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"kselftests-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:ocfs2-kmp-64kb-6.4.0-150600.23.50.1"},"product_reference":"ocfs2-kmp-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:ocfs2-kmp-azure-6.4.0-150600.8.37.1"},"product_reference":"ocfs2-kmp-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:ocfs2-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"ocfs2-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:ocfs2-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"ocfs2-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-64kb-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:reiserfs-kmp-64kb-6.4.0-150600.23.50.1"},"product_reference":"reiserfs-kmp-64kb-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-azure-6.4.0-150600.8.37.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:reiserfs-kmp-azure-6.4.0-150600.8.37.1"},"product_reference":"reiserfs-kmp-azure-6.4.0-150600.8.37.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default-6.4.0-150600.23.50.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:reiserfs-kmp-default-6.4.0-150600.23.50.1"},"product_reference":"reiserfs-kmp-default-6.4.0-150600.23.50.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-rt-6.4.0-150600.10.39.1 as component of openSUSE Leap 15.6","product_id":"openSUSE Leap 15.6:reiserfs-kmp-rt-6.4.0-150600.10.39.1"},"product_reference":"reiserfs-kmp-rt-6.4.0-150600.10.39.1","relates_to_product_reference":"openSUSE Leap 15.6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SLES-LTSS-TERADATA 15 SP2","product_id":"SLES-LTSS-TERADATA 15 SP2:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SLES-LTSS-TERADATA 15 SP2"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SLES-LTSS-TERADATA 15 SP2","product_id":"SLES-LTSS-TERADATA 15 SP2:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SLES-LTSS-TERADATA 15 SP2"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default"},"product_reference":"cluster-md-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default"},"product_reference":"dlm-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default"},"product_reference":"gfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default"},"product_reference":"ocfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise High Availability Extension 15 SP7","product_id":"SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise High Availability Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:cluster-md-kmp-default"},"product_reference":"cluster-md-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:dlm-kmp-default"},"product_reference":"dlm-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:gfs2-kmp-default"},"product_reference":"gfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:ocfs2-kmp-default"},"product_reference":"ocfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:cluster-md-kmp-default"},"product_reference":"cluster-md-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:dlm-kmp-default"},"product_reference":"dlm-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:gfs2-kmp-default"},"product_reference":"gfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:ocfs2-kmp-default"},"product_reference":"ocfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-kgraft as component of SUSE Linux Enterprise Live Patching 12 SP5","product_id":"SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft"},"product_reference":"kernel-default-kgraft","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-kgraft-devel as component of SUSE Linux Enterprise Live Patching 12 SP5","product_id":"SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft-devel"},"product_reference":"kernel-default-kgraft-devel","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Live Patching 12 SP5","product_id":"SUSE Linux Enterprise Live Patching 12 SP5:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Live Patching 12 SP5","product_id":"SUSE Linux Enterprise Live Patching 12 SP5:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 12 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch as component of SUSE Linux Enterprise Live Patching 15 SP3","product_id":"SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch"},"product_reference":"kernel-default-livepatch","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel as component of SUSE Linux Enterprise Live Patching 15 SP3","product_id":"SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch-devel"},"product_reference":"kernel-default-livepatch-devel","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Live Patching 15 SP3","product_id":"SUSE Linux Enterprise Live Patching 15 SP3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Live Patching 15 SP3","product_id":"SUSE Linux Enterprise Live Patching 15 SP3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch as component of SUSE Linux Enterprise Live Patching 15 SP4","product_id":"SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch"},"product_reference":"kernel-default-livepatch","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel as component of SUSE Linux Enterprise Live Patching 15 SP4","product_id":"SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch-devel"},"product_reference":"kernel-default-livepatch-devel","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Live Patching 15 SP4","product_id":"SUSE Linux Enterprise Live Patching 15 SP4:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Live Patching 15 SP4","product_id":"SUSE Linux Enterprise Live Patching 15 SP4:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch as component of SUSE Linux Enterprise Live Patching 15 SP5","product_id":"SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch"},"product_reference":"kernel-default-livepatch","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel as component of SUSE Linux Enterprise Live Patching 15 SP5","product_id":"SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch-devel"},"product_reference":"kernel-default-livepatch-devel","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Live Patching 15 SP5","product_id":"SUSE Linux Enterprise Live Patching 15 SP5:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Live Patching 15 SP5","product_id":"SUSE Linux Enterprise Live Patching 15 SP5:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch"},"product_reference":"kernel-default-livepatch","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel"},"product_reference":"kernel-default-livepatch-devel","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Live Patching 15 SP6","product_id":"SUSE Linux Enterprise Live Patching 15 SP6:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch as component of SUSE Linux Enterprise Live Patching 15 SP7","product_id":"SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch"},"product_reference":"kernel-default-livepatch","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-livepatch-devel as component of SUSE Linux Enterprise Live Patching 15 SP7","product_id":"SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch-devel"},"product_reference":"kernel-default-livepatch-devel","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Live Patching 15 SP7","product_id":"SUSE Linux Enterprise Live Patching 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Live Patching 15 SP7","product_id":"SUSE Linux Enterprise Live Patching 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Live Patching 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Micro 5.0","product_id":"SUSE Linux Enterprise Micro 5.0:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.0"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Micro 5.1","product_id":"SUSE Linux Enterprise Micro 5.1:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt as component of SUSE Linux Enterprise Micro 5.1","product_id":"SUSE Linux Enterprise Micro 5.1:kernel-rt"},"product_reference":"kernel-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Micro 5.1","product_id":"SUSE Linux Enterprise Micro 5.1:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt as component of SUSE Linux Enterprise Micro 5.1","product_id":"SUSE Linux Enterprise Micro 5.1:kernel-source-rt"},"product_reference":"kernel-source-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.1"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Micro 5.2","product_id":"SUSE Linux Enterprise Micro 5.2:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.2"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt as component of SUSE Linux Enterprise Micro 5.2","product_id":"SUSE Linux Enterprise Micro 5.2:kernel-rt"},"product_reference":"kernel-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.2"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Micro 5.2","product_id":"SUSE Linux Enterprise Micro 5.2:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.2"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt as component of SUSE Linux Enterprise Micro 5.2","product_id":"SUSE Linux Enterprise Micro 5.2:kernel-source-rt"},"product_reference":"kernel-source-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.2"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Micro 5.3","product_id":"SUSE Linux Enterprise Micro 5.3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt as component of SUSE Linux Enterprise Micro 5.3","product_id":"SUSE Linux Enterprise Micro 5.3:kernel-rt"},"product_reference":"kernel-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Micro 5.3","product_id":"SUSE Linux Enterprise Micro 5.3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt as component of SUSE Linux Enterprise Micro 5.3","product_id":"SUSE Linux Enterprise Micro 5.3:kernel-source-rt"},"product_reference":"kernel-source-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Micro 5.4","product_id":"SUSE Linux Enterprise Micro 5.4:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.4"},{"category":"default_component_of","full_product_name":{"name":"kernel-rt as component of SUSE Linux Enterprise Micro 5.4","product_id":"SUSE Linux Enterprise Micro 5.4:kernel-rt"},"product_reference":"kernel-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.4"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Micro 5.4","product_id":"SUSE Linux Enterprise Micro 5.4:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.4"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt as component of SUSE Linux Enterprise Micro 5.4","product_id":"SUSE Linux Enterprise Micro 5.4:kernel-source-rt"},"product_reference":"kernel-source-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.4"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Micro 5.5","product_id":"SUSE Linux Enterprise Micro 5.5:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.5"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Micro 5.5","product_id":"SUSE Linux Enterprise Micro 5.5:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.5"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Micro 5.5","product_id":"SUSE Linux Enterprise Micro 5.5:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.5"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-rt as component of SUSE Linux Enterprise Micro 5.5","product_id":"SUSE Linux Enterprise Micro 5.5:kernel-devel-rt"},"product_reference":"kernel-devel-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.5"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-rt as component of SUSE Linux Enterprise Micro 5.5","product_id":"SUSE Linux Enterprise Micro 5.5:kernel-source-rt"},"product_reference":"kernel-source-rt","relates_to_product_reference":"SUSE Linux Enterprise Micro 5.5"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Module for Legacy 15 SP7","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Module for Legacy 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Module for Legacy 15 SP7","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Module for Legacy 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise High Performance Computing 15 SP7","product_id":"SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise High Performance Computing 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Module for Legacy 15 SP7","product_id":"SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Module for Legacy 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 11 SP4 LTSS","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 11 SP4 LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 11 SP4 LTSS","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 11 SP4 LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base as component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-base"},"product_reference":"kernel-default-base","relates_to_product_reference":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE","product_id":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-base"},"product_reference":"kernel-default-base","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-man as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-man"},"product_reference":"kernel-default-man","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 12 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-base"},"product_reference":"kernel-default-base","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-man as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-man"},"product_reference":"kernel-default-man","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 12 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel-azure as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel-azure"},"product_reference":"kernel-devel-azure","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source-azure as component of SUSE Linux Enterprise Server 12 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source-azure"},"product_reference":"kernel-source-azure","relates_to_product_reference":"SUSE Linux Enterprise Server 12 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-base"},"product_reference":"kernel-default-base","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-man as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-man"},"product_reference":"kernel-default-man","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP1-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP1-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP2-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP2-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP3-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP3-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP4-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP4-LTSS"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:cluster-md-kmp-default"},"product_reference":"cluster-md-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:dlm-kmp-default"},"product_reference":"dlm-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:gfs2-kmp-default"},"product_reference":"gfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:ocfs2-kmp-default"},"product_reference":"ocfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP5-LTSS","product_id":"SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP5-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-base as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-default-base"},"product_reference":"kernel-default-base","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-man as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-default-man"},"product_reference":"kernel-default-man","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15-LTSS","product_id":"SUSE Linux Enterprise Server 15-LTSS:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15-LTSS"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server Teradata 12 SP3","product_id":"SUSE Linux Enterprise Server Teradata 12 SP3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server Teradata 12 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server Teradata 12 SP3","product_id":"SUSE Linux Enterprise Server Teradata 12 SP3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server Teradata 12 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server Teradata 15 SP4","product_id":"SUSE Linux Enterprise Server Teradata 15 SP4:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server Teradata 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server Teradata 15 SP4","product_id":"SUSE Linux Enterprise Server Teradata 15 SP4:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server Teradata 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server for SAP Applications 15 SP4","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP4"},{"category":"default_component_of","full_product_name":{"name":"cluster-md-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:cluster-md-kmp-default"},"product_reference":"cluster-md-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"dlm-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:dlm-kmp-default"},"product_reference":"dlm-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"gfs2-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:gfs2-kmp-default"},"product_reference":"gfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"ocfs2-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:ocfs2-kmp-default"},"product_reference":"ocfs2-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"reiserfs-kmp-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:reiserfs-kmp-default"},"product_reference":"reiserfs-kmp-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server for SAP Applications 15 SP5","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP5"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Workstation Extension 15 SP6","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Workstation Extension 15 SP6","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server 15 SP6","product_id":"SUSE Linux Enterprise Server 15 SP6:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Server for SAP Applications 15 SP6","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Desktop 15 SP6","product_id":"SUSE Linux Enterprise Desktop 15 SP6:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Workstation Extension 15 SP6","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP6"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Server 15 SP7","product_id":"SUSE Linux Enterprise Server 15 SP7:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Server 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Server for SAP Applications 15 SP7","product_id":"SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Server for SAP Applications 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-extra as component of SUSE Linux Enterprise Workstation Extension 15 SP7","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra"},"product_reference":"kernel-default-extra","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Linux Enterprise Workstation Extension 15 SP7","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Desktop 15 SP7","product_id":"SUSE Linux Enterprise Desktop 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Desktop 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Linux Enterprise Workstation Extension 15 SP7","product_id":"SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Linux Enterprise Workstation Extension 15 SP7"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Manager Proxy 4.3","product_id":"SUSE Manager Proxy 4.3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Manager Proxy 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Manager Proxy 4.3","product_id":"SUSE Manager Proxy 4.3:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Manager Proxy 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Manager Proxy 4.3","product_id":"SUSE Manager Proxy 4.3:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Manager Proxy 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Manager Proxy 4.3","product_id":"SUSE Manager Proxy 4.3:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Manager Proxy 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Manager Proxy 4.3","product_id":"SUSE Manager Proxy 4.3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Manager Proxy 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Manager Retail Branch Server 4.3","product_id":"SUSE Manager Retail Branch Server 4.3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Manager Retail Branch Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Manager Retail Branch Server 4.3","product_id":"SUSE Manager Retail Branch Server 4.3:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Manager Retail Branch Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Manager Retail Branch Server 4.3","product_id":"SUSE Manager Retail Branch Server 4.3:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Manager Retail Branch Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Manager Retail Branch Server 4.3","product_id":"SUSE Manager Retail Branch Server 4.3:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Manager Retail Branch Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Manager Retail Branch Server 4.3","product_id":"SUSE Manager Retail Branch Server 4.3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Manager Retail Branch Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default as component of SUSE Manager Server 4.3","product_id":"SUSE Manager Server 4.3:kernel-default"},"product_reference":"kernel-default","relates_to_product_reference":"SUSE Manager Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-default-devel as component of SUSE Manager Server 4.3","product_id":"SUSE Manager Server 4.3:kernel-default-devel"},"product_reference":"kernel-default-devel","relates_to_product_reference":"SUSE Manager Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-devel as component of SUSE Manager Server 4.3","product_id":"SUSE Manager Server 4.3:kernel-devel"},"product_reference":"kernel-devel","relates_to_product_reference":"SUSE Manager Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-macros as component of SUSE Manager Server 4.3","product_id":"SUSE Manager Server 4.3:kernel-macros"},"product_reference":"kernel-macros","relates_to_product_reference":"SUSE Manager Server 4.3"},{"category":"default_component_of","full_product_name":{"name":"kernel-source as component of SUSE Manager Server 4.3","product_id":"SUSE Manager Server 4.3:kernel-source"},"product_reference":"kernel-source","relates_to_product_reference":"SUSE Manager Server 4.3"}]},"vulnerabilities":[{"cve":"CVE-2025-22058","ids":[{"system_name":"SUSE CVE Page","text":"https://www.suse.com/security/cve/CVE-2025-22058"}],"notes":[{"category":"general","text":"In the Linux kernel, the following vulnerability has been resolved:\n\nudp: Fix memory accounting leak.\n\nMatt Dowling reported a weird UDP memory usage issue.\n\nUnder normal operation, the UDP memory usage reported in /proc/net/sockstat\nremains close to zero.  However, it occasionally spiked to 524,288 pages\nand never dropped.  Moreover, the value doubled when the application was\nterminated.  Finally, it caused intermittent packet drops.\n\nWe can reproduce the issue with the script below [0]:\n\n  1. /proc/net/sockstat reports 0 pages\n\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 1 mem 0\n\n  2. Run the script till the report reaches 524,288\n\n    # python3 test.py & sleep 5\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 3 mem 524288  <-- (INT_MAX + 1) >> PAGE_SHIFT\n\n  3. Kill the socket and confirm the number never drops\n\n    # pkill python3 && sleep 5\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 1 mem 524288\n\n  4. (necessary since v6.0) Trigger proto_memory_pcpu_drain()\n\n    # python3 test.py & sleep 1 && pkill python3\n\n  5. The number doubles\n\n    # cat /proc/net/sockstat | grep UDP:\n    UDP: inuse 1 mem 1048577\n\nThe application set INT_MAX to SO_RCVBUF, which triggered an integer\noverflow in udp_rmem_release().\n\nWhen a socket is close()d, udp_destruct_common() purges its receive\nqueue and sums up skb->truesize in the queue.  This total is calculated\nand stored in a local unsigned integer variable.\n\nThe total size is then passed to udp_rmem_release() to adjust memory\naccounting.  However, because the function takes a signed integer\nargument, the total size can wrap around, causing an overflow.\n\nThen, the released amount is calculated as follows:\n\n  1) Add size to sk->sk_forward_alloc.\n  2) Round down sk->sk_forward_alloc to the nearest lower multiple of\n      PAGE_SIZE and assign it to amount.\n  3) Subtract amount from sk->sk_forward_alloc.\n  4) Pass amount >> PAGE_SHIFT to __sk_mem_reduce_allocated().\n\nWhen the issue occurred, the total in udp_destruct_common() was 2147484480\n(INT_MAX + 833), which was cast to -2147482816 in udp_rmem_release().\n\nAt 1) sk->sk_forward_alloc is changed from 3264 to -2147479552, and\n2) sets -2147479552 to amount.  3) reverts the wraparound, so we don't\nsee a warning in inet_sock_destruct().  However, udp_memory_allocated\nends up doubling at 4).\n\nSince commit 3cd3399dd7a8 (\"net: implement per-cpu reserves for\nmemory_allocated\"), memory usage no longer doubles immediately after\na socket is close()d because __sk_mem_reduce_allocated() caches the\namount in udp_memory_per_cpu_fw_alloc.  However, the next time a UDP\nsocket receives a packet, the subtraction takes effect, causing UDP\nmemory usage to double.\n\nThis issue makes further memory allocation fail once the socket's\nsk->sk_rmem_alloc exceeds net.ipv4.udp_rmem_min, resulting in packet\ndrops.\n\nTo prevent this issue, let's use unsigned int for the calculation and\ncall sk_forward_alloc_add() only once for the small delta.\n\nNote that first_packet_length() also potentially has the same problem.\n\n[0]:\nfrom socket import *\n\nSO_RCVBUFFORCE = 33\nINT_MAX = (2 ** 31) - 1\n\ns = socket(AF_INET, SOCK_DGRAM)\ns.bind(('', 0))\ns.setsockopt(SOL_SOCKET, SO_RCVBUFFORCE, INT_MAX)\n\nc = socket(AF_INET, SOCK_DGRAM)\nc.connect(s.getsockname())\n\ndata = b'a' * 100\n\nwhile True:\n    c.send(data)","title":"CVE description"}],"product_status":{"known_affected":["SLES-LTSS-TERADATA 15 SP2:kernel-default","SLES-LTSS-TERADATA 15 SP2:kernel-source","SUSE Linux Enterprise Desktop 15 SP6:kernel-default","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-extra","SUSE Linux Enterprise Desktop 15 SP6:kernel-source","SUSE Linux Enterprise Desktop 15 SP7:kernel-default","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-extra","SUSE Linux Enterprise Desktop 15 SP7:kernel-source","SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default","SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default","SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default","SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-default","SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-source","SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default","SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default-devel","SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-devel","SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-macros","SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-source","SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default","SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default-devel","SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-devel","SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-macros","SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-source","SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:cluster-md-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:dlm-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:gfs2-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default-devel","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-devel","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-macros","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-source","SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:ocfs2-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:cluster-md-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:dlm-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:gfs2-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default-devel","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-devel","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-macros","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-source","SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:ocfs2-kmp-default","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source","SUSE Linux Enterprise High Performance Computing 15 SP7:reiserfs-kmp-default","SUSE Linux Enterprise Live Patching 12 SP5:kernel-default","SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft","SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft-devel","SUSE Linux Enterprise Live Patching 12 SP5:kernel-source","SUSE Linux Enterprise Live Patching 15 SP3:kernel-default","SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch","SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch-devel","SUSE Linux Enterprise Live Patching 15 SP3:kernel-source","SUSE Linux Enterprise Live Patching 15 SP4:kernel-default","SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch","SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch-devel","SUSE Linux Enterprise Live Patching 15 SP4:kernel-source","SUSE Linux Enterprise Live Patching 15 SP5:kernel-default","SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch","SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch-devel","SUSE Linux Enterprise Live Patching 15 SP5:kernel-source","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel","SUSE Linux Enterprise Live Patching 15 SP6:kernel-source","SUSE Linux Enterprise Live Patching 15 SP7:kernel-default","SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch","SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch-devel","SUSE Linux Enterprise Live Patching 15 SP7:kernel-source","SUSE Linux Enterprise Micro 5.0:kernel-default","SUSE Linux Enterprise Micro 5.1:kernel-default","SUSE Linux Enterprise Micro 5.1:kernel-rt","SUSE Linux Enterprise Micro 5.1:kernel-source","SUSE Linux Enterprise Micro 5.1:kernel-source-rt","SUSE Linux Enterprise Micro 5.2:kernel-default","SUSE Linux Enterprise Micro 5.2:kernel-rt","SUSE Linux Enterprise Micro 5.2:kernel-source","SUSE Linux Enterprise Micro 5.2:kernel-source-rt","SUSE Linux Enterprise Micro 5.3:kernel-default","SUSE Linux Enterprise Micro 5.3:kernel-rt","SUSE Linux Enterprise Micro 5.3:kernel-source","SUSE Linux Enterprise Micro 5.3:kernel-source-rt","SUSE Linux Enterprise Micro 5.4:kernel-default","SUSE Linux Enterprise Micro 5.4:kernel-rt","SUSE Linux Enterprise Micro 5.4:kernel-source","SUSE Linux Enterprise Micro 5.4:kernel-source-rt","SUSE Linux Enterprise Micro 5.5:kernel-default","SUSE Linux Enterprise Micro 5.5:kernel-devel-rt","SUSE Linux Enterprise Micro 5.5:kernel-macros","SUSE Linux Enterprise Micro 5.5:kernel-source","SUSE Linux Enterprise Micro 5.5:kernel-source-rt","SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-default","SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-source","SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-base","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-man","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-devel","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-macros","SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-source","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel-azure","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source-azure","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-base","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-man","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-devel","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-macros","SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-source","SUSE Linux Enterprise Server 15 SP1-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default","SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-devel","SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-macros","SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-source","SUSE Linux Enterprise Server 15 SP2-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default","SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-devel","SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-macros","SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-source","SUSE Linux Enterprise Server 15 SP3-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default","SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-devel","SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-macros","SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-source","SUSE Linux Enterprise Server 15 SP4-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise Server 15 SP5-LTSS:cluster-md-kmp-default","SUSE Linux Enterprise Server 15 SP5-LTSS:dlm-kmp-default","SUSE Linux Enterprise Server 15 SP5-LTSS:gfs2-kmp-default","SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default","SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-devel","SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-macros","SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-source","SUSE Linux Enterprise Server 15 SP5-LTSS:ocfs2-kmp-default","SUSE Linux Enterprise Server 15 SP5-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise Server 15 SP6:kernel-default","SUSE Linux Enterprise Server 15 SP6:kernel-default-extra","SUSE Linux Enterprise Server 15 SP6:kernel-source","SUSE Linux Enterprise Server 15 SP7:kernel-default","SUSE Linux Enterprise Server 15 SP7:kernel-default-extra","SUSE Linux Enterprise Server 15 SP7:kernel-source","SUSE Linux Enterprise Server 15 SP7:reiserfs-kmp-default","SUSE Linux Enterprise Server 15-LTSS:kernel-default","SUSE Linux Enterprise Server 15-LTSS:kernel-default-base","SUSE Linux Enterprise Server 15-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 15-LTSS:kernel-default-man","SUSE Linux Enterprise Server 15-LTSS:kernel-devel","SUSE Linux Enterprise Server 15-LTSS:kernel-macros","SUSE Linux Enterprise Server 15-LTSS:kernel-source","SUSE Linux Enterprise Server 15-LTSS:reiserfs-kmp-default","SUSE Linux Enterprise Server Teradata 15 SP4:kernel-default","SUSE Linux Enterprise Server Teradata 15 SP4:kernel-source","SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default","SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default-devel","SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-devel","SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-macros","SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-source","SUSE Linux Enterprise Server for SAP Applications 15 SP3:reiserfs-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default","SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default-devel","SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-devel","SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-macros","SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-source","SUSE Linux Enterprise Server for SAP Applications 15 SP4:reiserfs-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP5:cluster-md-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP5:dlm-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP5:gfs2-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default","SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default-devel","SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-devel","SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-macros","SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-source","SUSE Linux Enterprise Server for SAP Applications 15 SP5:ocfs2-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP5:reiserfs-kmp-default","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-extra","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-extra","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source","SUSE Linux Enterprise Server for SAP Applications 15 SP7:reiserfs-kmp-default","SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default","SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra","SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-source","SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default","SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra","SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-source","SUSE Manager Proxy 4.3:kernel-default","SUSE Manager Proxy 4.3:kernel-default-devel","SUSE Manager Proxy 4.3:kernel-devel","SUSE Manager Proxy 4.3:kernel-macros","SUSE Manager Proxy 4.3:kernel-source","SUSE Manager Retail Branch Server 4.3:kernel-default","SUSE Manager Retail Branch Server 4.3:kernel-default-devel","SUSE Manager Retail Branch Server 4.3:kernel-devel","SUSE Manager Retail Branch Server 4.3:kernel-macros","SUSE Manager Retail Branch Server 4.3:kernel-source","SUSE Manager Server 4.3:kernel-default","SUSE Manager Server 4.3:kernel-default-devel","SUSE Manager Server 4.3:kernel-devel","SUSE Manager Server 4.3:kernel-macros","SUSE Manager Server 4.3:kernel-source","chost:amazon/suse-sles-15-sp1-chost-byos-v20210304-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp1-chost-byos-v20220127-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp1-chost-byos-v20220715-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp2-chost-byos-v20210610-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp2-chost-byos-v20210722-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp2-chost-byos-v20210913-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp2-chost-byos-v20211025-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp2-chost-byos-v20220126-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp2-chost-byos-v20220718-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20210729-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20210827-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20210927-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20211004-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20211101-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20211202-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220103-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220126-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220222-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220310-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220411-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220510-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220608-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220708-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220718-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220818-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220916-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20220921-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20221019-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20221119-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20221215-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20230313-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20230613-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20240807-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp3-chost-byos-v20240912-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20220718-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20220721-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20220819-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20220916-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20220923-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20221018-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20221118-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20221215-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230111-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230210-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230310-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230410-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230510-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230606-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230704-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230803-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230901-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20230928-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20231027-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20231127-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20231212-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20240312-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20240612-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20240809-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20240912-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20250721-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp4-chost-byos-v20251022-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20230704-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20230816-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20230915-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20231013-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20231113-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20231213-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240111-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240209-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240307-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240403-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240502-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240529-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240626-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240726-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240809-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240826-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20240912-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20241011-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20241112-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20241216-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20250122-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20250212-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20250512-hvm-ssd-x86_64","chost:amazon/suse-sles-15-sp5-chost-byos-v20251022-hvm-ssd-x86_64","chost:google/sles-15-sp1-chost-byos-v20210202","chost:google/sles-15-sp1-chost-byos-v20210304","chost:google/sles-15-sp1-chost-byos-v20220127","chost:google/sles-15-sp1-chost-byos-v20220715-x86-64","chost:google/sles-15-sp2-chost-byos-v20210202","chost:google/sles-15-sp2-chost-byos-v20210304","chost:google/sles-15-sp2-chost-byos-v20210405","chost:google/sles-15-sp2-chost-byos-v20210506","chost:google/sles-15-sp2-chost-byos-v20210610","chost:google/sles-15-sp2-chost-byos-v20210722","chost:google/sles-15-sp2-chost-byos-v20210913","chost:google/sles-15-sp2-chost-byos-v20211025","chost:google/sles-15-sp2-chost-byos-v20220126","chost:google/sles-15-sp2-chost-byos-v20220718-x86-64","chost:google/sles-15-sp3-chost-byos-v20210729","chost:google/sles-15-sp3-chost-byos-v20210827","chost:google/sles-15-sp3-chost-byos-v20210927","chost:google/sles-15-sp3-chost-byos-v20211004","chost:google/sles-15-sp3-chost-byos-v20211101","chost:google/sles-15-sp3-chost-byos-v20211202","chost:google/sles-15-sp3-chost-byos-v20220103","chost:google/sles-15-sp3-chost-byos-v20220126","chost:google/sles-15-sp3-chost-byos-v20220222","chost:google/sles-15-sp3-chost-byos-v20220310","chost:google/sles-15-sp3-chost-byos-v20220411-x86-64","chost:google/sles-15-sp3-chost-byos-v20220510-x86-64","chost:google/sles-15-sp3-chost-byos-v20220608-x86-64","chost:google/sles-15-sp3-chost-byos-v20220708-x86-64","chost:google/sles-15-sp3-chost-byos-v20220718-x86-64","chost:google/sles-15-sp3-chost-byos-v20220818-x86-64","chost:google/sles-15-sp3-chost-byos-v20220916-x86-64","chost:google/sles-15-sp3-chost-byos-v20221019-x86-64","chost:google/sles-15-sp3-chost-byos-v20221118-x86-64","chost:google/sles-15-sp3-chost-byos-v20221215-x86-64","chost:google/sles-15-sp3-chost-byos-v20230313-x86-64","chost:google/sles-15-sp3-chost-byos-v20230613-x86-64","chost:google/sles-15-sp3-chost-byos-v20240807-x86-64","chost:google/sles-15-sp3-chost-byos-v20240912-x86-64","chost:google/sles-15-sp4-chost-byos-v20220718-x86-64","chost:google/sles-15-sp4-chost-byos-v20220721-x86-64","chost:google/sles-15-sp4-chost-byos-v20220818-x86-64","chost:google/sles-15-sp4-chost-byos-v20220916-x86-64","chost:google/sles-15-sp4-chost-byos-v20221018-x86-64","chost:google/sles-15-sp4-chost-byos-v20221118-x86-64","chost:google/sles-15-sp4-chost-byos-v20221215-arm64","chost:google/sles-15-sp4-chost-byos-v20221215-x86-64","chost:google/sles-15-sp4-chost-byos-v20230111-arm64","chost:google/sles-15-sp4-chost-byos-v20230111-x86-64","chost:google/sles-15-sp4-chost-byos-v20230210-arm64","chost:google/sles-15-sp4-chost-byos-v20230210-x86-64","chost:google/sles-15-sp4-chost-byos-v20230310-arm64","chost:google/sles-15-sp4-chost-byos-v20230310-x86-64","chost:google/sles-15-sp4-chost-byos-v20230410-arm64","chost:google/sles-15-sp4-chost-byos-v20230410-x86-64","chost:google/sles-15-sp4-chost-byos-v20230510-arm64","chost:google/sles-15-sp4-chost-byos-v20230510-x86-64","chost:google/sles-15-sp4-chost-byos-v20230606-arm64","chost:google/sles-15-sp4-chost-byos-v20230606-x86-64","chost:google/sles-15-sp4-chost-byos-v20230704-arm64","chost:google/sles-15-sp4-chost-byos-v20230704-x86-64","chost:google/sles-15-sp4-chost-byos-v20230804-arm64","chost:google/sles-15-sp4-chost-byos-v20230804-x86-64","chost:google/sles-15-sp4-chost-byos-v20230901-arm64","chost:google/sles-15-sp4-chost-byos-v20230901-x86-64","chost:google/sles-15-sp4-chost-byos-v20230928-arm64","chost:google/sles-15-sp4-chost-byos-v20230928-x86-64","chost:google/sles-15-sp4-chost-byos-v20231027-arm64","chost:google/sles-15-sp4-chost-byos-v20231027-x86-64","chost:google/sles-15-sp4-chost-byos-v20231127-arm64","chost:google/sles-15-sp4-chost-byos-v20231127-x86-64","chost:google/sles-15-sp4-chost-byos-v20231212-arm64","chost:google/sles-15-sp4-chost-byos-v20231212-x86-64","chost:google/sles-15-sp4-chost-byos-v20240312-arm64","chost:google/sles-15-sp4-chost-byos-v20240312-x86-64","chost:google/sles-15-sp4-chost-byos-v20240612-arm64","chost:google/sles-15-sp4-chost-byos-v20240612-x86-64","chost:google/sles-15-sp4-chost-byos-v20240809-arm64","chost:google/sles-15-sp4-chost-byos-v20240809-x86-64","chost:google/sles-15-sp4-chost-byos-v20240912-arm64","chost:google/sles-15-sp4-chost-byos-v20240912-x86-64","chost:google/sles-15-sp4-chost-byos-v20250721-arm64","chost:google/sles-15-sp4-chost-byos-v20250721-x86-64","chost:google/sles-15-sp4-chost-byos-v20251022-arm64","chost:google/sles-15-sp4-chost-byos-v20251022-x86-64","chost:google/sles-15-sp5-chost-byos-v20230704-arm64","chost:google/sles-15-sp5-chost-byos-v20230704-x86-64","chost:google/sles-15-sp5-chost-byos-v20230718-arm64","chost:google/sles-15-sp5-chost-byos-v20230719-x86-64","chost:google/sles-15-sp5-chost-byos-v20230816-arm64","chost:google/sles-15-sp5-chost-byos-v20230816-x86-64","chost:google/sles-15-sp5-chost-byos-v20230915-arm64","chost:google/sles-15-sp5-chost-byos-v20230915-x86-64","chost:google/sles-15-sp5-chost-byos-v20231013-arm64","chost:google/sles-15-sp5-chost-byos-v20231013-x86-64","chost:google/sles-15-sp5-chost-byos-v20231113-arm64","chost:google/sles-15-sp5-chost-byos-v20231113-x86-64","chost:google/sles-15-sp5-chost-byos-v20231213-arm64","chost:google/sles-15-sp5-chost-byos-v20231213-x86-64","chost:google/sles-15-sp5-chost-byos-v20240111-arm64","chost:google/sles-15-sp5-chost-byos-v20240111-x86-64","chost:google/sles-15-sp5-chost-byos-v20240209-arm64","chost:google/sles-15-sp5-chost-byos-v20240209-x86-64","chost:google/sles-15-sp5-chost-byos-v20240307-arm64","chost:google/sles-15-sp5-chost-byos-v20240307-x86-64","chost:google/sles-15-sp5-chost-byos-v20240403-arm64","chost:google/sles-15-sp5-chost-byos-v20240403-x86-64","chost:google/sles-15-sp5-chost-byos-v20240502-arm64","chost:google/sles-15-sp5-chost-byos-v20240502-x86-64","chost:google/sles-15-sp5-chost-byos-v20240529-arm64","chost:google/sles-15-sp5-chost-byos-v20240529-x86-64","chost:google/sles-15-sp5-chost-byos-v20240626-arm64","chost:google/sles-15-sp5-chost-byos-v20240626-x86-64","chost:google/sles-15-sp5-chost-byos-v20240726-arm64","chost:google/sles-15-sp5-chost-byos-v20240726-x86-64","chost:google/sles-15-sp5-chost-byos-v20240809-arm64","chost:google/sles-15-sp5-chost-byos-v20240809-x86-64","chost:google/sles-15-sp5-chost-byos-v20240826-arm64","chost:google/sles-15-sp5-chost-byos-v20240826-x86-64","chost:google/sles-15-sp5-chost-byos-v20240912-arm64","chost:google/sles-15-sp5-chost-byos-v20240912-x86-64","chost:google/sles-15-sp5-chost-byos-v20241011-arm64","chost:google/sles-15-sp5-chost-byos-v20241011-x86-64","chost:google/sles-15-sp5-chost-byos-v20241112-arm64","chost:google/sles-15-sp5-chost-byos-v20241112-x86-64","chost:google/sles-15-sp5-chost-byos-v20241216-arm64","chost:google/sles-15-sp5-chost-byos-v20241216-x86-64","chost:google/sles-15-sp5-chost-byos-v20250122-arm64","chost:google/sles-15-sp5-chost-byos-v20250122-x86-64","chost:google/sles-15-sp5-chost-byos-v20250212-arm64","chost:google/sles-15-sp5-chost-byos-v20250212-x86-64","chost:google/sles-15-sp5-chost-byos-v20250512-arm64","chost:google/sles-15-sp5-chost-byos-v20250512-x86-64","chost:google/sles-15-sp5-chost-byos-v20251022-arm64","chost:google/sles-15-sp5-chost-byos-v20251022-x86-64","chost:microsoft/suse-sles-15-sp1-chost-byos-v20210202","chost:microsoft/suse-sles-15-sp1-chost-byos-v20210304","chost:microsoft/suse-sles-15-sp1-chost-byos-v20220127","chost:microsoft/suse-sles-15-sp1-chost-byos-v20220715-x86_64","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210202","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210304","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210405","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210506","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210610","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210722","chost:microsoft/suse-sles-15-sp2-chost-byos-v20210913","chost:microsoft/suse-sles-15-sp2-chost-byos-v20211025","chost:microsoft/suse-sles-15-sp2-chost-byos-v20220126","chost:microsoft/suse-sles-15-sp2-chost-byos-v20220718-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20210729","chost:microsoft/suse-sles-15-sp3-chost-byos-v20210827","chost:microsoft/suse-sles-15-sp3-chost-byos-v20210927","chost:microsoft/suse-sles-15-sp3-chost-byos-v20211004","chost:microsoft/suse-sles-15-sp3-chost-byos-v20211101","chost:microsoft/suse-sles-15-sp3-chost-byos-v20211202","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220103","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220126","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220222","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220310","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220411-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220510-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220609-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220708-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220718-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220818-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220916-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20220921-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20221019-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20221119-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20221215-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20230313-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20230613-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20240807-x86_64","chost:microsoft/suse-sles-15-sp3-chost-byos-v20240912-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20220718-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20220721-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20220819-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20220916-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20220923-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20221018-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20221118-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20221215-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20221215-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230111-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230111-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230210-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230210-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230310-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230310-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230410-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230410-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230510-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230510-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230606-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230606-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230704-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230704-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230803-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230803-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230901-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230901-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230928-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20230928-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20231027-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20231027-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20231127-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20231127-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20231212-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20231212-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240312-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240312-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240612-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240612-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240809-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240809-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240912-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20240912-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20250721-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20250721-x86_64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20251022-arm64","chost:microsoft/suse-sles-15-sp4-chost-byos-v20251022-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230704-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230704-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230718-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230719-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230816-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230816-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230915-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20230915-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20231013-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20231013-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20231113-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20231113-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20231213-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20231213-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240111-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240111-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240209-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240209-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240307-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240307-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240403-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240403-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240502-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240502-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240529-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240529-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240626-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240626-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240726-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240726-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240809-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240809-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240826-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240826-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240912-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20240912-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20241011-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20241011-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20241112-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20241112-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20241216-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20250122-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20250122-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20250212-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20250212-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20250512-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20250512-x86_64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20251022-arm64","chost:microsoft/suse-sles-15-sp5-chost-byos-v20251022-x86_64"],"known_not_affected":["SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default","SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-base","SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-devel","SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-source","SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-default","SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-source","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-base","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-devel","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-man","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-devel","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-macros","SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-source","SUSE Linux Enterprise Server Teradata 12 SP3:kernel-default","SUSE Linux Enterprise Server Teradata 12 SP3:kernel-source"],"recommended":["SUSE Liberty Linux 8:bpftool-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-abi-stablelists-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-core-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-cross-headers-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-core-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-modules-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-doc-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-headers-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-modules-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-modules-extra-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-libs-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:perf-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:python3-perf-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 9:kernel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-abi-stablelists-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-cross-headers-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-devel-matched-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-doc-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-headers-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-kvm-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-libs-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-uki-virt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:libperf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:perf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:python3-perf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:rtla-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:rv-5.14.0-570.37.1.el9_6","SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP6:cluster-md-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:dlm-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:gfs2-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:ocfs2-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-6.4.0-150600.23.50.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","SUSE Linux Enterprise Live Patching 15 SP7:kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-source-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Legacy 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Real Time 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Server 12 SP5-LTSS:cluster-md-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:dlm-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:gfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-base-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-man-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-macros-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-syms-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:ocfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-devel-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-extra-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-vdso-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-devel-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-source-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.5.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:cluster-md-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:dlm-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:gfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-base-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-macros-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-source-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-syms-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:ocfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Micro 6.0:kernel-default-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-default-base-6.4.0-29.1.21.7","SUSE Linux Micro 6.0:kernel-default-livepatch-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-devel-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-devel-rt-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-kvmsmall-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-29-default-1-1.2","SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-31-rt-1-1.2","SUSE Linux Micro 6.0:kernel-macros-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-rt-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-rt-livepatch-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-source-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-source-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-default-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-default-base-6.4.0-29.1.21.7","SUSE Linux Micro 6.1:kernel-default-devel-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-default-livepatch-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-devel-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-devel-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-kvmsmall-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-29-default-1-1.2","SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-31-rt-1-1.2","SUSE Linux Micro 6.1:kernel-macros-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-rt-devel-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-rt-livepatch-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-source-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-source-rt-6.4.0-31.1","SUSE Real Time Module 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1","openSUSE Leap 15.6:cluster-md-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:cluster-md-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:cluster-md-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:dlm-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dlm-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:dlm-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dlm-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:dtb-allwinner-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-altera-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amazon-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amd-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amlogic-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-apm-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-apple-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-arm-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-broadcom-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-cavium-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-exynos-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-freescale-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-hisilicon-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-lg-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-marvell-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-mediatek-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-nvidia-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-qcom-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-renesas-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-rockchip-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-socionext-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-sprd-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-xilinx-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:gfs2-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-extra-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-optional-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-devel-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-extra-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-optional-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-vdso-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-debug-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-debug-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-debug-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","openSUSE Leap 15.6:kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","openSUSE Leap 15.6:kernel-default-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-extra-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-livepatch-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-optional-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-devel-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-devel-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-docs-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-docs-html-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-macros-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-obs-build-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-obs-qa-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-extra-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-optional-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-vdso-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-vdso-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-source-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-source-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-source-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-source-vanilla-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-syms-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-syms-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-syms-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-zfcpdump-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kselftests-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:ocfs2-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:ocfs2-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:ocfs2-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:reiserfs-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:reiserfs-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:reiserfs-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:reiserfs-kmp-rt-6.4.0-150600.10.39.1"]},"references":[{"category":"external","summary":"CVE-2025-22058","url":"https://www.suse.com/security/cve/CVE-2025-22058"},{"category":"external","summary":"SUSE Security Ratings","url":"https://www.suse.com/support/security/rating/"},{"category":"external","summary":"SUSE Bug 1241332 for CVE-2025-22058","url":"https://bugzilla.suse.com/1241332"},{"category":"external","summary":"Advisory link for RHSA-2025:14420","url":"https://lists.suse.com/pipermail/suse-liberty-linux-updates/2025-August/001940.html"},{"category":"external","summary":"Advisory link for RHSA-2025:14438","url":"https://lists.suse.com/pipermail/suse-liberty-linux-updates/2025-August/001933.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01614-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039292.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01707-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039343.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01919-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2025-June/021477.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01951-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/040285.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01964-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2025-June/021531.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01967-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2025-June/021533.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01972-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/040321.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:01983-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/040323.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20343-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039431.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20344-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-May/039430.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20354-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/039505.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2025:20355-1","url":"https://lists.suse.com/pipermail/sle-updates/2025-June/039504.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2026:20300-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2026-February/024190.html"},{"category":"external","summary":"Advisory link for SUSE-SU-2026:20327-1","url":"https://lists.suse.com/pipermail/sle-security-updates/2026-February/024168.html"}],"remediations":[{"category":"vendor_fix","details":"To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n","product_ids":["SUSE Liberty Linux 8:bpftool-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-abi-stablelists-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-core-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-cross-headers-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-core-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-modules-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-doc-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-headers-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-modules-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-modules-extra-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-libs-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:perf-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:python3-perf-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 9:kernel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-abi-stablelists-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-cross-headers-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-devel-matched-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-doc-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-headers-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-kvm-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-libs-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-uki-virt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:libperf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:perf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:python3-perf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:rtla-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:rv-5.14.0-570.37.1.el9_6","SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP6:cluster-md-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:dlm-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:gfs2-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:ocfs2-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-6.4.0-150600.23.50.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","SUSE Linux Enterprise Live Patching 15 SP7:kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-source-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Legacy 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Real Time 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Server 12 SP5-LTSS:cluster-md-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:dlm-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:gfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-base-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-man-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-macros-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-syms-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:ocfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-devel-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-extra-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-vdso-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-devel-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-source-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.5.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:cluster-md-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:dlm-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:gfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-base-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-macros-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-source-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-syms-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:ocfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Micro 6.0:kernel-default-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-default-base-6.4.0-29.1.21.7","SUSE Linux Micro 6.0:kernel-default-livepatch-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-devel-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-devel-rt-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-kvmsmall-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-29-default-1-1.2","SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-31-rt-1-1.2","SUSE Linux Micro 6.0:kernel-macros-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-rt-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-rt-livepatch-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-source-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-source-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-default-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-default-base-6.4.0-29.1.21.7","SUSE Linux Micro 6.1:kernel-default-devel-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-default-livepatch-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-devel-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-devel-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-kvmsmall-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-29-default-1-1.2","SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-31-rt-1-1.2","SUSE Linux Micro 6.1:kernel-macros-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-rt-devel-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-rt-livepatch-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-source-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-source-rt-6.4.0-31.1","SUSE Real Time Module 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1","openSUSE Leap 15.6:cluster-md-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:cluster-md-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:cluster-md-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:dlm-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dlm-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:dlm-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dlm-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:dtb-allwinner-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-altera-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amazon-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amd-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amlogic-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-apm-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-apple-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-arm-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-broadcom-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-cavium-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-exynos-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-freescale-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-hisilicon-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-lg-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-marvell-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-mediatek-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-nvidia-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-qcom-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-renesas-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-rockchip-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-socionext-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-sprd-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-xilinx-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:gfs2-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-extra-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-optional-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-devel-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-extra-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-optional-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-vdso-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-debug-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-debug-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-debug-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","openSUSE Leap 15.6:kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","openSUSE Leap 15.6:kernel-default-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-extra-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-livepatch-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-optional-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-devel-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-devel-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-docs-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-docs-html-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-macros-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-obs-build-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-obs-qa-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-extra-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-optional-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-vdso-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-vdso-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-source-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-source-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-source-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-source-vanilla-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-syms-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-syms-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-syms-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-zfcpdump-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kselftests-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:ocfs2-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:ocfs2-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:ocfs2-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:reiserfs-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:reiserfs-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:reiserfs-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:reiserfs-kmp-rt-6.4.0-150600.10.39.1"]}],"scores":[{"cvss_v3":{"baseScore":5.3,"baseSeverity":"MEDIUM","vectorString":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L","version":"3.1"},"products":["SUSE Liberty Linux 8:bpftool-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-abi-stablelists-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-core-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-cross-headers-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-core-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-modules-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-debug-modules-extra-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-doc-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-headers-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-modules-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-modules-extra-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-libs-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:kernel-tools-libs-devel-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:perf-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 8:python3-perf-4.18.0-553.71.1.el8_10","SUSE Liberty Linux 9:kernel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-abi-stablelists-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-cross-headers-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-devel-matched-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-debug-uki-virt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-devel-matched-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-doc-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-headers-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-kvm-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-debug-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-kvm-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-core-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-rt-modules-extra-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-libs-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-tools-libs-devel-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-uki-virt-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:kernel-uki-virt-addons-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:libperf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:perf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:python3-perf-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:rtla-5.14.0-570.37.1.el9_6","SUSE Liberty Linux 9:rv-5.14.0-570.37.1.el9_6","SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Desktop 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP6:cluster-md-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:dlm-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:gfs2-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP6:ocfs2-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise High Performance Computing 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise High Performance Computing 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-6.4.0-150600.23.50.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_10_39-rt-1-150600.1.3.2","SUSE Linux Enterprise Live Patching 15 SP6:kernel-livepatch-6_4_0-150600_23_50-default-1-150600.13.3.1","SUSE Linux Enterprise Live Patching 15 SP7:kernel-livepatch-6_4_0-150700_7_3-rt-1-150700.1.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco-devel-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-coco_debug-devel-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-devel-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-source-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:kernel-syms-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Confidential Computing Technical Preview 15 SP6:reiserfs-kmp-coco-6.4.0-15061.21.coco15sp6.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Legacy 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Real Time 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Linux Enterprise Real Time 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Real Time 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Linux Enterprise Server 12 SP5-LTSS:cluster-md-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:dlm-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:gfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-base-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-man-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-macros-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-syms-4.12.14-122.261.1","SUSE Linux Enterprise Server 12 SP5-LTSS:ocfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-devel-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-extra-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-azure-vdso-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-devel-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-source-azure-6.12.0-160000.2.2","SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.5.1","SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.5.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:cluster-md-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:dlm-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:gfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-base-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-default-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-devel-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-macros-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-source-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:kernel-syms-4.12.14-122.261.1","SUSE Linux Enterprise Server LTSS Extended Security 12 SP5:ocfs2-kmp-default-4.12.14-122.261.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-64kb-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-azure-devel-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-docs-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-macros-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-obs-build-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-syms-azure-6.4.0-150600.8.37.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-zfcpdump-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP6:reiserfs-kmp-default-6.4.0-150600.23.50.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-64kb-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-azure-devel-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-base-6.4.0-150700.53.3.1.150700.17.2.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-devel-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-docs-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-macros-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-obs-build-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-source-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-syms-azure-6.4.0-150700.20.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:kernel-zfcpdump-6.4.0-150700.53.3.1","SUSE Linux Enterprise Server for SAP Applications 15 SP7:reiserfs-kmp-default-6.4.0-150700.53.3.1","SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra-6.4.0-150600.23.50.1","SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra-6.4.0-150700.53.3.1","SUSE Linux Micro 6.0:kernel-default-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-default-base-6.4.0-29.1.21.7","SUSE Linux Micro 6.0:kernel-default-livepatch-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-devel-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-devel-rt-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-kvmsmall-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-29-default-1-1.2","SUSE Linux Micro 6.0:kernel-livepatch-6_4_0-31-rt-1-1.2","SUSE Linux Micro 6.0:kernel-macros-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-rt-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-rt-livepatch-6.4.0-31.1","SUSE Linux Micro 6.0:kernel-source-6.4.0-29.1","SUSE Linux Micro 6.0:kernel-source-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-default-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-default-base-6.4.0-29.1.21.7","SUSE Linux Micro 6.1:kernel-default-devel-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-default-livepatch-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-devel-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-devel-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-kvmsmall-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-29-default-1-1.2","SUSE Linux Micro 6.1:kernel-livepatch-6_4_0-31-rt-1-1.2","SUSE Linux Micro 6.1:kernel-macros-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-rt-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-rt-devel-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-rt-livepatch-6.4.0-31.1","SUSE Linux Micro 6.1:kernel-source-6.4.0-29.1","SUSE Linux Micro 6.1:kernel-source-rt-6.4.0-31.1","SUSE Real Time Module 15 SP6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:dlm-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:gfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-devel-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt-devel-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt_debug-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-source-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:kernel-syms-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","SUSE Real Time Module 15 SP7:cluster-md-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:dlm-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:gfs2-kmp-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-devel-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt-devel-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt_debug-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-rt_debug-devel-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-source-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:kernel-syms-rt-6.4.0-150700.7.3.1","SUSE Real Time Module 15 SP7:ocfs2-kmp-rt-6.4.0-150700.7.3.1","openSUSE Leap 15.6:cluster-md-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:cluster-md-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:cluster-md-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:cluster-md-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:dlm-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dlm-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:dlm-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dlm-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:dtb-allwinner-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-altera-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amazon-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amd-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-amlogic-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-apm-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-apple-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-arm-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-broadcom-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-cavium-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-exynos-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-freescale-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-hisilicon-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-lg-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-marvell-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-mediatek-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-nvidia-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-qcom-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-renesas-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-rockchip-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-socionext-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-sprd-6.4.0-150600.23.50.1","openSUSE Leap 15.6:dtb-xilinx-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:gfs2-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:gfs2-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-extra-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-64kb-optional-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-devel-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-extra-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-optional-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-azure-vdso-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-debug-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-debug-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-debug-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-base-6.4.0-150600.23.50.1.150600.12.22.1","openSUSE Leap 15.6:kernel-default-base-rebuild-6.4.0-150600.23.50.1.150600.12.22.1","openSUSE Leap 15.6:kernel-default-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-extra-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-livepatch-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-livepatch-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-optional-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-default-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-devel-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-devel-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-docs-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-docs-html-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-devel-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-kvmsmall-vdso-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-macros-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-obs-build-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-obs-qa-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-extra-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-livepatch-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-optional-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt-vdso-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-devel-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-rt_debug-vdso-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-source-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-source-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-source-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-source-vanilla-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-syms-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kernel-syms-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kernel-syms-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:kernel-zfcpdump-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:kselftests-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:kselftests-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:ocfs2-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:ocfs2-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:ocfs2-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:ocfs2-kmp-rt-6.4.0-150600.10.39.1","openSUSE Leap 15.6:reiserfs-kmp-64kb-6.4.0-150600.23.50.1","openSUSE Leap 15.6:reiserfs-kmp-azure-6.4.0-150600.8.37.1","openSUSE Leap 15.6:reiserfs-kmp-default-6.4.0-150600.23.50.1","openSUSE Leap 15.6:reiserfs-kmp-rt-6.4.0-150600.10.39.1"]}],"threats":[{"category":"impact","date":"2025-04-16T16:02:34Z","details":"moderate"}],"title":"CVE-2025-22058"}]}