BlackTreeCVE Intelligence
← Back to the CVE catalogue
Full vulnerability report · 2024
CVE-2022-48651High confidence

ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header

Linux · Linux

7.7HighCVSS 3.1
Recommended action
Within 7 days

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

Patch available
Distribution package intelligence

Ubuntu vendor package status

Canonical’s release and source-package findings are shown separately from local repository availability.

1 package state
Repository candidate not checked

A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard archivelinux-raspi-realtimeAffected, no fix publishedCanonical OVAL identifies this running kernel flavour as affected and does not publish a fixed package version in this definition.Not published in this feedCanonical record ↗Source updated 11 Sept 2026
Optional official sources

National CERT insights
?CERT means Computer Emergency Response Team; CSIRT is the closely related term Computer Security Incident Response Team.

Select the national-authority views to include. The exact source language is shown on each matched advisory. Your choice is remembered on this device and encoded in the shareable URL.

Official European source

ENISA European Vulnerability Database

Official EUVD identifiers, advisory evidence and known-exploited context. Missing fields are not treated as evidence of low risk.

1 current
ENISA EUVD identifier

EUVD-2022-51346

No EUVD known-exploited evidence

ENISA has published the identifier mapping but no EUVD description has been stored yet.

EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionWithin 7 days

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

Patch available
01

What, why and how

In the Linux kernel, the following vulnerability has been resolved: ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header If an AF_PACKET socket is used to send packets through ipvlan and the default xmit function of the AF_PACKET socket is changed from dev_queue_xmit() to packet_direct_xmit() via setsockopt() with the option name of PACKET_QDISC_BYPASS, the skb->mac_header may not be reset and remains as the initial value of 65535, this may trigger slab-out-of-bounds bugs as following: ================================================================= UG: KASAN: slab-out-of-bounds in ipvlan_xmit_mode_l2+0xdb/0x330 [ipvlan] PU: 2 PID: 1768 Comm: raw_send Kdump: loaded Not tainted 6.0.0-rc4+ #6 ardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-1.fc33 all Trace: print_address_description.constprop.0+0x1d/0x160 print_report.cold+0x4f/0x112 kasan_report+0xa3/0x130 ipvlan_xmit_mode_l2+0xdb/0x330 [ipvlan] ipvlan_start_xmit+0x29/0xa0 [ipvlan] __dev_direct_xmit+0x2e2/0x380 packet_direct_xmit+0x22/0x60 packet_snd+0x7c9/0xc40 sock_sendmsg+0x9a/0xa0 __sys_sendto+0x18a/0x230 __x64_sys_sendto+0x74/0x90 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x63/0xcd The root cause is: 1. packet_snd() only reset skb->mac_header when sock->type is SOCK_RAW and skb->protocol is not specified as in packet_parse_headers() 2. packet_direct_xmit() doesn't reset skb->mac_header as dev_queue_xmit() In this case, skb->mac_header is 65535 when ipvlan_xmit_mode_l2() is called. So when ipvlan_xmit_mode_l2() gets mac header with eth_hdr() which use "skb->head + skb->mac_header", out-of-bound access occurs. This patch replaces eth_hdr() with skb_eth_hdr() in ipvlan_xmit_mode_l2() and reset mac header in multicast to solve this out-of-bound bug.

What

In the Linux kernel, the following vulnerability has been resolved: ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header If an AF_PACKET socket is used to send packets through ipvlan and the default xmit function of the AF_PACKET socket is changed from dev_queue_xmit() to packet_direct_xmit() via setsockopt() with the option name of PACKET_QDISC_BYPASS, the skb->mac_header may not be reset and remains as the initial value of 65535, this may trigger slab-out-of-bounds bugs as following: ================================================================= UG: KASAN: slab-out-of-bounds in ipvlan_xmit_mode_l2+0xdb/0x330 [ipvlan] PU: 2 PID: 1768 Comm: raw_send Kdump: loaded Not tainted 6.0.0-rc4+ #6 ardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-1.fc33 all Trace: print_address_description.constprop.0+0x1d/0x160 print_report.cold+0x4f/0x112 kasan_report+0xa3/0x130 ipvlan_xmit_mode_l2+0xdb/0x330 [ipvlan] ipvlan_start_xmit+0x29/0xa0 [ipvlan] __dev_direct_xmit+0x2e2/0x380 packet_direct_xmit+0x22/0x60 packet_snd+0x7c9/0xc40 sock_sendmsg+0x9a/0xa0 __sys_sendto+0x18a/0x230 __x64_sys_sendto+0x74/0x90 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x63/0xcd The root cause is: 1. packet_snd() only reset skb->mac_header when sock->type is SOCK_RAW and skb->protocol is not specified as in packet_parse_headers() 2. packet_direct_xmit() doesn't reset skb->mac_header as dev_queue_xmit() In this case, skb->mac_header is 65535 when ipvlan_xmit_mode_l2() is called. So when ipvlan_xmit_mode_l2() gets mac header with eth_hdr() which use "skb->head + skb->mac_header", out-of-bound access occurs. This patch replaces eth_hdr() with skb_eth_hdr() in ipvlan_xmit_mode_l2() and reset mac header in multicast to solve this out-of-bound bug.

