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

tty: n_gsm: fix deadlock and link starvation in outgoing data path

Linux · Linux

5.5MediumCVSS 3.1
Recommended action
Scheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
Distribution package intelligence

Ubuntu vendor package status

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

3 package states
Repository candidate not checked

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

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard 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
Ubuntu 24.04 LTSnoble · standard archivelinux-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
Ubuntu 24.04 LTSnoble · standard archivelinux-riscvAffected, 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-55382

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 actionScheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
01

What, why and how

In the Linux kernel, the following vulnerability has been resolved: tty: n_gsm: fix deadlock and link starvation in outgoing data path The current implementation queues up new control and user packets as needed and processes this queue down to the ldisc in the same code path. That means that the upper and the lower layer are hard coupled in the code. Due to this deadlocks can happen as seen below while transmitting data, especially during ldisc congestion. Furthermore, the data channels starve the control channel on high transmission load on the ldisc. Introduce an additional control channel data queue to prevent timeouts and link hangups during ldisc congestion. This is being processed before the user channel data queue in gsm_data_kick(), i.e. with the highest priority. Put the queue to ldisc data path into a workqueue and trigger it whenever new data has been put into the transmission queue. Change gsm_dlci_data_sweep() accordingly to fill up the transmission queue until TX_THRESH_HI. This solves the locking issue, keeps latency low and provides good performance on high data load. Note that now all packets from a DLCI are removed from the internal queue if the associated DLCI was closed. This ensures that no data is sent by the introduced write task to an already closed DLCI. BUG: spinlock recursion on CPU#0, test_v24_loop/124 lock: serial8250_ports+0x3a8/0x7500, .magic: dead4ead, .owner: test_v24_loop/124, .owner_cpu: 0 CPU: 0 PID: 124 Comm: test_v24_loop Tainted: G O 5.18.0-rc2 #3 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014 Call Trace: <IRQ> dump_stack_lvl+0x34/0x44 do_raw_spin_lock+0x76/0xa0 _raw_spin_lock_irqsave+0x72/0x80 uart_write_room+0x3b/0xc0 gsm_data_kick+0x14b/0x240 [n_gsm] gsmld_write_wakeup+0x35/0x70 [n_gsm] tty_wakeup+0x53/0x60 tty_port_default_wakeup+0x1b/0x30 serial8250_tx_chars+0x12f/0x220 serial8250_handle_irq.part.0+0xfe/0x150 serial8250_default_handle_irq+0x48/0x80 serial8250_interrupt+0x56/0xa0 __handle_irq_event_percpu+0x78/0x1f0 handle_irq_event+0x34/0x70 handle_fasteoi_irq+0x90/0x1e0 __common_interrupt+0x69/0x100 common_interrupt+0x48/0xc0 asm_common_interrupt+0x1e/0x40 RIP: 0010:__do_softirq+0x83/0x34e Code: 2a 0a ff 0f b7 ed c7 44 24 10 0a 00 00 00 48 c7 c7 51 2a 64 82 e8 2d e2 d5 ff 65 66 c7 05 83 af 1e 7e 00 00 fb b8 ff ff ff ff <49> c7 c2 40 61 80 82 0f bc c5 41 89 c4 41 83 c4 01 0f 84 e6 00 00 RSP: 0018:ffffc90000003f98 EFLAGS: 00000286 RAX: 00000000ffffffff RBX: 0000000000000000 RCX: 0000000000000000 RDX: 0000000000000000 RSI: ffffffff82642a51 RDI: ffffffff825bb5e7 RBP: 0000000000000200 R08: 00000008de3271a8 R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 R13: 0000000000000030 R14: 0000000000000000 R15: 0000000000000000 ? __do_softirq+0x73/0x34e irq_exit_rcu+0xb5/0x100 common_interrupt+0xa4/0xc0 </IRQ> <TASK> asm_common_interrupt+0x1e/0x40 RIP: 0010:_raw_spin_unlock_irqrestore+0x2e/0x50 Code: 00 55 48 89 fd 48 83 c7 18 53 48 89 f3 48 8b 74 24 10 e8 85 28 36 ff 48 89 ef e8 cd 58 36 ff 80 e7 02 74 01 fb bf 01 00 00 00 <e8> 3d 97 33 ff 65 8b 05 96 23 2b 7e 85 c0 74 03 5b 5d c3 0f 1f 44 RSP: 0018:ffffc9000020fd08 EFLAGS: 00000202 RAX: 0000000000000000 RBX: 0000000000000246 RCX: 0000000000000000 RDX: 0000000000000004 RSI: ffffffff8257fd74 RDI: 0000000000000001 RBP: ffff8880057de3a0 R08: 00000008de233000 R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 R13: 0000000000000100 R14: 0000000000000202 R15: ffff8880057df0b8 ? _raw_spin_unlock_irqrestore+0x23/0x50 gsmtty_write+0x65/0x80 [n_gsm] n_tty_write+0x33f/0x530 ? swake_up_all+0xe0/0xe0 file_tty_write.constprop.0+0x1b1/0x320 ? n_tty_flush_buffer+0xb0/0xb0 new_sync_write+0x10c/0x190 vfs_write+0x282/0x310 ksys_write+0x68/0xe0 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x44/0xae RIP: 0033:0x7f3e5e35c15c Code: 8b 7c 24 08 89 c5 e8 c5 ff ff ff 89 ef 89 44 24 ---truncated---

