BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2025
CVE-2022-49465High confidence

blk-throttle: Set BIO_THROTTLED when bio has been throttled

Linux · Linux

7.8HighCVSS 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 9 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-54764

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: blk-throttle: Set BIO_THROTTLED when bio has been throttled 1.In current process, all bio will set the BIO_THROTTLED flag after __blk_throtl_bio(). 2.If bio needs to be throttled, it will start the timer and stop submit bio directly. Bio will submit in blk_throtl_dispatch_work_fn() when the timer expires.But in the current process, if bio is throttled. The BIO_THROTTLED will be set to bio after timer start. If the bio has been completed, it may cause use-after-free blow. BUG: KASAN: use-after-free in blk_throtl_bio+0x12f0/0x2c70 Read of size 2 at addr ffff88801b8902d4 by task fio/26380 dump_stack+0x9b/0xce print_address_description.constprop.6+0x3e/0x60 kasan_report.cold.9+0x22/0x3a blk_throtl_bio+0x12f0/0x2c70 submit_bio_checks+0x701/0x1550 submit_bio_noacct+0x83/0xc80 submit_bio+0xa7/0x330 mpage_readahead+0x380/0x500 read_pages+0x1c1/0xbf0 page_cache_ra_unbounded+0x471/0x6f0 do_page_cache_ra+0xda/0x110 ondemand_readahead+0x442/0xae0 page_cache_async_ra+0x210/0x300 generic_file_buffered_read+0x4d9/0x2130 generic_file_read_iter+0x315/0x490 blkdev_read_iter+0x113/0x1b0 aio_read+0x2ad/0x450 io_submit_one+0xc8e/0x1d60 __se_sys_io_submit+0x125/0x350 do_syscall_64+0x2d/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Allocated by task 26380: kasan_save_stack+0x19/0x40 __kasan_kmalloc.constprop.2+0xc1/0xd0 kmem_cache_alloc+0x146/0x440 mempool_alloc+0x125/0x2f0 bio_alloc_bioset+0x353/0x590 mpage_alloc+0x3b/0x240 do_mpage_readpage+0xddf/0x1ef0 mpage_readahead+0x264/0x500 read_pages+0x1c1/0xbf0 page_cache_ra_unbounded+0x471/0x6f0 do_page_cache_ra+0xda/0x110 ondemand_readahead+0x442/0xae0 page_cache_async_ra+0x210/0x300 generic_file_buffered_read+0x4d9/0x2130 generic_file_read_iter+0x315/0x490 blkdev_read_iter+0x113/0x1b0 aio_read+0x2ad/0x450 io_submit_one+0xc8e/0x1d60 __se_sys_io_submit+0x125/0x350 do_syscall_64+0x2d/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Freed by task 0: kasan_save_stack+0x19/0x40 kasan_set_track+0x1c/0x30 kasan_set_free_info+0x1b/0x30 __kasan_slab_free+0x111/0x160 kmem_cache_free+0x94/0x460 mempool_free+0xd6/0x320 bio_free+0xe0/0x130 bio_put+0xab/0xe0 bio_endio+0x3a6/0x5d0 blk_update_request+0x590/0x1370 scsi_end_request+0x7d/0x400 scsi_io_completion+0x1aa/0xe50 scsi_softirq_done+0x11b/0x240 blk_mq_complete_request+0xd4/0x120 scsi_mq_done+0xf0/0x200 virtscsi_vq_done+0xbc/0x150 vring_interrupt+0x179/0x390 __handle_irq_event_percpu+0xf7/0x490 handle_irq_event_percpu+0x7b/0x160 handle_irq_event+0xcc/0x170 handle_edge_irq+0x215/0xb20 common_interrupt+0x60/0x120 asm_common_interrupt+0x1e/0x40 Fix this by move BIO_THROTTLED set into the queue_lock.

What