Why

The product reads data past the end, or before the beginning, of the intended buffer.

How

An attacker operating through local access may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

In the Linux kernel, the following vulnerability has been resolved: ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header If an AF_PACKET socket is used to send packets through ipvlan and the default xmit function of the AF_PACKET socket is changed from dev_queue_xmit() to packet_direct_xmit() via setsockopt() with the option name of PACKET_QDISC_BYPASS, the skb->mac_header may not be reset and remains as the initial value of 65535, this may trigger slab-out-of-bounds bugs as following: ================================================================= UG: KASAN: slab-out-of-bounds in ipvlan_xmit_mode_l2+0xdb/0x330 [ipvlan] PU: 2 PID: 1768 Comm: raw_send Kdump: loaded Not tainted 6.0.0-rc4+ #6 ardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-1.fc33 all Trace: print_address_description.constprop.0+0x1d/0x160 print_report.cold+0x4f/0x112 kasan_report+0xa3/0x130 ipvlan_xmit_mode_l2+0xdb/0x330 [ipvlan] ipvlan_start_xmit+0x29/0xa0 [ipvlan] __dev_direct_xmit+0x2e2/0x380 packet_direct_xmit+0x22/0x60 packet_snd+0x7c9/0xc40 sock_sendmsg+0x9a/0xa0 __sys_sendto+0x18a/0x230 __x64_sys_sendto+0x74/0x90 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x63/0xcd The root cause is: 1. packet_snd() only reset skb->mac_header when sock->type is SOCK_RAW and skb->protocol is not specified as in packet_parse_headers() 2. packet_direct_xmit() doesn't reset skb->mac_header as dev_queue_xmit() In this case, skb->mac_header is 65535 when ipvlan_xmit_mode_l2() is called. So when ipvlan_xmit_mode_l2() gets mac header with eth_hdr() which use "skb->head + skb->mac_header", out-of-bound access occurs. This patch replaces eth_hdr() with skb_eth_hdr() in ipvlan_xmit_mode_l2() and reset mac header in multicast to solve this out-of-bound bug.

Why

The product reads data past the end, or before the beginning, of the intended buffer.

How

An attacker operating through local access may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.

Observed exploitation
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
No confirmed evidence

No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.

Public PoC / exploit material
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
None recorded

No exploit-tagged reference or CISA SSVC proof-of-concept state is currently recorded. Research may still exist outside the structured feeds.

Likely attack path
local access → Out-of-bounds Read → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Local
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-125

CWE-125: Out-of-bounds Read. The product reads data past the end, or before the beginning, of the intended buffer.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H

Common Vulnerability Scoring System 3.1: the compact vector below is decoded into plain language.

AVLocalAttack vector: The attacker needs local access to the vulnerable system.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.PRNonePrivileges required: The attacker does not need an account or existing privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CNoneConfidentiality impact: No direct loss is represented by this metric.IHighIntegrity impact: A successful attack can cause a major loss.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
The issue can support a local privilege or sandbox boundary transition; normal system utilities may then be available in the gained context.
UnauthenticatedCWE-125
A

Official authority intelligence

Only matched European and national findings are included. Language selectors and unavailable sources are omitted.

BSI · German · WID-SEC-2024-0984Linux Kernel: Mehrere Schwachstellen

Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuführen oder einen nicht spezifizierten Angriff durchzuführen.