What

In the Linux kernel, the following vulnerability has been resolved: tty: n_gsm: fix deadlock and link starvation in outgoing data path The current implementation queues up new control and user packets as needed and processes this queue down to the ldisc in the same code path. That means that the upper and the lower layer are hard coupled in the code. Due to this deadlocks can happen as seen below while transmitting data, especially during ldisc congestion. Furthermore, the data channels starve the control channel on high transmission load on the ldisc. Introduce an additional control channel data queue to prevent timeouts and link hangups during ldisc congestion. This is being processed before the user channel data queue in gsm_data_kick(), i.e. with the highest priority. Put the queue to ldisc data path into a workqueue and trigger it whenever new data has been put into the transmission queue. Change gsm_dlci_data_sweep() accordingly to fill up the transmission queue until TX_THRESH_HI. This solves the locking issue, keeps latency low and provides good performance on high data load. Note that now all packets from a DLCI are removed from the internal queue if the associated DLCI was closed. This ensures that no data is sent by the introduced write task to an already closed DLCI. BUG: spinlock recursion on CPU#0, test_v24_loop/124 lock: serial8250_ports+0x3a8/0x7500, .magic: dead4ead, .owner: test_v24_loop/124, .owner_cpu: 0 CPU: 0 PID: 124 Comm: test_v24_loop Tainted: G O 5.18.0-rc2 #3 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014 Call Trace: <IRQ> dump_stack_lvl+0x34/0x44 do_raw_spin_lock+0x76/0xa0 _raw_spin_lock_irqsave+0x72/0x80 uart_write_room+0x3b/0xc0 gsm_data_kick+0x14b/0x240 [n_gsm] gsmld_write_wakeup+0x35/0x70 [n_gsm] tty_wakeup+0x53/0x60 tty_port_default_wakeup+0x1b/0x30 serial8250_tx_chars+0x12f/0x220 serial8250_handle_irq.part.0+0xfe/0x150 serial8250_default_handle_irq+0x48/0x80 serial8250_interrupt+0x56/0xa0 __handle_irq_event_percpu+0x78/0x1f0 handle_irq_event+0x34/0x70 handle_fasteoi_irq+0x90/0x1e0 __common_interrupt+0x69/0x100 common_interrupt+0x48/0xc0 asm_common_interrupt+0x1e/0x40 RIP: 0010:__do_softirq+0x83/0x34e Code: 2a 0a ff 0f b7 ed c7 44 24 10 0a 00 00 00 48 c7 c7 51 2a 64 82 e8 2d e2 d5 ff 65 66 c7 05 83 af 1e 7e 00 00 fb b8 ff ff ff ff <49> c7 c2 40 61 80 82 0f bc c5 41 89 c4 41 83 c4 01 0f 84 e6 00 00 RSP: 0018:ffffc90000003f98 EFLAGS: 00000286 RAX: 00000000ffffffff RBX: 0000000000000000 RCX: 0000000000000000 RDX: 0000000000000000 RSI: ffffffff82642a51 RDI: ffffffff825bb5e7 RBP: 0000000000000200 R08: 00000008de3271a8 R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 R13: 0000000000000030 R14: 0000000000000000 R15: 0000000000000000 ? __do_softirq+0x73/0x34e irq_exit_rcu+0xb5/0x100 common_interrupt+0xa4/0xc0 </IRQ> <TASK> asm_common_interrupt+0x1e/0x40 RIP: 0010:_raw_spin_unlock_irqrestore+0x2e/0x50 Code: 00 55 48 89 fd 48 83 c7 18 53 48 89 f3 48 8b 74 24 10 e8 85 28 36 ff 48 89 ef e8 cd 58 36 ff 80 e7 02 74 01 fb bf 01 00 00 00 <e8> 3d 97 33 ff 65 8b 05 96 23 2b 7e 85 c0 74 03 5b 5d c3 0f 1f 44 RSP: 0018:ffffc9000020fd08 EFLAGS: 00000202 RAX: 0000000000000000 RBX: 0000000000000246 RCX: 0000000000000000 RDX: 0000000000000004 RSI: ffffffff8257fd74 RDI: 0000000000000001 RBP: ffff8880057de3a0 R08: 00000008de233000 R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 R13: 0000000000000100 R14: 0000000000000202 R15: ffff8880057df0b8 ? _raw_spin_unlock_irqrestore+0x23/0x50 gsmtty_write+0x65/0x80 [n_gsm] n_tty_write+0x33f/0x530 ? swake_up_all+0xe0/0xe0 file_tty_write.constprop.0+0x1b1/0x320 ? n_tty_flush_buffer+0xb0/0xb0 new_sync_write+0x10c/0x190 vfs_write+0x282/0x310 ksys_write+0x68/0xe0 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x44/0xae RIP: 0033:0x7f3e5e35c15c Code: 8b 7c 24 08 89 c5 e8 c5 ff ff ff 89 ef 89 44 24 ---truncated---