In the Linux kernel, the following vulnerability has been resolved: blk-throttle: Set BIO_THROTTLED when bio has been throttled 1.In current process, all bio will set the BIO_THROTTLED flag after __blk_throtl_bio(). 2.If bio needs to be throttled, it will start the timer and stop submit bio directly. Bio will submit in blk_throtl_dispatch_work_fn() when the timer expires.But in the current process, if bio is throttled. The BIO_THROTTLED will be set to bio after timer start. If the bio has been completed, it may cause use-after-free blow. BUG: KASAN: use-after-free in blk_throtl_bio+0x12f0/0x2c70 Read of size 2 at addr ffff88801b8902d4 by task fio/26380 dump_stack+0x9b/0xce print_address_description.constprop.6+0x3e/0x60 kasan_report.cold.9+0x22/0x3a blk_throtl_bio+0x12f0/0x2c70 submit_bio_checks+0x701/0x1550 submit_bio_noacct+0x83/0xc80 submit_bio+0xa7/0x330 mpage_readahead+0x380/0x500 read_pages+0x1c1/0xbf0 page_cache_ra_unbounded+0x471/0x6f0 do_page_cache_ra+0xda/0x110 ondemand_readahead+0x442/0xae0 page_cache_async_ra+0x210/0x300 generic_file_buffered_read+0x4d9/0x2130 generic_file_read_iter+0x315/0x490 blkdev_read_iter+0x113/0x1b0 aio_read+0x2ad/0x450 io_submit_one+0xc8e/0x1d60 __se_sys_io_submit+0x125/0x350 do_syscall_64+0x2d/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Allocated by task 26380: kasan_save_stack+0x19/0x40 __kasan_kmalloc.constprop.2+0xc1/0xd0 kmem_cache_alloc+0x146/0x440 mempool_alloc+0x125/0x2f0 bio_alloc_bioset+0x353/0x590 mpage_alloc+0x3b/0x240 do_mpage_readpage+0xddf/0x1ef0 mpage_readahead+0x264/0x500 read_pages+0x1c1/0xbf0 page_cache_ra_unbounded+0x471/0x6f0 do_page_cache_ra+0xda/0x110 ondemand_readahead+0x442/0xae0 page_cache_async_ra+0x210/0x300 generic_file_buffered_read+0x4d9/0x2130 generic_file_read_iter+0x315/0x490 blkdev_read_iter+0x113/0x1b0 aio_read+0x2ad/0x450 io_submit_one+0xc8e/0x1d60 __se_sys_io_submit+0x125/0x350 do_syscall_64+0x2d/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Freed by task 0: kasan_save_stack+0x19/0x40 kasan_set_track+0x1c/0x30 kasan_set_free_info+0x1b/0x30 __kasan_slab_free+0x111/0x160 kmem_cache_free+0x94/0x460 mempool_free+0xd6/0x320 bio_free+0xe0/0x130 bio_put+0xab/0xe0 bio_endio+0x3a6/0x5d0 blk_update_request+0x590/0x1370 scsi_end_request+0x7d/0x400 scsi_io_completion+0x1aa/0xe50 scsi_softirq_done+0x11b/0x240 blk_mq_complete_request+0xd4/0x120 scsi_mq_done+0xf0/0x200 virtscsi_vq_done+0xbc/0x150 vring_interrupt+0x179/0x390 __handle_irq_event_percpu+0xf7/0x490 handle_irq_event_percpu+0x7b/0x160 handle_irq_event+0xcc/0x170 handle_edge_irq+0x215/0xb20 common_interrupt+0x60/0x120 asm_common_interrupt+0x1e/0x40 Fix this by move BIO_THROTTLED set into the queue_lock.

Why