Official advisory ↗
CERT-FR · French · CERTFR-2025-AVI-0088Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2021-47489 Référence CVE CVE-2021-47491 https://www.cve.org/CVERecord?id=CVE-2021-47491 Référence CVE CVE-2021-47492 https://www.cve.org/CVERecord?id=CVE-2021-47492 Référence CVE CVE-2021-47517 https://www.cve.org/CVERecord?id=CVE-2021-47517 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2022-36280 https://www.cve.org/CVERecord?id=CVE-2022-36280 Référence CVE CVE-2022-48632 https://www.cve.org/CVERecord?id=CVE-2022-48632 Référence CVE CVE-2022-48634 https://www.cve.org/CVERecord?id=CVE-2022-48634 Référence CVE CVE-2022-48636 https://www.cve.org/CVERecord?id=CVE-2022-48636 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48652 https://www.cve.org/CVERecord?id=CVE-2022-48652 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48671 https://www.cve.org/CVERecord?id=CVE-2022-48671 Référence CVE CVE-2022-48672 https://www.cve.org/CVERecord?id=CVE-2022-48672 Référence CVE CVE-2022-48673 https://www.cve.org/CVERecord?id=CVE-2022-48673 Référence CVE CVE-2022-48675 https://www.cve.org/CVERecord?id=CVE-2022-48675 Référence CVE CVE-2022-48686 https://www.cve.org/CVERecord?id=CVE-2022-48686 Référence CVE CVE-2022-48687 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2025-AVI-0071Multiples vulnérabilités dans le noyau Linux de SUSE

use-su-20250203-1 Référence CVE CVE-2017-1000253 https://www.cve.org/CVERecord?id=CVE-2017-1000253 Référence CVE CVE-2017-14051 https://www.cve.org/CVERecord?id=CVE-2017-14051 Référence CVE CVE-2017-2636 https://www.cve.org/CVERecord?id=CVE-2017-2636 Référence CVE CVE-2021-47202 https://www.cve.org/CVERecord?id=CVE-2021-47202 Référence CVE CVE-2021-47517 https://www.cve.org/CVERecord?id=CVE-2021-47517 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2022-20368 https://www.cve.org/CVERecord?id=CVE-2022-20368 Référence CVE CVE-2022-36280 https://www.cve.org/CVERecord?id=CVE-2022-36280 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48742 https://www.cve.org/CVERecord?id=CVE-2022-48742 Référence CVE CVE-2022-48839 https://www.cve.org/CVERecord?id=CVE-2022-48839 Référence CVE CVE-2022-48956 https://www.cve.org/CVERecord?id=CVE-2022-48956 Référence CVE CVE-2022-49033 https://www.cve.org/CVERecord?id=CVE-2022-49033 Référence CVE CVE-2022-49035 https://www.cve.org/CVERecord?id=CVE-2022-49035 Référence CVE CVE-2023-1382 https://www.cve.org/CVERecord?id=CVE-2023-1382 Référence CVE CVE-2023-33951 https://www.cve.org/CVERecord?id=CV

Official advisory ↗
CERT-FR · French · CERTFR-2025-AVI-0047Multiples vulnérabilités dans le noyau Linux de SUSE

50-1 du 16 janvier 2025 https://www.suse.com/support/update/announcement/2025/suse-su-20250150-1 Référence CVE CVE-2021-46955 https://www.cve.org/CVERecord?id=CVE-2021-46955 Référence CVE CVE-2021-47291 https://www.cve.org/CVERecord?id=CVE-2021-47291 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2021-47402 https://www.cve.org/CVERecord?id=CVE-2021-47402 Référence CVE CVE-2021-47517 https://www.cve.org/CVERecord?id=CVE-2021-47517 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48686 https://www.cve.org/CVERecord?id=CVE-2022-48686 Référence CVE CVE-2022-48956 https://www.cve.org/CVERecord?id=CVE-2022-48956 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52752 https://www.cve.org/CVERecord?id=CVE-2023-52752 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CV

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-1079Multiples vulnérabilités dans le noyau Linux de SUSE

/suse-su-20244276-1 Référence CVE CVE-2021-46955 https://www.cve.org/CVERecord?id=CVE-2021-46955 Référence CVE CVE-2021-47291 https://www.cve.org/CVERecord?id=CVE-2021-47291 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2021-47402 https://www.cve.org/CVERecord?id=CVE-2021-47402 Référence CVE CVE-2021-47517 https://www.cve.org/CVERecord?id=CVE-2021-47517 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2021-47600 https://www.cve.org/CVERecord?id=CVE-2021-47600 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-31315 https://www.cve.org/CVERecord?id=CVE-2023-31315 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52752 https://www.cve.org/CVERecord?id=CVE-2023-52752 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CVE-2023-52846 Référence CVE CVE-2023-6531 https://www.cve.org/CVERecord?id=CVE

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-1048Multiples vulnérabilités dans le noyau Linux de SUSE