Why

The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors.

How

An attacker operating through local access may attempt exploitation with low privileges. 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: tty: n_gsm: fix deadlock and link starvation in outgoing data path The current implementation queues up new control and user packets as needed and processes this queue down to the ldisc in the same code path. That means that the upper and the lower layer are hard coupled in the code. Due to this deadlocks can happen as seen below while transmitting data, especially during ldisc congestion. Furthermore, the data channels starve the control channel on high transmission load on the ldisc. Introduce an additional control channel data queue to prevent timeouts and link hangups during ldisc congestion. This is being processed before the user channel data queue in gsm_data_kick(), i.e. with the highest priority. Put the queue to ldisc data path into a workqueue and trigger it whenever new data has been put into the transmission queue. Change gsm_dlci_data_sweep() accordingly to fill up the transmission queue until TX_THRESH_HI. This solves the locking issue, keeps latency low and provides good performance on high data load. Note that now all packets from a DLCI are removed from the internal queue if the associated DLCI was closed. This ensures that no data is sent by the introduced write task to an already closed DLCI. BUG: spinlock recursion on CPU#0, test_v24_loop/124 lock: serial8250_ports+0x3a8/0x7500, .magic: dead4ead, .owner: test_v24_loop/124, .owner_cpu: 0 CPU: 0 PID: 124 Comm: test_v24_loop Tainted: G O 5.18.0-rc2 #3 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014 Call Trace: <IRQ> dump_stack_lvl+0x34/0x44 do_raw_spin_lock+0x76/0xa0 _raw_spin_lock_irqsave+0x72/0x80 uart_write_room+0x3b/0xc0 gsm_data_kick+0x14b/0x240 [n_gsm] gsmld_write_wakeup+0x35/0x70 [n_gsm] tty_wakeup+0x53/0x60 tty_port_default_wakeup+0x1b/0x30 serial8250_tx_chars+0x12f/0x220 serial8250_handle_irq.part.0+0xfe/0x150 serial8250_default_handle_irq+0x48/0x80 serial8250_interrupt+0x56/0xa0 __handle_irq_event_percpu+0x78/0x1f0 handle_irq_event+0x34/0x70 handle_fasteoi_irq+0x90/0x1e0 __common_interrupt+0x69/0x100 common_interrupt+0x48/0xc0 asm_common_interrupt+0x1e/0x40 RIP: 0010:__do_softirq+0x83/0x34e Code: 2a 0a ff 0f b7 ed c7 44 24 10 0a 00 00 00 48 c7 c7 51 2a 64 82 e8 2d e2 d5 ff 65 66 c7 05 83 af 1e 7e 00 00 fb b8 ff ff ff ff <49> c7 c2 40 61 80 82 0f bc c5 41 89 c4 41 83 c4 01 0f 84 e6 00 00 RSP: 0018:ffffc90000003f98 EFLAGS: 00000286 RAX: 00000000ffffffff RBX: 0000000000000000 RCX: 0000000000000000 RDX: 0000000000000000 RSI: ffffffff82642a51 RDI: ffffffff825bb5e7 RBP: 0000000000000200 R08: 00000008de3271a8 R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 R13: 0000000000000030 R14: 0000000000000000 R15: 0000000000000000 ? __do_softirq+0x73/0x34e irq_exit_rcu+0xb5/0x100 common_interrupt+0xa4/0xc0 </IRQ> <TASK> asm_common_interrupt+0x1e/0x40 RIP: 0010:_raw_spin_unlock_irqrestore+0x2e/0x50 Code: 00 55 48 89 fd 48 83 c7 18 53 48 89 f3 48 8b 74 24 10 e8 85 28 36 ff 48 89 ef e8 cd 58 36 ff 80 e7 02 74 01 fb bf 01 00 00 00 <e8> 3d 97 33 ff 65 8b 05 96 23 2b 7e 85 c0 74 03 5b 5d c3 0f 1f 44 RSP: 0018:ffffc9000020fd08 EFLAGS: 00000202 RAX: 0000000000000000 RBX: 0000000000000246 RCX: 0000000000000000 RDX: 0000000000000004 RSI: ffffffff8257fd74 RDI: 0000000000000001 RBP: ffff8880057de3a0 R08: 00000008de233000 R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 R13: 0000000000000100 R14: 0000000000000202 R15: ffff8880057df0b8 ? _raw_spin_unlock_irqrestore+0x23/0x50 gsmtty_write+0x65/0x80 [n_gsm] n_tty_write+0x33f/0x530 ? swake_up_all+0xe0/0xe0 file_tty_write.constprop.0+0x1b1/0x320 ? n_tty_flush_buffer+0xb0/0xb0 new_sync_write+0x10c/0x190 vfs_write+0x282/0x310 ksys_write+0x68/0xe0 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x44/0xae RIP: 0033:0x7f3e5e35c15c Code: 8b 7c 24 08 89 c5 e8 c5 ff ff ff 89 ef 89 44 24 ---truncated---