The program can continue using memory after it has been released, producing unsafe and attacker-influenceable behaviour.

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: blk-throttle: Set BIO_THROTTLED when bio has been throttled 1.In current process, all bio will set the BIO_THROTTLED flag after __blk_throtl_bio(). 2.If bio needs to be throttled, it will start the timer and stop submit bio directly. Bio will submit in blk_throtl_dispatch_work_fn() when the timer expires.But in the current process, if bio is throttled. The BIO_THROTTLED will be set to bio after timer start. If the bio has been completed, it may cause use-after-free blow. BUG: KASAN: use-after-free in blk_throtl_bio+0x12f0/0x2c70 Read of size 2 at addr ffff88801b8902d4 by task fio/26380 dump_stack+0x9b/0xce print_address_description.constprop.6+0x3e/0x60 kasan_report.cold.9+0x22/0x3a blk_throtl_bio+0x12f0/0x2c70 submit_bio_checks+0x701/0x1550 submit_bio_noacct+0x83/0xc80 submit_bio+0xa7/0x330 mpage_readahead+0x380/0x500 read_pages+0x1c1/0xbf0 page_cache_ra_unbounded+0x471/0x6f0 do_page_cache_ra+0xda/0x110 ondemand_readahead+0x442/0xae0 page_cache_async_ra+0x210/0x300 generic_file_buffered_read+0x4d9/0x2130 generic_file_read_iter+0x315/0x490 blkdev_read_iter+0x113/0x1b0 aio_read+0x2ad/0x450 io_submit_one+0xc8e/0x1d60 __se_sys_io_submit+0x125/0x350 do_syscall_64+0x2d/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Allocated by task 26380: kasan_save_stack+0x19/0x40 __kasan_kmalloc.constprop.2+0xc1/0xd0 kmem_cache_alloc+0x146/0x440 mempool_alloc+0x125/0x2f0 bio_alloc_bioset+0x353/0x590 mpage_alloc+0x3b/0x240 do_mpage_readpage+0xddf/0x1ef0 mpage_readahead+0x264/0x500 read_pages+0x1c1/0xbf0 page_cache_ra_unbounded+0x471/0x6f0 do_page_cache_ra+0xda/0x110 ondemand_readahead+0x442/0xae0 page_cache_async_ra+0x210/0x300 generic_file_buffered_read+0x4d9/0x2130 generic_file_read_iter+0x315/0x490 blkdev_read_iter+0x113/0x1b0 aio_read+0x2ad/0x450 io_submit_one+0xc8e/0x1d60 __se_sys_io_submit+0x125/0x350 do_syscall_64+0x2d/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Freed by task 0: kasan_save_stack+0x19/0x40 kasan_set_track+0x1c/0x30 kasan_set_free_info+0x1b/0x30 __kasan_slab_free+0x111/0x160 kmem_cache_free+0x94/0x460 mempool_free+0xd6/0x320 bio_free+0xe0/0x130 bio_put+0xab/0xe0 bio_endio+0x3a6/0x5d0 blk_update_request+0x590/0x1370 scsi_end_request+0x7d/0x400 scsi_io_completion+0x1aa/0xe50 scsi_softirq_done+0x11b/0x240 blk_mq_complete_request+0xd4/0x120 scsi_mq_done+0xf0/0x200 virtscsi_vq_done+0xbc/0x150 vring_interrupt+0x179/0x390 __handle_irq_event_percpu+0xf7/0x490 handle_irq_event_percpu+0x7b/0x160 handle_irq_event+0xcc/0x170 handle_edge_irq+0x215/0xb20 common_interrupt+0x60/0x120 asm_common_interrupt+0x1e/0x40 Fix this by move BIO_THROTTLED set into the queue_lock.

Why

The program can continue using memory after it has been released, producing unsafe and attacker-influenceable behaviour.

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 → Use After Free → 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-416

CWE-416: Use After Free. The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory belongs to the code that operates on the new pointer.

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:H/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.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.CHighConfidentiality impact: A successful attack can cause a major loss.IHighIntegrity impact: A successful attack can cause a major loss.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
The issue can support a local privilege or sandbox boundary transition; normal system utilities may then be available in the gained context.
CWE-416
A

Official authority intelligence

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

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

ons 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-8226-1 du 30 avril 2026 https://ubuntu.com/security/notices/USN-8226-1 Bulletin de sécurité Ubuntu USN-8226-2 du 30 avril 2026 https://ubuntu.com/security/notices/USN-8226-2 Bulletin de sécurité Ubuntu USN-8179-4 du 07 mai 2026 https://ubuntu.com/security/notices/USN-8179-4 Bulletin de sécurité Ubuntu USN-8243-1 du 07 mai 2026 https://ubuntu.com/security/notices/USN-8243-1 Bulletin de sécurité Ubuntu USN-8244-1 du 07 mai 2026 https://ubuntu.com/security/notices/USN-8244-1 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49635 https://www.cve.org/CVERecord?id=CVE-2022-49635 Référence CVE CVE-2023-53421 https://www.cve.org/CVERecord?id=CVE-2023-53421 Référence CVE CVE-2023-53520 https://www.cve.org/CVERecord?id=CVE-2023-53520 Référence CVE CVE-2023-53662 https://www.cve.org/CVERecord?id=CVE-2023-53662 Référence CVE CVE-2023-54207 https://www.cve.org/CVERecord?id=CVE-2023-54207 Référence CVE CVE-2024-36347 https://www.cve.org/CVERecord?id=CVE-2024-36347 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=

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