ord?id=CVE-2021-47402 Référence CVE CVE-2021-47416 https://www.cve.org/CVERecord?id=CVE-2021-47416 Référence CVE CVE-2021-47517 https://www.cve.org/CVERecord?id=CVE-2021-47517 Référence CVE CVE-2021-47534 https://www.cve.org/CVERecord?id=CVE-2021-47534 Référence CVE CVE-2021-47589 https://www.cve.org/CVERecord?id=CVE-2021-47589 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2021-47612 https://www.cve.org/CVERecord?id=CVE-2021-47612 Référence CVE CVE-2022-3435 https://www.cve.org/CVERecord?id=CVE-2022-3435 Référence CVE CVE-2022-45934 https://www.cve.org/CVERecord?id=CVE-2022-45934 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48664 https://www.cve.org/CVERecord?id=CVE-2022-48664 Référence CVE CVE-2022-48788 https://www.cve.org/CVERecord?id=CVE-2022-48788 Référence CVE CVE-2022-48789 https://www.cve.org/CVERecord?id=CVE-2022-48789 Référence CVE CVE-2022-48790 https://www.cve.org/CVERecord?id=CVE-2022-48790 Référence CVE CVE-2022-48809 https://www.cve.org/CVERecord?id=CVE-2022-48809 Référence CVE CVE-2022-48879 https://www.cve.org/CVERecord?id=CVE-2022-48879 Référence CVE CVE-2022-48946 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0955Multiples vulnérabilités dans le noyau Linux de SUSE

nouncement/2024/suse-su-20243884-1 Bulletin de sécurité SUSE SUSE-SU-2024:3885-1 du 04 novembre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243885-1 Référence CVE CVE-2021-47291 https://www.cve.org/CVERecord?id=CVE-2021-47291 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2021-47402 https://www.cve.org/CVERecord?id=CVE-2021-47402 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2021-47600 https://www.cve.org/CVERecord?id=CVE-2021-47600 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52752 https://www.cve.org/CVERecord?id=CVE-2023-52752 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CVE-2023-52846 Référence CVE CVE-2023-6546 https://www.cve.org/CVERecord?id=CVE-2023-6546 Référence CVE CVE-2024-23307 https://www.cve.org/CVERecord?id=CVE-

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0938Multiples vulnérabilités dans le noyau Linux de SUSE

42-1 du 31 octobre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243842-1 Référence CVE CVE-2021-46955 https://www.cve.org/CVERecord?id=CVE-2021-46955 Référence CVE CVE-2021-47291 https://www.cve.org/CVERecord?id=CVE-2021-47291 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2021-47402 https://www.cve.org/CVERecord?id=CVE-2021-47402 Référence CVE CVE-2021-47598 https://www.cve.org/CVERecord?id=CVE-2021-47598 Référence CVE CVE-2021-47600 https://www.cve.org/CVERecord?id=CVE-2021-47600 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52752 https://www.cve.org/CVERecord?id=CVE-2023-52752 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CVE-2023-52846 Référence CVE CVE-2023-6531 https://www.cve.org/CVERecord?id=CVE-2023-6531 Référence CVE CVE-2023-6546 https://www.cve.org/CVERecord?id=CVE-2

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0926Multiples vulnérabilités dans le noyau Linux de SUSE

SUSE-SU-2024:3642-1 du 15 octobre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243642-1 Bulletin de sécurité SUSE SUSE-SU-2024:3643-1 du 16 octobre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243643-1 Référence CVE CVE-2021-46955 https://www.cve.org/CVERecord?id=CVE-2021-46955 Référence CVE CVE-2021-47291 https://www.cve.org/CVERecord?id=CVE-2021-47291 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2021-47402 https://www.cve.org/CVERecord?id=CVE-2021-47402 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CVE-2023-52846 Référence CVE CVE-2023-6531 https://www.cve.org/CVERecord?id=CVE-2023-6531 Référence CVE CVE-2023-6546 https://www.cve.org/CVERecord?id=CVE-2023-6546 Référence CVE CVE-2024-23307 https://www.cve.org/CVERecord?id=CVE-20

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0907Multiples vulnérabilités dans le noyau Linux de SUSE

SUSE-SU-2024:3708-1 du 16 octobre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243708-1 Bulletin de sécurité SUSE SUSE-SU-2024:3710-1 du 16 octobre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243710-1 Référence CVE CVE-2021-46955 https://www.cve.org/CVERecord?id=CVE-2021-46955 Référence CVE CVE-2021-47291 https://www.cve.org/CVERecord?id=CVE-2021-47291 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2021-47402 https://www.cve.org/CVERecord?id=CVE-2021-47402 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CVE-2023-52502 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CVE-2023-52846 Référence CVE CVE-2023-6531 https://www.cve.org/CVERecord?id=CVE-2023-6531 Référence CVE CVE-2023-6546 https://www.cve.org/CVERecord?id=CVE-2023-6546 Référence CVE CVE-2024-23307 https://www.cve.org/CVERecord?id=CVE-20

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0822Multiples vulnérabilités dans le noyau Linux de SUSE