Why

The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors.

How

An attacker operating through local access may attempt exploitation with low privileges. 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 → Improper Locking → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Local
Privileges required
Low: a basic authenticated account is required
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-667

CWE-667: Improper Locking. The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors.

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:L/UI:N/S:U/C:N/I:N/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.PRLowPrivileges required: The attacker needs basic user-level 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.INoneIntegrity impact: No direct loss is represented by this metric.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.
CWE-667
A

Official authority intelligence

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

BSI · German · WID-SEC-2025-1350Linux Kernel: Mehrere Schwachstellen ermöglichen Denial of Service

Ein lokaler Angreifer kann mehrere Schwachstellen in Linux Kernel ausnutzen, um einen Denial of Service Angriff durchzuführen.

Official advisory ↗
CERT-FR · French · CERTFR-2026-AVI-1093Multiples vulnérabilités dans le noyau Linux d'Ubuntu

ty/notices/USN-8644-3 Bulletin de sécurité Ubuntu USN-8658-4 du 27 août 2026 https://ubuntu.com/security/notices/USN-8658-4 Bulletin de sécurité Ubuntu USN-8661-3 du 27 août 2026 https://ubuntu.com/security/notices/USN-8661-3 Bulletin de sécurité Ubuntu USN-8666-3 du 27 août 2026 https://ubuntu.com/security/notices/USN-8666-3 Référence CVE CVE-2021-47378 https://www.cve.org/CVERecord?id=CVE-2021-47378 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=CVE-2023-53629 Référence CVE CVE-2024-27389 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2026-AVI-0985Multiples vulnérabilités dans le noyau Linux d'Ubuntu

onnées et un problème de sécurité non spécifié par l'éditeur. Solutions Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation). Documentation Bulletin de sécurité Ubuntu USN-8620-3 du 31 juillet 2026 https://ubuntu.com/security/notices/USN-8620-3 Bulletin de sécurité Ubuntu USN-8620-4 du 31 juillet 2026 https://ubuntu.com/security/notices/USN-8620-4 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=CVE-2023-53629 Référence CVE CVE-2024-27389 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2026-AVI-0954Multiples vulnérabilités dans le noyau Linux d'Ubuntu

s/USN-8615-2 Bulletin de sécurité Ubuntu USN-8620-2 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8620-2 Bulletin de sécurité Ubuntu USN-8622-1 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8622-1 Bulletin de sécurité Ubuntu USN-8623-1 du 29 juillet 2026 https://ubuntu.com/security/notices/USN-8623-1 Référence CVE CVE-2022-48816 https://www.cve.org/CVERecord?id=CVE-2022-48816 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=CVE-2023-53629 Référence CVE CVE-2023-53673 https://www.cve.org/CVERecord?id=

Official advisory ↗
CERT-FR · French · CERTFR-2026-AVI-0926Multiples vulnérabilités dans le noyau Linux d'Ubuntu