otices/USN-8180-2 Bulletin de sécurité Ubuntu USN-8183-1 du 17 avril 2026 https://ubuntu.com/security/notices/USN-8183-1 Bulletin de sécurité Ubuntu USN-8184-1 du 17 avril 2026 https://ubuntu.com/security/notices/USN-8184-1 Bulletin de sécurité Ubuntu USN-8185-1 du 17 avril 2026 https://ubuntu.com/security/notices/USN-8185-1 Bulletin de sécurité Ubuntu USN-8186-1 du 17 avril 2026 https://ubuntu.com/security/notices/USN-8186-1 Bulletin de sécurité Ubuntu USN-8187-1 du 17 avril 2026 https://ubuntu.com/security/notices/USN-8187-1 Bulletin de sécurité Ubuntu USN-8188-1 du 17 avril 2026 https://ubuntu.com/security/notices/USN-8188-1 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49635 https://www.cve.org/CVERecord?id=CVE-2022-49635 Référence CVE CVE-2023-53041 https://www.cve.org/CVERecord?id=CVE-2023-53041 Référence CVE CVE-2023-53421 https://www.cve.org/CVERecord?id=CVE-2023-53421 Référence CVE CVE-2023-53520 https://www.cve.org/CVERecord?id=CVE-2023-53520 Référence CVE CVE-2023-53662 https://www.cve.org/CVERecord?id=CVE-2023-53662 Référence CVE CVE-2023-54207 https://www.cve.org/CVERecord?id=CVE-2023-54207 Référence CVE CVE-2024-36347 https://www.cve.org/CVERecord?id=CVE-2024-36347 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=

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

otices/USN-8145-4 Bulletin de sécurité Ubuntu USN-8148-5 du 09 avril 2026 https://ubuntu.com/security/notices/USN-8148-5 Bulletin de sécurité Ubuntu USN-8149-2 du 09 avril 2026 https://ubuntu.com/security/notices/USN-8149-2 Bulletin de sécurité Ubuntu USN-8162-1 du 09 avril 2026 https://ubuntu.com/security/notices/USN-8162-1 Bulletin de sécurité Ubuntu USN-8163-1 du 09 avril 2026 https://ubuntu.com/security/notices/USN-8163-1 Bulletin de sécurité Ubuntu USN-8164-1 du 09 avril 2026 https://ubuntu.com/security/notices/USN-8164-1 Bulletin de sécurité Ubuntu USN-8165-1 du 09 avril 2026 https://ubuntu.com/security/notices/USN-8165-1 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49635 https://www.cve.org/CVERecord?id=CVE-2022-49635 Référence CVE CVE-2023-53041 https://www.cve.org/CVERecord?id=CVE-2023-53041 Référence CVE CVE-2023-53421 https://www.cve.org/CVERecord?id=CVE-2023-53421 Référence CVE CVE-2023-53520 https://www.cve.org/CVERecord?id=CVE-2023-53520 Référence CVE CVE-2023-53662 https://www.cve.org/CVERecord?id=CVE-2023-53662 Référence CVE CVE-2023-54207 https://www.cve.org/CVERecord?id=CVE-2023-54207 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=

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