/www.suse.com/support/update/announcement/2024/suse-su-20243403-1 Bulletin de sécurité SUSE SUSE-SU-2024:3405-1 du 23 septembre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243405-1 Bulletin de sécurité SUSE SUSE-SU-2024:3408-1 du 24 septembre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243408-1 Bulletin de sécurité SUSE SUSE-SU-2024:3425-1 du 24 septembre 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20243425-1 Référence CVE CVE-2021-4441 https://www.cve.org/CVERecord?id=CVE-2021-4441 Référence CVE CVE-2022-4382 https://www.cve.org/CVERecord?id=CVE-2022-4382 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48868 https://www.cve.org/CVERecord?id=CVE-2022-48868 Référence CVE CVE-2022-48869 https://www.cve.org/CVERecord?id=CVE-2022-48869 Référence CVE CVE-2022-48870 https://www.cve.org/CVERecord?id=CVE-2022-48870 Référence CVE CVE-2022-48871 https://www.cve.org/CVERecord?id=CVE-2022-48871 Référence CVE CVE-2022-48872 https://www.cve.org/CVERecord?id=CVE-2022-48872 Référence CVE CVE-2022-48873 https://www.cve.org/CVERecord?id=CVE-2022-48873 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0800Multiples vulnérabilités dans le noyau Linux de SUSE

ecord?id=CVE-2021-47289 Référence CVE CVE-2021-47341 https://www.cve.org/CVERecord?id=CVE-2021-47341 Référence CVE CVE-2021-47373 https://www.cve.org/CVERecord?id=CVE-2021-47373 Référence CVE CVE-2021-47425 https://www.cve.org/CVERecord?id=CVE-2021-47425 Référence CVE CVE-2021-47549 https://www.cve.org/CVERecord?id=CVE-2021-47549 Référence CVE CVE-2022-0854 https://www.cve.org/CVERecord?id=CVE-2022-0854 Référence CVE CVE-2022-20368 https://www.cve.org/CVERecord?id=CVE-2022-20368 Référence CVE CVE-2022-28748 https://www.cve.org/CVERecord?id=CVE-2022-28748 Référence CVE CVE-2022-2964 https://www.cve.org/CVERecord?id=CVE-2022-2964 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48686 https://www.cve.org/CVERecord?id=CVE-2022-48686 Référence CVE CVE-2022-48751 https://www.cve.org/CVERecord?id=CVE-2022-48751 Référence CVE CVE-2022-48769 https://www.cve.org/CVERecord?id=CVE-2022-48769 Référence CVE CVE-2022-48775 https://www.cve.org/CVERecord?id=CVE-2022-48775 Référence CVE CVE-2022-48778 https://www.cve.org/CVERecord?id=CVE-2022-48778 Référence CVE CVE-2022-48786 https://www.cve.org/CVERecord?id=CVE-2022-48786 Référence CVE CVE-2022-48787 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0729Multiples vulnérabilités dans le noyau Linux de SUSE

De multiples vulnérabilités ont été découvertes dans le noyau Linux de SUSE. Certaines d'entre elles permettent à un attaquant de provoquer une élévation de privilèges, une atteinte à la confidentialité des données et un contournement de la politique de sécurité.

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0669Multiples vulnérabilités dans le noyau Linux de SUSE

024 https://www.suse.com/support/update/announcement/2024/suse-su-20242850-1 Bulletin de sécurité SUSE SUSE-SU-2024:2851-1 du 08 août 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20242851-1 Bulletin de sécurité SUSE SUSE-SU-2024:2852-1 du 08 août 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20242852-1 Bulletin de sécurité SUSE SUSE-SU-2024:2853-1 du 08 août 2024 https://www.suse.com/support/update/announcement/2024/suse-su-20242853-1 Référence CVE CVE-2021-46955 https://www.cve.org/CVERecord?id=CVE-2021-46955 Référence CVE CVE-2021-47383 https://www.cve.org/CVERecord?id=CVE-2021-47383 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE-2023-1829 Référence CVE CVE-2023-38417 https://www.cve.org/CVERecord?id=CVE-2023-38417 Référence CVE CVE-2023-47210 https://www.cve.org/CVERecord?id=CVE-2023-47210 Référence CVE CVE-2023-51780 https://www.cve.org/CVERecord?id=CVE-2023-51780 Référence CVE CVE-2023-52340 https://www.cve.org/CVERecord?id=CVE-2023-52340 Référence CVE CVE-2023-52435 https://www.cve.org/CVERecord?id=CVE-2023-52435 Référence CVE CVE-2023-52472 https://www.cve.org/CVERecord?id=CVE-2023-52472 Référence CVE CVE-2023-52502 https://www.cve.org/CVERecord?id=CV

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0610Multiples vulnérabilités dans le noyau Linux de SUSE