urité Ubuntu USN-8594-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8594-1 Bulletin de sécurité Ubuntu USN-8595-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8595-1 Bulletin de sécurité Ubuntu USN-8596-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8596-1 Bulletin de sécurité Ubuntu USN-8597-1 du 23 juillet 2026 https://ubuntu.com/security/notices/USN-8597-1 Référence CVE CVE-2022-49803 https://www.cve.org/CVERecord?id=CVE-2022-49803 Référence CVE CVE-2022-49961 https://www.cve.org/CVERecord?id=CVE-2022-49961 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50552 https://www.cve.org/CVERecord?id=CVE-2022-50552 Référence CVE CVE-2023-45896 https://www.cve.org/CVERecord?id=CVE-2023-45896 Référence CVE CVE-2023-52682 https://www.cve.org/CVERecord?id=CVE-2023-52682 Référence CVE CVE-2023-52737 https://www.cve.org/CVERecord?id=CVE-2023-52737 Référence CVE CVE-2023-53545 https://www.cve.org/CVERecord?id=CVE-2023-53545 Référence CVE CVE-2023-53596 https://www.cve.org/CVERecord?id=CVE-2023-53596 Référence CVE CVE-2023-53629 https://www.cve.org/CVERecord?id=CVE-2023-53629 Référence CVE CVE-2024-27389 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49997 Référence CVE CVE-2022-50002 https://www.cve.org/CVERecord?id=CVE-2022-50002 Référence CVE CVE-2022-50009 https://www.cve.org/CVERecord?id=CVE-2022-50009 Référence CVE CVE-2022-50015 https://www.cve.org/CVERecord?id=CVE-2022-50015 Référence CVE CVE-2022-50016 https://www.cve.org/CVERecord?id=CVE-2022-50016 Référence CVE CVE-2022-50071 https://www.cve.org/CVERecord?id=CVE-2022-50071 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50090 https://www.cve.org/CVERecord?id=CVE-2022-50090 Référence CVE CVE-2022-50095 https://www.cve.org/CVERecord?id=CVE-2022-50095 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50163 https://www.cve.org/CVERecord?id=CVE-2022-50163 Référence CVE CVE-2022-50166 https://www.cve.org/CVERecord?id=CVE-2022-50166 Référence CVE CVE-2022-50167 https://www.cve.org/CVERecord?id=CVE-2022-50167 Référence CVE CVE-2022-50178 https://www.cve.org/CVERecord?id=CVE-2022-50178 Référence CVE CVE-2022-50195 https://www.cve.org/CVERecord?id=CVE-2022-50195 Référence CVE CVE-2022-50212 https://www.cve.org/CVERecord?id=CVE-2022-50212 Référence CVE CVE-2022-50213 https://www.cve.org/CVERecord?id=CVE-2022-50213 Référence CVE CVE-2022-50224 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49997 Référence CVE CVE-2022-50002 https://www.cve.org/CVERecord?id=CVE-2022-50002 Référence CVE CVE-2022-50009 https://www.cve.org/CVERecord?id=CVE-2022-50009 Référence CVE CVE-2022-50015 https://www.cve.org/CVERecord?id=CVE-2022-50015 Référence CVE CVE-2022-50016 https://www.cve.org/CVERecord?id=CVE-2022-50016 Référence CVE CVE-2022-50071 https://www.cve.org/CVERecord?id=CVE-2022-50071 Référence CVE CVE-2022-50073 https://www.cve.org/CVERecord?id=CVE-2022-50073 Référence CVE CVE-2022-50090 https://www.cve.org/CVERecord?id=CVE-2022-50090 Référence CVE CVE-2022-50095 https://www.cve.org/CVERecord?id=CVE-2022-50095 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50163 https://www.cve.org/CVERecord?id=CVE-2022-50163 Référence CVE CVE-2022-50166 https://www.cve.org/CVERecord?id=CVE-2022-50166 Référence CVE CVE-2022-50167 https://www.cve.org/CVERecord?id=CVE-2022-50167 Référence CVE CVE-2022-50178 https://www.cve.org/CVERecord?id=CVE-2022-50178 Référence CVE CVE-2022-50195 https://www.cve.org/CVERecord?id=CVE-2022-50195 Référence CVE CVE-2022-50212 https://www.cve.org/CVERecord?id=CVE-2022-50212 Référence CVE CVE-2022-50213 https://www.cve.org/CVERecord?id=CVE-2022-50213 Référence CVE CVE-2022-50224 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-50101 Référence CVE CVE-2022-50102 https://www.cve.org/CVERecord?id=CVE-2022-50102 Référence CVE CVE-2022-50103 https://www.cve.org/CVERecord?id=CVE-2022-50103 Référence CVE CVE-2022-50104 https://www.cve.org/CVERecord?id=CVE-2022-50104 Référence CVE CVE-2022-50108 https://www.cve.org/CVERecord?id=CVE-2022-50108 Référence CVE CVE-2022-50109 https://www.cve.org/CVERecord?id=CVE-2022-50109 Référence CVE CVE-2022-50110 https://www.cve.org/CVERecord?id=CVE-2022-50110 Référence CVE CVE-2022-50111 https://www.cve.org/CVERecord?id=CVE-2022-50111 Référence CVE CVE-2022-50112 https://www.cve.org/CVERecord?id=CVE-2022-50112 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50118 https://www.cve.org/CVERecord?id=CVE-2022-50118 Référence CVE CVE-2022-50120 https://www.cve.org/CVERecord?id=CVE-2022-50120 Référence CVE CVE-2022-50121 https://www.cve.org/CVERecord?id=CVE-2022-50121 Référence CVE CVE-2022-50124 https://www.cve.org/CVERecord?id=CVE-2022-50124 Référence CVE CVE-2022-50125 https://www.cve.org/CVERecord?id=CVE-2022-50125 Référence CVE CVE-2022-50126 https://www.cve.org/CVERecord?id=CVE-2022-50126 Référence CVE CVE-2022-50127 https://www.cve.org/CVERecord?id=CVE-2022-50127 Référence CVE CVE-2022-50129 https://www.cve.org/CVERecord?id=

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