n de sécurité Ubuntu USN-8148-1 du 02 avril 2026 https://ubuntu.com/security/notices/USN-8148-1 Bulletin de sécurité Ubuntu USN-8148-2 du 02 avril 2026 https://ubuntu.com/security/notices/USN-8148-2 Bulletin de sécurité Ubuntu USN-8148-3 du 02 avril 2026 https://ubuntu.com/security/notices/USN-8148-3 Bulletin de sécurité Ubuntu USN-8149-1 du 02 avril 2026 https://ubuntu.com/security/notices/USN-8149-1 Référence CVE CVE-2021-47142 https://www.cve.org/CVERecord?id=CVE-2021-47142 Référence CVE CVE-2021-47145 https://www.cve.org/CVERecord?id=CVE-2021-47145 Référence CVE CVE-2021-47254 https://www.cve.org/CVERecord?id=CVE-2021-47254 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49635 https://www.cve.org/CVERecord?id=CVE-2022-49635 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=CVE-2024-36927 Référence CVE CVE-2024-37354 https://www.cve.org/CVERecord?id=CVE-2024-37354 Référence CVE CVE-2024-41014 https://www.cve.org/CVERecord?id=CVE-2024-41014 Référence CVE CVE-2024-46777 https://www.cve.org/CVERecord?id=CVE-2024-46777 Référence CVE CVE-2024-46830 https://www.cve.org/CVERecord?id=CVE-2024-46830 Référence CVE CVE-2024-47666 https://www.cve.org/CVERecord?id=

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

ty/notices/USN-8098-8 Bulletin de sécurité Ubuntu USN-8125-1 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8125-1 Bulletin de sécurité Ubuntu USN-8126-1 du 25 mars 2026 https://ubuntu.com/security/notices/USN-8126-1 Bulletin de sécurité Ubuntu USN-8098-9 du 27 mars 2026 https://ubuntu.com/security/notices/USN-8098-9 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49072 https://www.cve.org/CVERecord?id=CVE-2022-49072 Référence CVE CVE-2022-49267 https://www.cve.org/CVERecord?id=CVE-2022-49267 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=CVE-2024-36927 Référence CVE CVE-2024-37354 https://www.cve.org/CVERecord?id=CVE-2024-37354 Référence CVE CVE-2024-41014 https://www.cve.org/CVERecord?id=CVE-2024-41014 Référence CVE CVE-2024-46830 https://www.cve.org/CVERecord?id=CVE-2024-46830 Référence CVE CVE-2024-47659 https://www.cve.org/CVERecord?id=CVE-2024-47659 Référence CVE CVE-2024-47666 https://www.cve.org/CVERecord?id=CVE-2024-47666 Référence CVE CVE-2024-49927 https://www.cve.org/CVERecord?id=

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

