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

ftrace: Fix use-after-free for dynamic ftrace_ops

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.

2 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 8 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 8 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-2025-12863

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: ftrace: Fix use-after-free for dynamic ftrace_ops KASAN reported a use-after-free with ftrace ops [1]. It was found from vmcore that perf had registered two ops with the same content successively, both dynamic. After unregistering the second ops, a use-after-free occurred. In ftrace_shutdown(), when the second ops is unregistered, the FTRACE_UPDATE_CALLS command is not set because there is another enabled ops with the same content. Also, both ops are dynamic and the ftrace callback function is ftrace_ops_list_func, so the FTRACE_UPDATE_TRACE_FUNC command will not be set. Eventually the value of 'command' will be 0 and ftrace_shutdown() will skip the rcu synchronization. However, ftrace may be activated. When the ops is released, another CPU may be accessing the ops. Add the missing synchronization to fix this problem. [1] BUG: KASAN: use-after-free in __ftrace_ops_list_func kernel/trace/ftrace.c:7020 [inline] BUG: KASAN: use-after-free in ftrace_ops_list_func+0x2b0/0x31c kernel/trace/ftrace.c:7049 Read of size 8 at addr ffff56551965bbc8 by task syz-executor.2/14468 CPU: 1 PID: 14468 Comm: syz-executor.2 Not tainted 5.10.0 #7 Hardware name: linux,dummy-virt (DT) Call trace: dump_backtrace+0x0/0x40c arch/arm64/kernel/stacktrace.c:132 show_stack+0x30/0x40 arch/arm64/kernel/stacktrace.c:196 __dump_stack lib/dump_stack.c:77 [inline] dump_stack+0x1b4/0x248 lib/dump_stack.c:118 print_address_description.constprop.0+0x28/0x48c mm/kasan/report.c:387 __kasan_report mm/kasan/report.c:547 [inline] kasan_report+0x118/0x210 mm/kasan/report.c:564 check_memory_region_inline mm/kasan/generic.c:187 [inline] __asan_load8+0x98/0xc0 mm/kasan/generic.c:253 __ftrace_ops_list_func kernel/trace/ftrace.c:7020 [inline] ftrace_ops_list_func+0x2b0/0x31c kernel/trace/ftrace.c:7049 ftrace_graph_call+0x0/0x4 __might_sleep+0x8/0x100 include/linux/perf_event.h:1170 __might_fault mm/memory.c:5183 [inline] __might_fault+0x58/0x70 mm/memory.c:5171 do_strncpy_from_user lib/strncpy_from_user.c:41 [inline] strncpy_from_user+0x1f4/0x4b0 lib/strncpy_from_user.c:139 getname_flags+0xb0/0x31c fs/namei.c:149 getname+0x2c/0x40 fs/namei.c:209 [...] Allocated by task 14445: kasan_save_stack+0x24/0x50 mm/kasan/common.c:48 kasan_set_track mm/kasan/common.c:56 [inline] __kasan_kmalloc mm/kasan/common.c:479 [inline] __kasan_kmalloc.constprop.0+0x110/0x13c mm/kasan/common.c:449 kasan_kmalloc+0xc/0x14 mm/kasan/common.c:493 kmem_cache_alloc_trace+0x440/0x924 mm/slub.c:2950 kmalloc include/linux/slab.h:563 [inline] kzalloc include/linux/slab.h:675 [inline] perf_event_alloc.part.0+0xb4/0x1350 kernel/events/core.c:11230 perf_event_alloc kernel/events/core.c:11733 [inline] __do_sys_perf_event_open kernel/events/core.c:11831 [inline] __se_sys_perf_event_open+0x550/0x15f4 kernel/events/core.c:11723 __arm64_sys_perf_event_open+0x6c/0x80 kernel/events/core.c:11723 [...] Freed by task 14445: kasan_save_stack+0x24/0x50 mm/kasan/common.c:48 kasan_set_track+0x24/0x34 mm/kasan/common.c:56 kasan_set_free_info+0x20/0x40 mm/kasan/generic.c:358 __kasan_slab_free.part.0+0x11c/0x1b0 mm/kasan/common.c:437 __kasan_slab_free mm/kasan/common.c:445 [inline] kasan_slab_free+0x2c/0x40 mm/kasan/common.c:446 slab_free_hook mm/slub.c:1569 [inline] slab_free_freelist_hook mm/slub.c:1608 [inline] slab_free mm/slub.c:3179 [inline] kfree+0x12c/0xc10 mm/slub.c:4176 perf_event_alloc.part.0+0xa0c/0x1350 kernel/events/core.c:11434 perf_event_alloc kernel/events/core.c:11733 [inline] __do_sys_perf_event_open kernel/events/core.c:11831 [inline] __se_sys_perf_event_open+0x550/0x15f4 kernel/events/core.c:11723 [...]