-1 Bulletin de sécurité SUSE SUSE-SU-2025:4306-1 du 28 novembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-20254306-1 Bulletin de sécurité SUSE SUSE-SU-2025:4311-1 du 28 novembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-20254311-1 Bulletin de sécurité SUSE SUSE-SU-2025:4315-1 du 01 décembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-20254315-1 Bulletin de sécurité SUSE SUSE-SU-2025:4320-1 du 04 décembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-20254320-1 Référence CVE CVE-2022-43945 https://www.cve.org/CVERecord?id=CVE-2022-43945 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50252 https://www.cve.org/CVERecord?id=CVE-2022-50252 Référence CVE CVE-2022-50272 https://www.cve.org/CVERecord?id=CVE-2022-50272 Référence CVE CVE-2022-50327 https://www.cve.org/CVERecord?id=CVE-2022-50327 Référence CVE CVE-2022-50334 https://www.cve.org/CVERecord?id=CVE-2022-50334 Référence CVE CVE-2022-50381 https://www.cve.org/CVERecord?id=CVE-2022-50381 Référence CVE CVE-2022-50409 https://www.cve.org/CVERecord?id=CVE-2022-50409 Référence CVE CVE-2022-50470 https://www.cve.org/CVERecord?id=CVE-2022-50470 Référence CVE CVE-2022-50471 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-50102 Référence CVE CVE-2022-50103 https://www.cve.org/CVERecord?id=CVE-2022-50103 Référence CVE CVE-2022-50104 https://www.cve.org/CVERecord?id=CVE-2022-50104 Référence CVE CVE-2022-50108 https://www.cve.org/CVERecord?id=CVE-2022-50108 Référence CVE CVE-2022-50109 https://www.cve.org/CVERecord?id=CVE-2022-50109 Référence CVE CVE-2022-50110 https://www.cve.org/CVERecord?id=CVE-2022-50110 Référence CVE CVE-2022-50111 https://www.cve.org/CVERecord?id=CVE-2022-50111 Référence CVE CVE-2022-50112 https://www.cve.org/CVERecord?id=CVE-2022-50112 Référence CVE CVE-2022-50115 https://www.cve.org/CVERecord?id=CVE-2022-50115 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50117 https://www.cve.org/CVERecord?id=CVE-2022-50117 Référence CVE CVE-2022-50118 https://www.cve.org/CVERecord?id=CVE-2022-50118 Référence CVE CVE-2022-50120 https://www.cve.org/CVERecord?id=CVE-2022-50120 Référence CVE CVE-2022-50121 https://www.cve.org/CVERecord?id=CVE-2022-50121 Référence CVE CVE-2022-50124 https://www.cve.org/CVERecord?id=CVE-2022-50124 Référence CVE CVE-2022-50125 https://www.cve.org/CVERecord?id=CVE-2022-50125 Référence CVE CVE-2022-50126 https://www.cve.org/CVERecord?id=CVE-2022-50126 Référence CVE CVE-2022-50127 https://www.cve.org/CVERecord?id=

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

de sécurité SUSE SUSE-SU-2025:03414-1 du 28 septembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-202503414-1 Bulletin de sécurité SUSE SUSE-SU-2025:03416-1 du 28 septembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-202503416-1 Bulletin de sécurité SUSE SUSE-SU-2025:03418-1 du 28 septembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-202503418-1 Bulletin de sécurité SUSE SUSE-SU-2025:03419-1 du 28 septembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-202503419-1 Référence CVE CVE-2022-49492 https://www.cve.org/CVERecord?id=CVE-2022-49492 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2023-3867 https://www.cve.org/CVERecord?id=CVE-2023-3867 Référence CVE CVE-2023-4130 https://www.cve.org/CVERecord?id=CVE-2023-4130 Référence CVE CVE-2023-4515 https://www.cve.org/CVERecord?id=CVE-2023-4515 Référence CVE CVE-2023-53117 https://www.cve.org/CVERecord?id=CVE-2023-53117 Référence CVE CVE-2024-26661 https://www.cve.org/CVERecord?id=CVE-2024-26661 Référence CVE CVE-2024-26808 https://www.cve.org/CVERecord?id=CVE-2024-26808 Référence CVE CVE-2024-42265 https://www.cve.org/CVERecord?id=CVE-2024-42265 Référence CVE CVE-2024-46733 https://www.cve.org/CVERecord?id=CVE-20

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