ty/notices/USN-8096-4 Bulletin de sécurité Ubuntu USN-8098-2 du 17 mars 2026 https://ubuntu.com/security/notices/USN-8098-2 Bulletin de sécurité Ubuntu USN-8098-3 du 18 mars 2026 https://ubuntu.com/security/notices/USN-8098-3 Bulletin de sécurité Ubuntu USN-8107-1 du 18 mars 2026 https://ubuntu.com/security/notices/USN-8107-1 Référence CVE CVE-2021-47599 https://www.cve.org/CVERecord?id=CVE-2021-47599 Référence CVE CVE-2022-48875 https://www.cve.org/CVERecord?id=CVE-2022-48875 Référence CVE CVE-2022-49072 https://www.cve.org/CVERecord?id=CVE-2022-49072 Référence CVE CVE-2022-49267 https://www.cve.org/CVERecord?id=CVE-2022-49267 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2024-36903 https://www.cve.org/CVERecord?id=CVE-2024-36903 Référence CVE CVE-2024-36927 https://www.cve.org/CVERecord?id=CVE-2024-36927 Référence CVE CVE-2024-37354 https://www.cve.org/CVERecord?id=CVE-2024-37354 Référence CVE CVE-2024-41014 https://www.cve.org/CVERecord?id=CVE-2024-41014 Référence CVE CVE-2024-46830 https://www.cve.org/CVERecord?id=CVE-2024-46830 Référence CVE CVE-2024-47666 https://www.cve.org/CVERecord?id=CVE-2024-47666 Référence CVE CVE-2024-49927 https://www.cve.org/CVERecord?id=CVE-2024-49927 Référence CVE CVE-2024-49968 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-49303 Référence CVE CVE-2022-49306 https://www.cve.org/CVERecord?id=CVE-2022-49306 Référence CVE CVE-2022-49317 https://www.cve.org/CVERecord?id=CVE-2022-49317 Référence CVE CVE-2022-49333 https://www.cve.org/CVERecord?id=CVE-2022-49333 Référence CVE CVE-2022-49342 https://www.cve.org/CVERecord?id=CVE-2022-49342 Référence CVE CVE-2022-49359 https://www.cve.org/CVERecord?id=CVE-2022-49359 Référence CVE CVE-2022-49393 https://www.cve.org/CVERecord?id=CVE-2022-49393 Référence CVE CVE-2022-49401 https://www.cve.org/CVERecord?id=CVE-2022-49401 Référence CVE CVE-2022-49420 https://www.cve.org/CVERecord?id=CVE-2022-49420 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49469 https://www.cve.org/CVERecord?id=CVE-2022-49469 Référence CVE CVE-2022-49471 https://www.cve.org/CVERecord?id=CVE-2022-49471 Référence CVE CVE-2022-49476 https://www.cve.org/CVERecord?id=CVE-2022-49476 Référence CVE CVE-2022-49484 https://www.cve.org/CVERecord?id=CVE-2022-49484 Référence CVE CVE-2022-49496 https://www.cve.org/CVERecord?id=CVE-2022-49496 Référence CVE CVE-2022-49504 https://www.cve.org/CVERecord?id=CVE-2022-49504 Référence CVE CVE-2022-49516 https://www.cve.org/CVERecord?id=CVE-2022-49516 Référence CVE CVE-2022-49518 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-49303 Référence CVE CVE-2022-49306 https://www.cve.org/CVERecord?id=CVE-2022-49306 Référence CVE CVE-2022-49317 https://www.cve.org/CVERecord?id=CVE-2022-49317 Référence CVE CVE-2022-49333 https://www.cve.org/CVERecord?id=CVE-2022-49333 Référence CVE CVE-2022-49342 https://www.cve.org/CVERecord?id=CVE-2022-49342 Référence CVE CVE-2022-49359 https://www.cve.org/CVERecord?id=CVE-2022-49359 Référence CVE CVE-2022-49393 https://www.cve.org/CVERecord?id=CVE-2022-49393 Référence CVE CVE-2022-49401 https://www.cve.org/CVERecord?id=CVE-2022-49401 Référence CVE CVE-2022-49420 https://www.cve.org/CVERecord?id=CVE-2022-49420 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49469 https://www.cve.org/CVERecord?id=CVE-2022-49469 Référence CVE CVE-2022-49471 https://www.cve.org/CVERecord?id=CVE-2022-49471 Référence CVE CVE-2022-49476 https://www.cve.org/CVERecord?id=CVE-2022-49476 Référence CVE CVE-2022-49484 https://www.cve.org/CVERecord?id=CVE-2022-49484 Référence CVE CVE-2022-49496 https://www.cve.org/CVERecord?id=CVE-2022-49496 Référence CVE CVE-2022-49504 https://www.cve.org/CVERecord?id=CVE-2022-49504 Référence CVE CVE-2022-49516 https://www.cve.org/CVERecord?id=CVE-2022-49516 Référence CVE CVE-2022-49518 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2026-AVI-0167Multiples vulnérabilités dans le noyau Linux de Debian LTS

vation de privilèges, une atteinte à la confidentialité des données et un déni de service. 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é Debian LTS DLA-4475-1 du 10 février 2026 https://lists.debian.org/debian-lts-announce/2026/02/msg00016.html Bulletin de sécurité Debian LTS DLA-4476-1 du 10 février 2026 https://lists.debian.org/debian-lts-announce/2026/02/msg00017.html Référence CVE CVE-2022-48744 https://www.cve.org/CVERecord?id=CVE-2022-48744 Référence CVE CVE-2022-49168 https://www.cve.org/CVERecord?id=CVE-2022-49168 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49711 https://www.cve.org/CVERecord?id=CVE-2022-49711 Référence CVE CVE-2022-49743 https://www.cve.org/CVERecord?id=CVE-2022-49743 Référence CVE CVE-2023-52658 https://www.cve.org/CVERecord?id=CVE-2023-52658 Référence CVE CVE-2023-52975 https://www.cve.org/CVERecord?id=CVE-2023-52975 Référence CVE CVE-2023-53421 https://www.cve.org/CVERecord?id=CVE-2023-53421 Référence CVE CVE-2023-54207 https://www.cve.org/CVERecord?id=CVE-2023-54207 Référence CVE CVE-2023-54285 https://www.cve.org/CVERecord?id=CVE-2023-54285 Référence CVE CVE-2023-54321 https://www.cve.org/CVERecord?id=

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