ord?id=CVE-2021-47587 Référence CVE CVE-2021-47589 https://www.cve.org/CVERecord?id=CVE-2021-47589 Référence CVE CVE-2021-47600 https://www.cve.org/CVERecord?id=CVE-2021-47600 Référence CVE CVE-2021-47602 https://www.cve.org/CVERecord?id=CVE-2021-47602 Référence CVE CVE-2021-47603 https://www.cve.org/CVERecord?id=CVE-2021-47603 Référence CVE CVE-2021-47609 https://www.cve.org/CVERecord?id=CVE-2021-47609 Référence CVE CVE-2021-47617 https://www.cve.org/CVERecord?id=CVE-2021-47617 Référence CVE CVE-2022-0435 https://www.cve.org/CVERecord?id=CVE-2022-0435 Référence CVE CVE-2022-22942 https://www.cve.org/CVERecord?id=CVE-2022-22942 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48711 https://www.cve.org/CVERecord?id=CVE-2022-48711 Référence CVE CVE-2022-48715 https://www.cve.org/CVERecord?id=CVE-2022-48715 Référence CVE CVE-2022-48722 https://www.cve.org/CVERecord?id=CVE-2022-48722 Référence CVE CVE-2022-48732 https://www.cve.org/CVERecord?id=CVE-2022-48732 Référence CVE CVE-2022-48733 https://www.cve.org/CVERecord?id=CVE-2022-48733 Référence CVE CVE-2022-48740 https://www.cve.org/CVERecord?id=CVE-2022-48740 Référence CVE CVE-2022-48743 https://www.cve.org/CVERecord?id=CVE-2022-48743 Référence CVE CVE-2022-48754 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0578Multiples vulnérabilités dans le noyau Linux de SUSE

ecord?id=CVE-2021-47617 Référence CVE CVE-2021-47618 https://www.cve.org/CVERecord?id=CVE-2021-47618 Référence CVE CVE-2021-47619 https://www.cve.org/CVERecord?id=CVE-2021-47619 Référence CVE CVE-2021-47620 https://www.cve.org/CVERecord?id=CVE-2021-47620 Référence CVE CVE-2022-0435 https://www.cve.org/CVERecord?id=CVE-2022-0435 Référence CVE CVE-2022-22942 https://www.cve.org/CVERecord?id=CVE-2022-22942 Référence CVE CVE-2022-23820 https://www.cve.org/CVERecord?id=CVE-2022-23820 Référence CVE CVE-2022-23830 https://www.cve.org/CVERecord?id=CVE-2022-23830 Référence CVE CVE-2022-2938 https://www.cve.org/CVERecord?id=CVE-2022-2938 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48711 https://www.cve.org/CVERecord?id=CVE-2022-48711 Référence CVE CVE-2022-48712 https://www.cve.org/CVERecord?id=CVE-2022-48712 Référence CVE CVE-2022-48713 https://www.cve.org/CVERecord?id=CVE-2022-48713 Référence CVE CVE-2022-48714 https://www.cve.org/CVERecord?id=CVE-2022-48714 Référence CVE CVE-2022-48715 https://www.cve.org/CVERecord?id=CVE-2022-48715 Référence CVE CVE-2022-48716 https://www.cve.org/CVERecord?id=CVE-2022-48716 Référence CVE CVE-2022-48717 https://www.cve.org/CVERecord?id=CVE-2022-48717 Référence CVE CVE-2022-48718 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0526Multiples vulnérabilités dans le noyau Linux de SUSE

ord?id=CVE-2021-47565 Référence CVE CVE-2021-47569 https://www.cve.org/CVERecord?id=CVE-2021-47569 Référence CVE CVE-2022-1195 https://www.cve.org/CVERecord?id=CVE-2022-1195 Référence CVE CVE-2022-20132 https://www.cve.org/CVERecord?id=CVE-2022-20132 Référence CVE CVE-2022-48632 https://www.cve.org/CVERecord?id=CVE-2022-48632 Référence CVE CVE-2022-48633 https://www.cve.org/CVERecord?id=CVE-2022-48633 Référence CVE CVE-2022-48634 https://www.cve.org/CVERecord?id=CVE-2022-48634 Référence CVE CVE-2022-48636 https://www.cve.org/CVERecord?id=CVE-2022-48636 Référence CVE CVE-2022-48650 https://www.cve.org/CVERecord?id=CVE-2022-48650 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48652 https://www.cve.org/CVERecord?id=CVE-2022-48652 Référence CVE CVE-2022-48662 https://www.cve.org/CVERecord?id=CVE-2022-48662 Référence CVE CVE-2022-48669 https://www.cve.org/CVERecord?id=CVE-2022-48669 Référence CVE CVE-2022-48671 https://www.cve.org/CVERecord?id=CVE-2022-48671 Référence CVE CVE-2022-48672 https://www.cve.org/CVERecord?id=CVE-2022-48672 Référence CVE CVE-2022-48673 https://www.cve.org/CVERecord?id=CVE-2022-48673 Référence CVE CVE-2022-48675 https://www.cve.org/CVERecord?id=CVE-2022-48675 Référence CVE CVE-2022-48686 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0513Multiples vulnérabilités dans le noyau Linux de SUSE