pdate/announcement/2025/suse-su-202503356-1 Bulletin de sécurité SUSE SUSE-SU-2025:03358-1 du 25 septembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-202503358-1 Bulletin de sécurité SUSE SUSE-SU-2025:03359-1 du 25 septembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-202503359-1 Référence CVE CVE-2022-29900 https://www.cve.org/CVERecord?id=CVE-2022-29900 Référence CVE CVE-2022-29901 https://www.cve.org/CVERecord?id=CVE-2022-29901 Référence CVE CVE-2022-49492 https://www.cve.org/CVERecord?id=CVE-2022-49492 Référence CVE CVE-2022-49980 https://www.cve.org/CVERecord?id=CVE-2022-49980 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2023-3867 https://www.cve.org/CVERecord?id=CVE-2023-3867 Référence CVE CVE-2023-4130 https://www.cve.org/CVERecord?id=CVE-2023-4130 Référence CVE CVE-2023-4515 https://www.cve.org/CVERecord?id=CVE-2023-4515 Référence CVE CVE-2023-53117 https://www.cve.org/CVERecord?id=CVE-2023-53117 Référence CVE CVE-2024-26661 https://www.cve.org/CVERecord?id=CVE-2024-26661 Référence CVE CVE-2024-26808 https://www.cve.org/CVERecord?id=CVE-2024-26808 Référence CVE CVE-2024-42265 https://www.cve.org/CVERecord?id=CVE-2024-42265 Référence CVE CVE-2024-46733 https://www.cve.org/CVERecord?id=CVE-20

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