nouncement/2025/suse-su-20254141-1 Bulletin de sécurité SUSE SUSE-SU-2025:4149-1 du 20 novembre 2025 https://www.suse.com/support/update/announcement/2025/suse-su-20254149-1 Référence CVE CVE-2022-43945 https://www.cve.org/CVERecord?id=CVE-2022-43945 Référence CVE CVE-2022-48956 https://www.cve.org/CVERecord?id=CVE-2022-48956 Référence CVE CVE-2022-49014 https://www.cve.org/CVERecord?id=CVE-2022-49014 Référence CVE CVE-2022-49053 https://www.cve.org/CVERecord?id=CVE-2022-49053 Référence CVE CVE-2022-49080 https://www.cve.org/CVERecord?id=CVE-2022-49080 Référence CVE CVE-2022-49179 https://www.cve.org/CVERecord?id=CVE-2022-49179 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49545 https://www.cve.org/CVERecord?id=CVE-2022-49545 Référence CVE CVE-2022-49563 https://www.cve.org/CVERecord?id=CVE-2022-49563 Référence CVE CVE-2022-49564 https://www.cve.org/CVERecord?id=CVE-2022-49564 Référence CVE CVE-2022-50252 https://www.cve.org/CVERecord?id=CVE-2022-50252 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-50386 https://www.cve.org/CVERecord?id=CVE-2022-50386 Référence CVE CVE-2022-50388 https://www.cve.org/CVERecord?id=

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

De multiples vulnérabilités ont été découvertes dans le noyau Linux de SUSE. Elles permettent à un attaquant de provoquer une atteinte à la confidentialité des données et un problème de sécurité non spécifié par l'éditeur.

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