De multiples vulnérabilités ont été découvertes dans le noyau Linux de SUSE. Certaines d'entre elles permettent à un attaquant de provoquer une élévation de privilèges, une atteinte à la confidentialité des données et un contournement de la politique de sécurité.

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0458Multiples vulnérabilités dans le noyau Linux de SUSE

ord?id=CVE-2021-47207 Référence CVE CVE-2021-47211 https://www.cve.org/CVERecord?id=CVE-2021-47211 Référence CVE CVE-2021-47216 https://www.cve.org/CVERecord?id=CVE-2021-47216 Référence CVE CVE-2021-47217 https://www.cve.org/CVERecord?id=CVE-2021-47217 Référence CVE CVE-2022-0487 https://www.cve.org/CVERecord?id=CVE-2022-0487 Référence CVE CVE-2022-48619 https://www.cve.org/CVERecord?id=CVE-2022-48619 Référence CVE CVE-2022-48626 https://www.cve.org/CVERecord?id=CVE-2022-48626 Référence CVE CVE-2022-48636 https://www.cve.org/CVERecord?id=CVE-2022-48636 Référence CVE CVE-2022-48650 https://www.cve.org/CVERecord?id=CVE-2022-48650 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48667 https://www.cve.org/CVERecord?id=CVE-2022-48667 Référence CVE CVE-2022-48668 https://www.cve.org/CVERecord?id=CVE-2022-48668 Référence CVE CVE-2022-48687 https://www.cve.org/CVERecord?id=CVE-2022-48687 Référence CVE CVE-2022-48688 https://www.cve.org/CVERecord?id=CVE-2022-48688 Référence CVE CVE-2022-48695 https://www.cve.org/CVERecord?id=CVE-2022-48695 Référence CVE CVE-2022-48701 https://www.cve.org/CVERecord?id=CVE-2022-48701 Référence CVE CVE-2023-0160 https://www.cve.org/CVERecord?id=CVE-2023-0160 Référence CVE CVE-2023-28746 https://www.cve.org/CVERecord?id=CV

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0440Multiples vulnérabilités dans le noyau Linux de SUSE

ord?id=CVE-2021-47207 Référence CVE CVE-2021-47211 https://www.cve.org/CVERecord?id=CVE-2021-47211 Référence CVE CVE-2021-47216 https://www.cve.org/CVERecord?id=CVE-2021-47216 Référence CVE CVE-2021-47217 https://www.cve.org/CVERecord?id=CVE-2021-47217 Référence CVE CVE-2022-0487 https://www.cve.org/CVERecord?id=CVE-2022-0487 Référence CVE CVE-2022-48619 https://www.cve.org/CVERecord?id=CVE-2022-48619 Référence CVE CVE-2022-48626 https://www.cve.org/CVERecord?id=CVE-2022-48626 Référence CVE CVE-2022-48636 https://www.cve.org/CVERecord?id=CVE-2022-48636 Référence CVE CVE-2022-48650 https://www.cve.org/CVERecord?id=CVE-2022-48650 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48667 https://www.cve.org/CVERecord?id=CVE-2022-48667 Référence CVE CVE-2022-48668 https://www.cve.org/CVERecord?id=CVE-2022-48668 Référence CVE CVE-2022-48687 https://www.cve.org/CVERecord?id=CVE-2022-48687 Référence CVE CVE-2022-48688 https://www.cve.org/CVERecord?id=CVE-2022-48688 Référence CVE CVE-2022-48695 https://www.cve.org/CVERecord?id=CVE-2022-48695 Référence CVE CVE-2022-48701 https://www.cve.org/CVERecord?id=CVE-2022-48701 Référence CVE CVE-2023-0160 https://www.cve.org/CVERecord?id=CVE-2023-0160 Référence CVE CVE-2023-1829 https://www.cve.org/CVERecord?id=CVE