suse-su-202503272-1 Référence CVE CVE-2022-49053 https://www.cve.org/CVERecord?id=CVE-2022-49053 Référence CVE CVE-2022-49967 https://www.cve.org/CVERecord?id=CVE-2022-49967 Référence CVE CVE-2022-49975 https://www.cve.org/CVERecord?id=CVE-2022-49975 Référence CVE CVE-2022-49980 https://www.cve.org/CVERecord?id=CVE-2022-49980 Référence CVE CVE-2022-49981 https://www.cve.org/CVERecord?id=CVE-2022-49981 Référence CVE CVE-2022-50007 https://www.cve.org/CVERecord?id=CVE-2022-50007 Référence CVE CVE-2022-50066 https://www.cve.org/CVERecord?id=CVE-2022-50066 Référence CVE CVE-2022-50080 https://www.cve.org/CVERecord?id=CVE-2022-50080 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50127 https://www.cve.org/CVERecord?id=CVE-2022-50127 Référence CVE CVE-2022-50138 https://www.cve.org/CVERecord?id=CVE-2022-50138 Référence CVE CVE-2022-50141 https://www.cve.org/CVERecord?id=CVE-2022-50141 Référence CVE CVE-2022-50162 https://www.cve.org/CVERecord?id=CVE-2022-50162 Référence CVE CVE-2022-50185 https://www.cve.org/CVERecord?id=CVE-2022-50185 Référence CVE CVE-2022-50191 https://www.cve.org/CVERecord?id=CVE-2022-50191 Référence CVE CVE-2022-50211 https://www.cve.org/CVERecord?id=CVE-2022-50211 Référence CVE CVE-2022-50228 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-50101 Référence CVE CVE-2022-50102 https://www.cve.org/CVERecord?id=CVE-2022-50102 Référence CVE CVE-2022-50103 https://www.cve.org/CVERecord?id=CVE-2022-50103 Référence CVE CVE-2022-50104 https://www.cve.org/CVERecord?id=CVE-2022-50104 Référence CVE CVE-2022-50108 https://www.cve.org/CVERecord?id=CVE-2022-50108 Référence CVE CVE-2022-50109 https://www.cve.org/CVERecord?id=CVE-2022-50109 Référence CVE CVE-2022-50110 https://www.cve.org/CVERecord?id=CVE-2022-50110 Référence CVE CVE-2022-50111 https://www.cve.org/CVERecord?id=CVE-2022-50111 Référence CVE CVE-2022-50112 https://www.cve.org/CVERecord?id=CVE-2022-50112 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50118 https://www.cve.org/CVERecord?id=CVE-2022-50118 Référence CVE CVE-2022-50120 https://www.cve.org/CVERecord?id=CVE-2022-50120 Référence CVE CVE-2022-50121 https://www.cve.org/CVERecord?id=CVE-2022-50121 Référence CVE CVE-2022-50124 https://www.cve.org/CVERecord?id=CVE-2022-50124 Référence CVE CVE-2022-50125 https://www.cve.org/CVERecord?id=CVE-2022-50125 Référence CVE CVE-2022-50126 https://www.cve.org/CVERecord?id=CVE-2022-50126 Référence CVE CVE-2022-50127 https://www.cve.org/CVERecord?id=CVE-2022-50127 Référence CVE CVE-2022-50129 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-50102 Référence CVE CVE-2022-50103 https://www.cve.org/CVERecord?id=CVE-2022-50103 Référence CVE CVE-2022-50104 https://www.cve.org/CVERecord?id=CVE-2022-50104 Référence CVE CVE-2022-50108 https://www.cve.org/CVERecord?id=CVE-2022-50108 Référence CVE CVE-2022-50109 https://www.cve.org/CVERecord?id=CVE-2022-50109 Référence CVE CVE-2022-50110 https://www.cve.org/CVERecord?id=CVE-2022-50110 Référence CVE CVE-2022-50111 https://www.cve.org/CVERecord?id=CVE-2022-50111 Référence CVE CVE-2022-50112 https://www.cve.org/CVERecord?id=CVE-2022-50112 Référence CVE CVE-2022-50115 https://www.cve.org/CVERecord?id=CVE-2022-50115 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50117 https://www.cve.org/CVERecord?id=CVE-2022-50117 Référence CVE CVE-2022-50118 https://www.cve.org/CVERecord?id=CVE-2022-50118 Référence CVE CVE-2022-50120 https://www.cve.org/CVERecord?id=CVE-2022-50120 Référence CVE CVE-2022-50121 https://www.cve.org/CVERecord?id=CVE-2022-50121 Référence CVE CVE-2022-50124 https://www.cve.org/CVERecord?id=CVE-2022-50124 Référence CVE CVE-2022-50125 https://www.cve.org/CVERecord?id=CVE-2022-50125 Référence CVE CVE-2022-50126 https://www.cve.org/CVERecord?id=CVE-2022-50126 Référence CVE CVE-2022-50127 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-50102 Référence CVE CVE-2022-50103 https://www.cve.org/CVERecord?id=CVE-2022-50103 Référence CVE CVE-2022-50104 https://www.cve.org/CVERecord?id=CVE-2022-50104 Référence CVE CVE-2022-50108 https://www.cve.org/CVERecord?id=CVE-2022-50108 Référence CVE CVE-2022-50109 https://www.cve.org/CVERecord?id=CVE-2022-50109 Référence CVE CVE-2022-50110 https://www.cve.org/CVERecord?id=CVE-2022-50110 Référence CVE CVE-2022-50111 https://www.cve.org/CVERecord?id=CVE-2022-50111 Référence CVE CVE-2022-50112 https://www.cve.org/CVERecord?id=CVE-2022-50112 Référence CVE CVE-2022-50115 https://www.cve.org/CVERecord?id=CVE-2022-50115 Référence CVE CVE-2022-50116 https://www.cve.org/CVERecord?id=CVE-2022-50116 Référence CVE CVE-2022-50117 https://www.cve.org/CVERecord?id=CVE-2022-50117 Référence CVE CVE-2022-50118 https://www.cve.org/CVERecord?id=CVE-2022-50118 Référence CVE CVE-2022-50120 https://www.cve.org/CVERecord?id=CVE-2022-50120 Référence CVE CVE-2022-50121 https://www.cve.org/CVERecord?id=CVE-2022-50121 Référence CVE CVE-2022-50124 https://www.cve.org/CVERecord?id=CVE-2022-50124 Référence CVE CVE-2022-50125 https://www.cve.org/CVERecord?id=CVE-2022-50125 Référence CVE CVE-2022-50126 https://www.cve.org/CVERecord?id=CVE-2022-50126 Référence CVE CVE-2022-50127 https://www.cve.org/CVERecord?id=

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: e1eaea46bb4020b38a141b84f88565d4603f8dd0 < 5020173e7e7725110a8d4be1359bf1dfc4b1814d, e1eaea46bb4020b38a141b84f88565d4603f8dd0 < c165698c9919b000bdbe73859d3bb7b33bdb9223, e1eaea46bb4020b38a141b84f88565d4603f8dd0 < 7962a4b900099cf90e02859bb297f2c618d8d940, e1eaea46bb4020b38a141b84f88565d4603f8dd0 < 0af021678d5d30c31f5a6b631f404ead3575212a, 2.6.35
Fixed
Linux: < 2.6.35, 5.15.209 ≤ 5.15.*, 5.18.18 ≤ 5.18.*, 5.19.2 ≤ 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 18 Jun 2025 · Last source change 1 Jun 2026, 16:03 UTC · CWE-667 · Improper Locking

CVE recordCVE.org · 5.2
CVSS sourceNIST NVD
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-55382
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceNIST NVD
NVD statusNVD modified after enrichment

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

Material change intelligence

What changed after publication

View recent updates ↗

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-50116 · cve.blacktree.nl