What

In the Linux kernel, the following vulnerability has been resolved: ftrace: Fix use-after-free for dynamic ftrace_ops KASAN reported a use-after-free with ftrace ops [1]. It was found from vmcore that perf had registered two ops with the same content successively, both dynamic. After unregistering the second ops, a use-after-free occurred. In ftrace_shutdown(), when the second ops is unregistered, the FTRACE_UPDATE_CALLS command is not set because there is another enabled ops with the same content. Also, both ops are dynamic and the ftrace callback function is ftrace_ops_list_func, so the FTRACE_UPDATE_TRACE_FUNC command will not be set. Eventually the value of 'command' will be 0 and ftrace_shutdown() will skip the rcu synchronization. However, ftrace may be activated. When the ops is released, another CPU may be accessing the ops. Add the missing synchronization to fix this problem. [1] BUG: KASAN: use-after-free in __ftrace_ops_list_func kernel/trace/ftrace.c:7020 [inline] BUG: KASAN: use-after-free in ftrace_ops_list_func+0x2b0/0x31c kernel/trace/ftrace.c:7049 Read of size 8 at addr ffff56551965bbc8 by task syz-executor.2/14468 CPU: 1 PID: 14468 Comm: syz-executor.2 Not tainted 5.10.0 #7 Hardware name: linux,dummy-virt (DT) Call trace: dump_backtrace+0x0/0x40c arch/arm64/kernel/stacktrace.c:132 show_stack+0x30/0x40 arch/arm64/kernel/stacktrace.c:196 __dump_stack lib/dump_stack.c:77 [inline] dump_stack+0x1b4/0x248 lib/dump_stack.c:118 print_address_description.constprop.0+0x28/0x48c mm/kasan/report.c:387 __kasan_report mm/kasan/report.c:547 [inline] kasan_report+0x118/0x210 mm/kasan/report.c:564 check_memory_region_inline mm/kasan/generic.c:187 [inline] __asan_load8+0x98/0xc0 mm/kasan/generic.c:253 __ftrace_ops_list_func kernel/trace/ftrace.c:7020 [inline] ftrace_ops_list_func+0x2b0/0x31c kernel/trace/ftrace.c:7049 ftrace_graph_call+0x0/0x4 __might_sleep+0x8/0x100 include/linux/perf_event.h:1170 __might_fault mm/memory.c:5183 [inline] __might_fault+0x58/0x70 mm/memory.c:5171 do_strncpy_from_user lib/strncpy_from_user.c:41 [inline] strncpy_from_user+0x1f4/0x4b0 lib/strncpy_from_user.c:139 getname_flags+0xb0/0x31c fs/namei.c:149 getname+0x2c/0x40 fs/namei.c:209 [...] Allocated by task 14445: kasan_save_stack+0x24/0x50 mm/kasan/common.c:48 kasan_set_track mm/kasan/common.c:56 [inline] __kasan_kmalloc mm/kasan/common.c:479 [inline] __kasan_kmalloc.constprop.0+0x110/0x13c mm/kasan/common.c:449 kasan_kmalloc+0xc/0x14 mm/kasan/common.c:493 kmem_cache_alloc_trace+0x440/0x924 mm/slub.c:2950 kmalloc include/linux/slab.h:563 [inline] kzalloc include/linux/slab.h:675 [inline] perf_event_alloc.part.0+0xb4/0x1350 kernel/events/core.c:11230 perf_event_alloc kernel/events/core.c:11733 [inline] __do_sys_perf_event_open kernel/events/core.c:11831 [inline] __se_sys_perf_event_open+0x550/0x15f4 kernel/events/core.c:11723 __arm64_sys_perf_event_open+0x6c/0x80 kernel/events/core.c:11723 [...] Freed by task 14445: kasan_save_stack+0x24/0x50 mm/kasan/common.c:48 kasan_set_track+0x24/0x34 mm/kasan/common.c:56 kasan_set_free_info+0x20/0x40 mm/kasan/generic.c:358 __kasan_slab_free.part.0+0x11c/0x1b0 mm/kasan/common.c:437 __kasan_slab_free mm/kasan/common.c:445 [inline] kasan_slab_free+0x2c/0x40 mm/kasan/common.c:446 slab_free_hook mm/slub.c:1569 [inline] slab_free_freelist_hook mm/slub.c:1608 [inline] slab_free mm/slub.c:3179 [inline] kfree+0x12c/0xc10 mm/slub.c:4176 perf_event_alloc.part.0+0xa0c/0x1350 kernel/events/core.c:11434 perf_event_alloc kernel/events/core.c:11733 [inline] __do_sys_perf_event_open kernel/events/core.c:11831 [inline] __se_sys_perf_event_open+0x550/0x15f4 kernel/events/core.c:11723 [...]

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: ftrace: Fix use-after-free for dynamic ftrace_ops KASAN reported a use-after-free with ftrace ops [1]. It was found from vmcore that perf had registered two ops with the same content successively, both dynamic. After unregistering the second ops, a use-after-free occurred. In ftrace_shutdown(), when the second ops is unregistered, the FTRACE_UPDATE_CALLS command is not set because there is another enabled ops with the same content. Also, both ops are dynamic and the ftrace callback function is ftrace_ops_list_func, so the FTRACE_UPDATE_TRACE_FUNC command will not be set. Eventually the value of 'command' will be 0 and ftrace_shutdown() will skip the rcu synchronization. However, ftrace may be activated. When the ops is released, another CPU may be accessing the ops. Add the missing synchronization to fix this problem. [1] BUG: KASAN: use-after-free in __ftrace_ops_list_func kernel/trace/ftrace.c:7020 [inline] BUG: KASAN: use-after-free in ftrace_ops_list_func+0x2b0/0x31c kernel/trace/ftrace.c:7049 Read of size 8 at addr ffff56551965bbc8 by task syz-executor.2/14468 CPU: 1 PID: 14468 Comm: syz-executor.2 Not tainted 5.10.0 #7 Hardware name: linux,dummy-virt (DT) Call trace: dump_backtrace+0x0/0x40c arch/arm64/kernel/stacktrace.c:132 show_stack+0x30/0x40 arch/arm64/kernel/stacktrace.c:196 __dump_stack lib/dump_stack.c:77 [inline] dump_stack+0x1b4/0x248 lib/dump_stack.c:118 print_address_description.constprop.0+0x28/0x48c mm/kasan/report.c:387 __kasan_report mm/kasan/report.c:547 [inline] kasan_report+0x118/0x210 mm/kasan/report.c:564 check_memory_region_inline mm/kasan/generic.c:187 [inline] __asan_load8+0x98/0xc0 mm/kasan/generic.c:253 __ftrace_ops_list_func kernel/trace/ftrace.c:7020 [inline] ftrace_ops_list_func+0x2b0/0x31c kernel/trace/ftrace.c:7049 ftrace_graph_call+0x0/0x4 __might_sleep+0x8/0x100 include/linux/perf_event.h:1170 __might_fault mm/memory.c:5183 [inline] __might_fault+0x58/0x70 mm/memory.c:5171 do_strncpy_from_user lib/strncpy_from_user.c:41 [inline] strncpy_from_user+0x1f4/0x4b0 lib/strncpy_from_user.c:139 getname_flags+0xb0/0x31c fs/namei.c:149 getname+0x2c/0x40 fs/namei.c:209 [...] Allocated by task 14445: kasan_save_stack+0x24/0x50 mm/kasan/common.c:48 kasan_set_track mm/kasan/common.c:56 [inline] __kasan_kmalloc mm/kasan/common.c:479 [inline] __kasan_kmalloc.constprop.0+0x110/0x13c mm/kasan/common.c:449 kasan_kmalloc+0xc/0x14 mm/kasan/common.c:493 kmem_cache_alloc_trace+0x440/0x924 mm/slub.c:2950 kmalloc include/linux/slab.h:563 [inline] kzalloc include/linux/slab.h:675 [inline] perf_event_alloc.part.0+0xb4/0x1350 kernel/events/core.c:11230 perf_event_alloc kernel/events/core.c:11733 [inline] __do_sys_perf_event_open kernel/events/core.c:11831 [inline] __se_sys_perf_event_open+0x550/0x15f4 kernel/events/core.c:11723 __arm64_sys_perf_event_open+0x6c/0x80 kernel/events/core.c:11723 [...] Freed by task 14445: kasan_save_stack+0x24/0x50 mm/kasan/common.c:48 kasan_set_track+0x24/0x34 mm/kasan/common.c:56 kasan_set_free_info+0x20/0x40 mm/kasan/generic.c:358 __kasan_slab_free.part.0+0x11c/0x1b0 mm/kasan/common.c:437 __kasan_slab_free mm/kasan/common.c:445 [inline] kasan_slab_free+0x2c/0x40 mm/kasan/common.c:446 slab_free_hook mm/slub.c:1569 [inline] slab_free_freelist_hook mm/slub.c:1608 [inline] slab_free mm/slub.c:3179 [inline] kfree+0x12c/0xc10 mm/slub.c:4176 perf_event_alloc.part.0+0xa0c/0x1350 kernel/events/core.c:11434 perf_event_alloc kernel/events/core.c:11733 [inline] __do_sys_perf_event_open kernel/events/core.c:11831 [inline] __se_sys_perf_event_open+0x550/0x15f4 kernel/events/core.c:11723 [...]

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-0081Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2022-49879 Référence CVE CVE-2022-49880 https://www.cve.org/CVERecord?id=CVE-2022-49880 Référence CVE CVE-2022-49881 https://www.cve.org/CVERecord?id=CVE-2022-49881 Référence CVE CVE-2022-49885 https://www.cve.org/CVERecord?id=CVE-2022-49885 Référence CVE CVE-2022-49887 https://www.cve.org/CVERecord?id=CVE-2022-49887 Référence CVE CVE-2022-49888 https://www.cve.org/CVERecord?id=CVE-2022-49888 Référence CVE CVE-2022-49889 https://www.cve.org/CVERecord?id=CVE-2022-49889 Référence CVE CVE-2022-49890 https://www.cve.org/CVERecord?id=CVE-2022-49890 Référence CVE CVE-2022-49891 https://www.cve.org/CVERecord?id=CVE-2022-49891 Référence CVE CVE-2022-49892 https://www.cve.org/CVERecord?id=CVE-2022-49892 Référence CVE CVE-2022-49900 https://www.cve.org/CVERecord?id=CVE-2022-49900 Référence CVE CVE-2022-49905 https://www.cve.org/CVERecord?id=CVE-2022-49905 Référence CVE CVE-2022-49906 https://www.cve.org/CVERecord?id=CVE-2022-49906 Référence CVE CVE-2022-49908 https://www.cve.org/CVERecord?id=CVE-2022-49908 Référence CVE CVE-2022-49909 https://www.cve.org/CVERecord?id=CVE-2022-49909 Référence CVE CVE-2022-49910 https://www.cve.org/CVERecord?id=CVE-2022-49910 Référence CVE CVE-2022-49915 https://www.cve.org/CVERecord?id=CVE-2022-49915 Référence CVE CVE-2022-49916 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-49880 Référence CVE CVE-2022-49881 https://www.cve.org/CVERecord?id=CVE-2022-49881 Référence CVE CVE-2022-49885 https://www.cve.org/CVERecord?id=CVE-2022-49885 Référence CVE CVE-2022-49886 https://www.cve.org/CVERecord?id=CVE-2022-49886 Référence CVE CVE-2022-49887 https://www.cve.org/CVERecord?id=CVE-2022-49887 Référence CVE CVE-2022-49888 https://www.cve.org/CVERecord?id=CVE-2022-49888 Référence CVE CVE-2022-49889 https://www.cve.org/CVERecord?id=CVE-2022-49889 Référence CVE CVE-2022-49890 https://www.cve.org/CVERecord?id=CVE-2022-49890 Référence CVE CVE-2022-49891 https://www.cve.org/CVERecord?id=CVE-2022-49891 Référence CVE CVE-2022-49892 https://www.cve.org/CVERecord?id=CVE-2022-49892 Référence CVE CVE-2022-49900 https://www.cve.org/CVERecord?id=CVE-2022-49900 Référence CVE CVE-2022-49901 https://www.cve.org/CVERecord?id=CVE-2022-49901 Référence CVE CVE-2022-49902 https://www.cve.org/CVERecord?id=CVE-2022-49902 Référence CVE CVE-2022-49905 https://www.cve.org/CVERecord?id=CVE-2022-49905 Référence CVE CVE-2022-49906 https://www.cve.org/CVERecord?id=CVE-2022-49906 Référence CVE CVE-2022-49908 https://www.cve.org/CVERecord?id=CVE-2022-49908 Référence CVE CVE-2022-49909 https://www.cve.org/CVERecord?id=CVE-2022-49909 Référence CVE CVE-2022-49910 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-49879 Référence CVE CVE-2022-49880 https://www.cve.org/CVERecord?id=CVE-2022-49880 Référence CVE CVE-2022-49881 https://www.cve.org/CVERecord?id=CVE-2022-49881 Référence CVE CVE-2022-49885 https://www.cve.org/CVERecord?id=CVE-2022-49885 Référence CVE CVE-2022-49887 https://www.cve.org/CVERecord?id=CVE-2022-49887 Référence CVE CVE-2022-49888 https://www.cve.org/CVERecord?id=CVE-2022-49888 Référence CVE CVE-2022-49889 https://www.cve.org/CVERecord?id=CVE-2022-49889 Référence CVE CVE-2022-49890 https://www.cve.org/CVERecord?id=CVE-2022-49890 Référence CVE CVE-2022-49891 https://www.cve.org/CVERecord?id=CVE-2022-49891 Référence CVE CVE-2022-49892 https://www.cve.org/CVERecord?id=CVE-2022-49892 Référence CVE CVE-2022-49900 https://www.cve.org/CVERecord?id=CVE-2022-49900 Référence CVE CVE-2022-49905 https://www.cve.org/CVERecord?id=CVE-2022-49905 Référence CVE CVE-2022-49906 https://www.cve.org/CVERecord?id=CVE-2022-49906 Référence CVE CVE-2022-49908 https://www.cve.org/CVERecord?id=CVE-2022-49908 Référence CVE CVE-2022-49909 https://www.cve.org/CVERecord?id=CVE-2022-49909 Référence CVE CVE-2022-49910 https://www.cve.org/CVERecord?id=CVE-2022-49910 Référence CVE CVE-2022-49915 https://www.cve.org/CVERecord?id=CVE-2022-49915 Référence CVE CVE-2022-49916 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49880 Référence CVE CVE-2022-49881 https://www.cve.org/CVERecord?id=CVE-2022-49881 Référence CVE CVE-2022-49885 https://www.cve.org/CVERecord?id=CVE-2022-49885 Référence CVE CVE-2022-49886 https://www.cve.org/CVERecord?id=CVE-2022-49886 Référence CVE CVE-2022-49887 https://www.cve.org/CVERecord?id=CVE-2022-49887 Référence CVE CVE-2022-49888 https://www.cve.org/CVERecord?id=CVE-2022-49888 Référence CVE CVE-2022-49889 https://www.cve.org/CVERecord?id=CVE-2022-49889 Référence CVE CVE-2022-49890 https://www.cve.org/CVERecord?id=CVE-2022-49890 Référence CVE CVE-2022-49891 https://www.cve.org/CVERecord?id=CVE-2022-49891 Référence CVE CVE-2022-49892 https://www.cve.org/CVERecord?id=CVE-2022-49892 Référence CVE CVE-2022-49900 https://www.cve.org/CVERecord?id=CVE-2022-49900 Référence CVE CVE-2022-49901 https://www.cve.org/CVERecord?id=CVE-2022-49901 Référence CVE CVE-2022-49902 https://www.cve.org/CVERecord?id=CVE-2022-49902 Référence CVE CVE-2022-49905 https://www.cve.org/CVERecord?id=CVE-2022-49905 Référence CVE CVE-2022-49906 https://www.cve.org/CVERecord?id=CVE-2022-49906 Référence CVE CVE-2022-49908 https://www.cve.org/CVERecord?id=CVE-2022-49908 Référence CVE CVE-2022-49909 https://www.cve.org/CVERecord?id=CVE-2022-49909 Référence CVE CVE-2022-49910 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49880 Référence CVE CVE-2022-49881 https://www.cve.org/CVERecord?id=CVE-2022-49881 Référence CVE CVE-2022-49885 https://www.cve.org/CVERecord?id=CVE-2022-49885 Référence CVE CVE-2022-49886 https://www.cve.org/CVERecord?id=CVE-2022-49886 Référence CVE CVE-2022-49887 https://www.cve.org/CVERecord?id=CVE-2022-49887 Référence CVE CVE-2022-49888 https://www.cve.org/CVERecord?id=CVE-2022-49888 Référence CVE CVE-2022-49889 https://www.cve.org/CVERecord?id=CVE-2022-49889 Référence CVE CVE-2022-49890 https://www.cve.org/CVERecord?id=CVE-2022-49890 Référence CVE CVE-2022-49891 https://www.cve.org/CVERecord?id=CVE-2022-49891 Référence CVE CVE-2022-49892 https://www.cve.org/CVERecord?id=CVE-2022-49892 Référence CVE CVE-2022-49898 https://www.cve.org/CVERecord?id=CVE-2022-49898 Référence CVE CVE-2022-49900 https://www.cve.org/CVERecord?id=CVE-2022-49900 Référence CVE CVE-2022-49901 https://www.cve.org/CVERecord?id=CVE-2022-49901 Référence CVE CVE-2022-49902 https://www.cve.org/CVERecord?id=CVE-2022-49902 Référence CVE CVE-2022-49905 https://www.cve.org/CVERecord?id=CVE-2022-49905 Référence CVE CVE-2022-49906 https://www.cve.org/CVERecord?id=CVE-2022-49906 Référence CVE CVE-2022-49907 https://www.cve.org/CVERecord?id=CVE-2022-49907 Référence CVE CVE-2022-49908 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2022-49879 Référence CVE CVE-2022-49880 https://www.cve.org/CVERecord?id=CVE-2022-49880 Référence CVE CVE-2022-49881 https://www.cve.org/CVERecord?id=CVE-2022-49881 Référence CVE CVE-2022-49885 https://www.cve.org/CVERecord?id=CVE-2022-49885 Référence CVE CVE-2022-49887 https://www.cve.org/CVERecord?id=CVE-2022-49887 Référence CVE CVE-2022-49888 https://www.cve.org/CVERecord?id=CVE-2022-49888 Référence CVE CVE-2022-49889 https://www.cve.org/CVERecord?id=CVE-2022-49889 Référence CVE CVE-2022-49890 https://www.cve.org/CVERecord?id=CVE-2022-49890 Référence CVE CVE-2022-49891 https://www.cve.org/CVERecord?id=CVE-2022-49891 Référence CVE CVE-2022-49892 https://www.cve.org/CVERecord?id=CVE-2022-49892 Référence CVE CVE-2022-49900 https://www.cve.org/CVERecord?id=CVE-2022-49900 Référence CVE CVE-2022-49905 https://www.cve.org/CVERecord?id=CVE-2022-49905 Référence CVE CVE-2022-49906 https://www.cve.org/CVERecord?id=CVE-2022-49906 Référence CVE CVE-2022-49908 https://www.cve.org/CVERecord?id=CVE-2022-49908 Référence CVE CVE-2022-49909 https://www.cve.org/CVERecord?id=CVE-2022-49909 Référence CVE CVE-2022-49910 https://www.cve.org/CVERecord?id=CVE-2022-49910 Référence CVE CVE-2022-49915 https://www.cve.org/CVERecord?id=CVE-2022-49915 Référence CVE CVE-2022-49916 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
edb096e00724f02db5f6ec7900f3bbd465c6c76f < ea5f2fd4640ecbb9df969bf8bb27733ae2183169; edb096e00724f02db5f6ec7900f3bbd465c6c76f < 88561a66777e7a2fe06638c6dcb22a9fae0b6733; edb096e00724f02db5f6ec7900f3bbd465c6c76f < cc1b9961a0ceb70f6ca4e2f4b8bb71c87c7a495c; edb096e00724f02db5f6ec7900f3bbd465c6c76f < 0e792b89e6800cd9cb4757a76a96f7ef3e8b6294; a60e407b961e818541ff7924afa8e51fbdb21a61; ed1bf4397d2219d4b9ec2d5517416ba102186650; 100553e197e2c41eccf9fa04b2be9cd11ae21215; 30d3c1c9c9dd31b3c3a5aa0f4f40f1e321c6c791
Fixed
< 4.14; 5.10.154 ≤ 5.10.*; 5.15.78 ≤ 5.15.*; 6.0.8 ≤ 6.0.*; 6.1 ≤ *
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 1 May 2025 · Last source change 5 Aug 2026, 08:56 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-2025-12863
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-49892 · cve.blacktree.nl