d?id=CVE-2022-49290 Référence CVE CVE-2022-49305 https://www.cve.org/CVERecord?id=CVE-2022-49305 Référence CVE CVE-2022-49325 https://www.cve.org/CVERecord?id=CVE-2022-49325 Référence CVE CVE-2022-49335 https://www.cve.org/CVERecord?id=CVE-2022-49335 Référence CVE CVE-2022-49351 https://www.cve.org/CVERecord?id=CVE-2022-49351 Référence CVE CVE-2022-49385 https://www.cve.org/CVERecord?id=CVE-2022-49385 Référence CVE CVE-2022-49390 https://www.cve.org/CVERecord?id=CVE-2022-49390 Référence CVE CVE-2022-49411 https://www.cve.org/CVERecord?id=CVE-2022-49411 Référence CVE CVE-2022-49442 https://www.cve.org/CVERecord?id=CVE-2022-49442 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49478 https://www.cve.org/CVERecord?id=CVE-2022-49478 Référence CVE CVE-2022-49489 https://www.cve.org/CVERecord?id=CVE-2022-49489 Référence CVE CVE-2022-49504 https://www.cve.org/CVERecord?id=CVE-2022-49504 Référence CVE CVE-2022-49521 https://www.cve.org/CVERecord?id=CVE-2022-49521 Référence CVE CVE-2022-49525 https://www.cve.org/CVERecord?id=CVE-2022-49525 Référence CVE CVE-2022-49534 https://www.cve.org/CVERecord?id=CVE-2022-49534 Référence CVE CVE-2022-49535 https://www.cve.org/CVERecord?id=CVE-2022-49535 Référence CVE CVE-2022-49536 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49449 Référence CVE CVE-2022-49451 https://www.cve.org/CVERecord?id=CVE-2022-49451 Référence CVE CVE-2022-49453 https://www.cve.org/CVERecord?id=CVE-2022-49453 Référence CVE CVE-2022-49455 https://www.cve.org/CVERecord?id=CVE-2022-49455 Référence CVE CVE-2022-49458 https://www.cve.org/CVERecord?id=CVE-2022-49458 Référence CVE CVE-2022-49459 https://www.cve.org/CVERecord?id=CVE-2022-49459 Référence CVE CVE-2022-49460 https://www.cve.org/CVERecord?id=CVE-2022-49460 Référence CVE CVE-2022-49462 https://www.cve.org/CVERecord?id=CVE-2022-49462 Référence CVE CVE-2022-49463 https://www.cve.org/CVERecord?id=CVE-2022-49463 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49466 https://www.cve.org/CVERecord?id=CVE-2022-49466 Référence CVE CVE-2022-49467 https://www.cve.org/CVERecord?id=CVE-2022-49467 Référence CVE CVE-2022-49468 https://www.cve.org/CVERecord?id=CVE-2022-49468 Référence CVE CVE-2022-49470 https://www.cve.org/CVERecord?id=CVE-2022-49470 Référence CVE CVE-2022-49472 https://www.cve.org/CVERecord?id=CVE-2022-49472 Référence CVE CVE-2022-49473 https://www.cve.org/CVERecord?id=CVE-2022-49473 Référence CVE CVE-2022-49474 https://www.cve.org/CVERecord?id=CVE-2022-49474 Référence CVE CVE-2022-49475 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49449 Référence CVE CVE-2022-49451 https://www.cve.org/CVERecord?id=CVE-2022-49451 Référence CVE CVE-2022-49453 https://www.cve.org/CVERecord?id=CVE-2022-49453 Référence CVE CVE-2022-49455 https://www.cve.org/CVERecord?id=CVE-2022-49455 Référence CVE CVE-2022-49458 https://www.cve.org/CVERecord?id=CVE-2022-49458 Référence CVE CVE-2022-49459 https://www.cve.org/CVERecord?id=CVE-2022-49459 Référence CVE CVE-2022-49460 https://www.cve.org/CVERecord?id=CVE-2022-49460 Référence CVE CVE-2022-49462 https://www.cve.org/CVERecord?id=CVE-2022-49462 Référence CVE CVE-2022-49463 https://www.cve.org/CVERecord?id=CVE-2022-49463 Référence CVE CVE-2022-49465 https://www.cve.org/CVERecord?id=CVE-2022-49465 Référence CVE CVE-2022-49466 https://www.cve.org/CVERecord?id=CVE-2022-49466 Référence CVE CVE-2022-49467 https://www.cve.org/CVERecord?id=CVE-2022-49467 Référence CVE CVE-2022-49468 https://www.cve.org/CVERecord?id=CVE-2022-49468 Référence CVE CVE-2022-49470 https://www.cve.org/CVERecord?id=CVE-2022-49470 Référence CVE CVE-2022-49472 https://www.cve.org/CVERecord?id=CVE-2022-49472 Référence CVE CVE-2022-49473 https://www.cve.org/CVERecord?id=CVE-2022-49473 Référence CVE CVE-2022-49474 https://www.cve.org/CVERecord?id=CVE-2022-49474 Référence CVE CVE-2022-49475 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
2a0f61e6ecd08d260054bde4b096ff207ce5350f < 24ba80efaf6e772f6132465fad08e20fb4767da7; 2a0f61e6ecd08d260054bde4b096ff207ce5350f < 047ea38d41d90d748bca812a43339632f52ba715; 2a0f61e6ecd08d260054bde4b096ff207ce5350f < 0cfc8a0fb07cde61915e4a77c4794c47de3114a4; 2a0f61e6ecd08d260054bde4b096ff207ce5350f < 935fa666534d7b7185e8c6b0191cd06281be4290; 2a0f61e6ecd08d260054bde4b096ff207ce5350f < 5a011f889b4832aa80c2a872a5aade5c48d2756f; 3.11
Fixed
< 3.11; 5.10.248 ≤ 5.10.*; 5.15.198 ≤ 5.15.*; 5.17.14 ≤ 5.17.*; 5.18.3 ≤ 5.18.*; 5.19 ≤ *
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 26 Feb 2025 · Last source change 5 Aug 2026, 08:55 UTC · CWE-416 · Use After Free

CVE recordCVE.org · 5.2
CVSS sourceCNA
EPSS source
?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.
FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2022-54764
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-49465 · cve.blacktree.nl