Official advisory ↗
CERT-FR · French · CERTFR-2024-AVI-0420Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-48638 Référence CVE CVE-2022-48639 https://www.cve.org/CVERecord?id=CVE-2022-48639 Référence CVE CVE-2022-48640 https://www.cve.org/CVERecord?id=CVE-2022-48640 Référence CVE CVE-2022-48642 https://www.cve.org/CVERecord?id=CVE-2022-48642 Référence CVE CVE-2022-48644 https://www.cve.org/CVERecord?id=CVE-2022-48644 Référence CVE CVE-2022-48646 https://www.cve.org/CVERecord?id=CVE-2022-48646 Référence CVE CVE-2022-48647 https://www.cve.org/CVERecord?id=CVE-2022-48647 Référence CVE CVE-2022-48648 https://www.cve.org/CVERecord?id=CVE-2022-48648 Référence CVE CVE-2022-48650 https://www.cve.org/CVERecord?id=CVE-2022-48650 Référence CVE CVE-2022-48651 https://www.cve.org/CVERecord?id=CVE-2022-48651 Référence CVE CVE-2022-48652 https://www.cve.org/CVERecord?id=CVE-2022-48652 Référence CVE CVE-2022-48653 https://www.cve.org/CVERecord?id=CVE-2022-48653 Référence CVE CVE-2022-48654 https://www.cve.org/CVERecord?id=CVE-2022-48654 Référence CVE CVE-2022-48655 https://www.cve.org/CVERecord?id=CVE-2022-48655 Référence CVE CVE-2022-48656 https://www.cve.org/CVERecord?id=CVE-2022-48656 Référence CVE CVE-2022-48657 https://www.cve.org/CVERecord?id=CVE-2022-48657 Référence CVE CVE-2022-48658 https://www.cve.org/CVERecord?id=CVE-2022-48658 Référence CVE CVE-2022-48659 https://www.cve.org/CVERecord?id=

Official advisory ↗
JVN iPedia · Japanese · JVNDB-2022-025937Linux の Linux Kernel における境界外読み取りに関する脆弱性

Linux の Linux Kernel には、境界外読み取りに関する脆弱性が存在します。

Official advisory ↗
03

Patch and workaround

Operational remediation based on structured source evidence.

Status
?Patch availability is based on structured fixed-version fields and authoritative update references. If no fix is verified, check the vendor advisory before making a change.
Patch available
Affected
Linux: 2ad7bf3638411cb547f2823df08166c13ab04269 < e2b46cd5796f083e452fbc624f65b80328b0c1a4, 2ad7bf3638411cb547f2823df08166c13ab04269 < 25efdbe5fe542c3063d1948cc4e98abcb57621ca, 2ad7bf3638411cb547f2823df08166c13ab04269 < bffcdade259c05ab3436b5fab711612093c275ef, 2ad7bf3638411cb547f2823df08166c13ab04269 < 346e94aa4a99378592c46d6a34c72703a32bd5be, 2ad7bf3638411cb547f2823df08166c13ab04269 < ab4a733874ead120691e8038272d22f8444d3638, 2ad7bf3638411cb547f2823df08166c13ab04269 < 8d06006c7eb75587d986da46c48ba9274f94e8e7, 2ad7bf3638411cb547f2823df08166c13ab04269 < b583e6b25bf9321c91154f6c78d2173ef12c4241, 2ad7bf3638411cb547f2823df08166c13ab04269 < 81225b2ea161af48e093f58e8dfee6d705b16af4, 3.19
Fixed
Linux: < 3.19, 4.9.330 ≤ 4.9.*, 4.14.295 ≤ 4.14.*, 4.19.260 ≤ 4.19.*, 5.4.215 ≤ 5.4.*, 5.10.146 ≤ 5.10.*, 5.15.71 ≤ 5.15.*, 5.19.12 ≤ 5.19.*, 6.0 ≤ *
Action
Review the linked authoritative reference and apply the recorded fixed release appropriate to the affected product branch.
Workaround
No verified workaround is recorded. Limit untrusted access and use least privilege until authoritative guidance is available.
04

Evidence and provenance

Published 28 Apr 2024 · Last source change 11 May 2026, 18:44 UTC · CWE-125 · Out-of-bounds Read

CVE recordCVE.org · 5.2
CVSS sourceCISA ADP
EPSS source
?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.
FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2022-51346
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceCISA ADP
NVD statusNVD enriched

Core structured fields are present and their contributing authorities are shown above.

Material change intelligence

What changed after publication

View recent updates ↗

No material field changes have been recorded since change tracking began. Routine source refreshes and cosmetic edits are intentionally excluded.

Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
Free version - for non-commercial use only.CVE-2022-48651 · cve.blacktree.nl