BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2024
CVE-2024-39488High confidence

arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY

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.

13 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 archivelinuxAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-awsAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-azureAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-gcpAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-gkeAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-ibmAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-lowlatencyAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-nvidiaAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-nvidia-lowlatencyAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-oem-6.8Affected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-oracleAffected, 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
Ubuntu 24.04 LTSnoble · standard archivelinux-raspiAffected, 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
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 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-2024-38013

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: arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY When CONFIG_DEBUG_BUGVERBOSE=n, we fail to add necessary padding bytes to bug_table entries, and as a result the last entry in a bug table will be ignored, potentially leading to an unexpected panic(). All prior entries in the table will be handled correctly. The arm64 ABI requires that struct fields of up to 8 bytes are naturally-aligned, with padding added within a struct such that struct are suitably aligned within arrays. When CONFIG_DEBUG_BUGVERPOSE=y, the layout of a bug_entry is: struct bug_entry { signed int bug_addr_disp; // 4 bytes signed int file_disp; // 4 bytes unsigned short line; // 2 bytes unsigned short flags; // 2 bytes } ... with 12 bytes total, requiring 4-byte alignment. When CONFIG_DEBUG_BUGVERBOSE=n, the layout of a bug_entry is: struct bug_entry { signed int bug_addr_disp; // 4 bytes unsigned short flags; // 2 bytes < implicit padding > // 2 bytes } ... with 8 bytes total, with 6 bytes of data and 2 bytes of trailing padding, requiring 4-byte alginment. When we create a bug_entry in assembly, we align the start of the entry to 4 bytes, which implicitly handles padding for any prior entries. However, we do not align the end of the entry, and so when CONFIG_DEBUG_BUGVERBOSE=n, the final entry lacks the trailing padding bytes. For the main kernel image this is not a problem as find_bug() doesn't depend on the trailing padding bytes when searching for entries: for (bug = __start___bug_table; bug < __stop___bug_table; ++bug) if (bugaddr == bug_addr(bug)) return bug; However for modules, module_bug_finalize() depends on the trailing bytes when calculating the number of entries: mod->num_bugs = sechdrs[i].sh_size / sizeof(struct bug_entry); ... and as the last bug_entry lacks the necessary padding bytes, this entry will not be counted, e.g. in the case of a single entry: sechdrs[i].sh_size == 6 sizeof(struct bug_entry) == 8; sechdrs[i].sh_size / sizeof(struct bug_entry) == 0; Consequently module_find_bug() will miss the last bug_entry when it does: for (i = 0; i < mod->num_bugs; ++i, ++bug) if (bugaddr == bug_addr(bug)) goto out; ... which can lead to a kenrel panic due to an unhandled bug. This can be demonstrated with the following module: static int __init buginit(void) { WARN(1, "hello\n"); return 0; } static void __exit bugexit(void) { } module_init(buginit); module_exit(bugexit); MODULE_LICENSE("GPL"); ... which will trigger a kernel panic when loaded: ------------[ cut here ]------------ hello Unexpected kernel BRK exception at EL1 Internal error: BRK handler: 00000000f2000800 [#1] PREEMPT SMP Modules linked in: hello(O+) CPU: 0 PID: 50 Comm: insmod Tainted: G O 6.9.1 #8 Hardware name: linux,dummy-virt (DT) pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : buginit+0x18/0x1000 [hello] lr : buginit+0x18/0x1000 [hello] sp : ffff800080533ae0 x29: ffff800080533ae0 x28: 0000000000000000 x27: 0000000000000000 x26: ffffaba8c4e70510 x25: ffff800080533c30 x24: ffffaba8c4a28a58 x23: 0000000000000000 x22: 0000000000000000 x21: ffff3947c0eab3c0 x20: ffffaba8c4e3f000 x19: ffffaba846464000 x18: 0000000000000006 x17: 0000000000000000 x16: ffffaba8c2492834 x15: 0720072007200720 x14: 0720072007200720 x13: ffffaba8c49b27c8 x12: 0000000000000312 x11: 0000000000000106 x10: ffffaba8c4a0a7c8 x9 : ffffaba8c49b27c8 x8 : 00000000ffffefff x7 : ffffaba8c4a0a7c8 x6 : 80000000fffff000 x5 : 0000000000000107 x4 : 0000000000000000 x3 : 0000000000000000 x2 : 0000000000000000 x1 : 0000000000000000 x0 : ffff3947c0eab3c0 Call trace: buginit+0x18/0x1000 [hello] do_one_initcall+0x80/0x1c8 do_init_module+0x60/0x218 load_module+0x1ba4/0x1d70 __do_sys_init_module+0x198/0x1d0 __arm64_sys_init_module+0x1c/0x28 invoke_syscall+0x48/0x114 el0_svc ---truncated---

What

In the Linux kernel, the following vulnerability has been resolved: arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY When CONFIG_DEBUG_BUGVERBOSE=n, we fail to add necessary padding bytes to bug_table entries, and as a result the last entry in a bug table will be ignored, potentially leading to an unexpected panic(). All prior entries in the table will be handled correctly. The arm64 ABI requires that struct fields of up to 8 bytes are naturally-aligned, with padding added within a struct such that struct are suitably aligned within arrays. When CONFIG_DEBUG_BUGVERPOSE=y, the layout of a bug_entry is: struct bug_entry { signed int bug_addr_disp; // 4 bytes signed int file_disp; // 4 bytes unsigned short line; // 2 bytes unsigned short flags; // 2 bytes } ... with 12 bytes total, requiring 4-byte alignment. When CONFIG_DEBUG_BUGVERBOSE=n, the layout of a bug_entry is: struct bug_entry { signed int bug_addr_disp; // 4 bytes unsigned short flags; // 2 bytes < implicit padding > // 2 bytes } ... with 8 bytes total, with 6 bytes of data and 2 bytes of trailing padding, requiring 4-byte alginment. When we create a bug_entry in assembly, we align the start of the entry to 4 bytes, which implicitly handles padding for any prior entries. However, we do not align the end of the entry, and so when CONFIG_DEBUG_BUGVERBOSE=n, the final entry lacks the trailing padding bytes. For the main kernel image this is not a problem as find_bug() doesn't depend on the trailing padding bytes when searching for entries: for (bug = __start___bug_table; bug < __stop___bug_table; ++bug) if (bugaddr == bug_addr(bug)) return bug; However for modules, module_bug_finalize() depends on the trailing bytes when calculating the number of entries: mod->num_bugs = sechdrs[i].sh_size / sizeof(struct bug_entry); ... and as the last bug_entry lacks the necessary padding bytes, this entry will not be counted, e.g. in the case of a single entry: sechdrs[i].sh_size == 6 sizeof(struct bug_entry) == 8; sechdrs[i].sh_size / sizeof(struct bug_entry) == 0; Consequently module_find_bug() will miss the last bug_entry when it does: for (i = 0; i < mod->num_bugs; ++i, ++bug) if (bugaddr == bug_addr(bug)) goto out; ... which can lead to a kenrel panic due to an unhandled bug. This can be demonstrated with the following module: static int __init buginit(void) { WARN(1, "hello\n"); return 0; } static void __exit bugexit(void) { } module_init(buginit); module_exit(bugexit); MODULE_LICENSE("GPL"); ... which will trigger a kernel panic when loaded: ------------[ cut here ]------------ hello Unexpected kernel BRK exception at EL1 Internal error: BRK handler: 00000000f2000800 [#1] PREEMPT SMP Modules linked in: hello(O+) CPU: 0 PID: 50 Comm: insmod Tainted: G O 6.9.1 #8 Hardware name: linux,dummy-virt (DT) pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : buginit+0x18/0x1000 [hello] lr : buginit+0x18/0x1000 [hello] sp : ffff800080533ae0 x29: ffff800080533ae0 x28: 0000000000000000 x27: 0000000000000000 x26: ffffaba8c4e70510 x25: ffff800080533c30 x24: ffffaba8c4a28a58 x23: 0000000000000000 x22: 0000000000000000 x21: ffff3947c0eab3c0 x20: ffffaba8c4e3f000 x19: ffffaba846464000 x18: 0000000000000006 x17: 0000000000000000 x16: ffffaba8c2492834 x15: 0720072007200720 x14: 0720072007200720 x13: ffffaba8c49b27c8 x12: 0000000000000312 x11: 0000000000000106 x10: ffffaba8c4a0a7c8 x9 : ffffaba8c49b27c8 x8 : 00000000ffffefff x7 : ffffaba8c4a0a7c8 x6 : 80000000fffff000 x5 : 0000000000000107 x4 : 0000000000000000 x3 : 0000000000000000 x2 : 0000000000000000 x1 : 0000000000000000 x0 : ffff3947c0eab3c0 Call trace: buginit+0x18/0x1000 [hello] do_one_initcall+0x80/0x1c8 do_init_module+0x60/0x218 load_module+0x1ba4/0x1d70 __do_sys_init_module+0x198/0x1d0 __arm64_sys_init_module+0x1c/0x28 invoke_syscall+0x48/0x114 el0_svc ---truncated---

Why

The current structured CVE record identifies a security weakness, but the root cause requires confirmation in the linked vendor material.

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: arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY When CONFIG_DEBUG_BUGVERBOSE=n, we fail to add necessary padding bytes to bug_table entries, and as a result the last entry in a bug table will be ignored, potentially leading to an unexpected panic(). All prior entries in the table will be handled correctly. The arm64 ABI requires that struct fields of up to 8 bytes are naturally-aligned, with padding added within a struct such that struct are suitably aligned within arrays. When CONFIG_DEBUG_BUGVERPOSE=y, the layout of a bug_entry is: struct bug_entry { signed int bug_addr_disp; // 4 bytes signed int file_disp; // 4 bytes unsigned short line; // 2 bytes unsigned short flags; // 2 bytes } ... with 12 bytes total, requiring 4-byte alignment. When CONFIG_DEBUG_BUGVERBOSE=n, the layout of a bug_entry is: struct bug_entry { signed int bug_addr_disp; // 4 bytes unsigned short flags; // 2 bytes < implicit padding > // 2 bytes } ... with 8 bytes total, with 6 bytes of data and 2 bytes of trailing padding, requiring 4-byte alginment. When we create a bug_entry in assembly, we align the start of the entry to 4 bytes, which implicitly handles padding for any prior entries. However, we do not align the end of the entry, and so when CONFIG_DEBUG_BUGVERBOSE=n, the final entry lacks the trailing padding bytes. For the main kernel image this is not a problem as find_bug() doesn't depend on the trailing padding bytes when searching for entries: for (bug = __start___bug_table; bug < __stop___bug_table; ++bug) if (bugaddr == bug_addr(bug)) return bug; However for modules, module_bug_finalize() depends on the trailing bytes when calculating the number of entries: mod->num_bugs = sechdrs[i].sh_size / sizeof(struct bug_entry); ... and as the last bug_entry lacks the necessary padding bytes, this entry will not be counted, e.g. in the case of a single entry: sechdrs[i].sh_size == 6 sizeof(struct bug_entry) == 8; sechdrs[i].sh_size / sizeof(struct bug_entry) == 0; Consequently module_find_bug() will miss the last bug_entry when it does: for (i = 0; i < mod->num_bugs; ++i, ++bug) if (bugaddr == bug_addr(bug)) goto out; ... which can lead to a kenrel panic due to an unhandled bug. This can be demonstrated with the following module: static int __init buginit(void) { WARN(1, "hello\n"); return 0; } static void __exit bugexit(void) { } module_init(buginit); module_exit(bugexit); MODULE_LICENSE("GPL"); ... which will trigger a kernel panic when loaded: ------------[ cut here ]------------ hello Unexpected kernel BRK exception at EL1 Internal error: BRK handler: 00000000f2000800 [#1] PREEMPT SMP Modules linked in: hello(O+) CPU: 0 PID: 50 Comm: insmod Tainted: G O 6.9.1 #8 Hardware name: linux,dummy-virt (DT) pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : buginit+0x18/0x1000 [hello] lr : buginit+0x18/0x1000 [hello] sp : ffff800080533ae0 x29: ffff800080533ae0 x28: 0000000000000000 x27: 0000000000000000 x26: ffffaba8c4e70510 x25: ffff800080533c30 x24: ffffaba8c4a28a58 x23: 0000000000000000 x22: 0000000000000000 x21: ffff3947c0eab3c0 x20: ffffaba8c4e3f000 x19: ffffaba846464000 x18: 0000000000000006 x17: 0000000000000000 x16: ffffaba8c2492834 x15: 0720072007200720 x14: 0720072007200720 x13: ffffaba8c49b27c8 x12: 0000000000000312 x11: 0000000000000106 x10: ffffaba8c4a0a7c8 x9 : ffffaba8c49b27c8 x8 : 00000000ffffefff x7 : ffffaba8c4a0a7c8 x6 : 80000000fffff000 x5 : 0000000000000107 x4 : 0000000000000000 x3 : 0000000000000000 x2 : 0000000000000000 x1 : 0000000000000000 x0 : ffff3947c0eab3c0 Call trace: buginit+0x18/0x1000 [hello] do_one_initcall+0x80/0x1c8 do_init_module+0x60/0x218 load_module+0x1ba4/0x1d70 __do_sys_init_module+0x198/0x1d0 __arm64_sys_init_module+0x1c/0x28 invoke_syscall+0x48/0x114 el0_svc ---truncated---

Why

The current structured CVE record identifies a security weakness, but the root cause requires confirmation in the linked vendor material.

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 → vulnerable operation → 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.
CWE not yet assigned
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.
A

Official authority intelligence

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

BSI · German · WID-SEC-W-2024-1555Linux Kernel: Mehrere Schwachstellen ermöglichen nicht spezifizierten Angriff

Ein lokaler Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

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

d?id=CVE-2024-39478 Référence CVE CVE-2024-39479 https://www.cve.org/CVERecord?id=CVE-2024-39479 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39481 https://www.cve.org/CVERecord?id=CVE-2024-39481 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39483 https://www.cve.org/CVERecord?id=CVE-2024-39483 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39485 https://www.cve.org/CVERecord?id=CVE-2024-39485 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39490 https://www.cve.org/CVERecord?id=CVE-2024-39490 Référence CVE CVE-2024-39491 https://www.cve.org/CVERecord?id=CVE-2024-39491 Référence CVE CVE-2024-39492 https://www.cve.org/CVERecord?id=CVE-2024-39492 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39494 https://www.cve.org/CVERecord?id=CVE-2024-39494 Référence CVE CVE-2024-39495 https://www.cve.org/CVERecord?id=CVE-2024-39495 Référence CVE CVE-2024-39496 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-36979 Référence CVE CVE-2024-38548 https://www.cve.org/CVERecord?id=CVE-2024-38548 Référence CVE CVE-2024-38563 https://www.cve.org/CVERecord?id=CVE-2024-38563 Référence CVE CVE-2024-38609 https://www.cve.org/CVERecord?id=CVE-2024-38609 Référence CVE CVE-2024-38662 https://www.cve.org/CVERecord?id=CVE-2024-38662 Référence CVE CVE-2024-39476 https://www.cve.org/CVERecord?id=CVE-2024-39476 Référence CVE CVE-2024-39483 https://www.cve.org/CVERecord?id=CVE-2024-39483 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39486 https://www.cve.org/CVERecord?id=CVE-2024-39486 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39491 https://www.cve.org/CVERecord?id=CVE-2024-39491 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39497 https://www.cve.org/CVERecord?id=CVE-2024-39497 Référence CVE CVE-2024-39499 https://www.cve.org/CVERecord?id=CVE-2024-39499 Référence CVE CVE-2024-39500 https://www.cve.org/CVERecord?id=CVE-2024-39500 Référence CVE CVE-2024-39501 https://www.cve.org/CVERecord?id=CVE-2024-39501 Référence CVE CVE-2024-39505 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-39478 Référence CVE CVE-2024-39479 https://www.cve.org/CVERecord?id=CVE-2024-39479 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39481 https://www.cve.org/CVERecord?id=CVE-2024-39481 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39483 https://www.cve.org/CVERecord?id=CVE-2024-39483 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39485 https://www.cve.org/CVERecord?id=CVE-2024-39485 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39490 https://www.cve.org/CVERecord?id=CVE-2024-39490 Référence CVE CVE-2024-39491 https://www.cve.org/CVERecord?id=CVE-2024-39491 Référence CVE CVE-2024-39492 https://www.cve.org/CVERecord?id=CVE-2024-39492 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39494 https://www.cve.org/CVERecord?id=CVE-2024-39494 Référence CVE CVE-2024-39495 https://www.cve.org/CVERecord?id=CVE-2024-39495 Référence CVE CVE-2024-39496 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-39478 Référence CVE CVE-2024-39479 https://www.cve.org/CVERecord?id=CVE-2024-39479 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39481 https://www.cve.org/CVERecord?id=CVE-2024-39481 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39483 https://www.cve.org/CVERecord?id=CVE-2024-39483 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39485 https://www.cve.org/CVERecord?id=CVE-2024-39485 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39490 https://www.cve.org/CVERecord?id=CVE-2024-39490 Référence CVE CVE-2024-39491 https://www.cve.org/CVERecord?id=CVE-2024-39491 Référence CVE CVE-2024-39492 https://www.cve.org/CVERecord?id=CVE-2024-39492 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39494 https://www.cve.org/CVERecord?id=CVE-2024-39494 Référence CVE CVE-2024-39495 https://www.cve.org/CVERecord?id=CVE-2024-39495 Référence CVE CVE-2024-39496 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-38563 Référence CVE CVE-2024-38602 https://www.cve.org/CVERecord?id=CVE-2024-38602 Référence CVE CVE-2024-38609 https://www.cve.org/CVERecord?id=CVE-2024-38609 Référence CVE CVE-2024-38618 https://www.cve.org/CVERecord?id=CVE-2024-38618 Référence CVE CVE-2024-38662 https://www.cve.org/CVERecord?id=CVE-2024-38662 Référence CVE CVE-2024-39476 https://www.cve.org/CVERecord?id=CVE-2024-39476 Référence CVE CVE-2024-39483 https://www.cve.org/CVERecord?id=CVE-2024-39483 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39486 https://www.cve.org/CVERecord?id=CVE-2024-39486 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39491 https://www.cve.org/CVERecord?id=CVE-2024-39491 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39497 https://www.cve.org/CVERecord?id=CVE-2024-39497 Référence CVE CVE-2024-39499 https://www.cve.org/CVERecord?id=CVE-2024-39499 Référence CVE CVE-2024-39500 https://www.cve.org/CVERecord?id=CVE-2024-39500 Référence CVE CVE-2024-39501 https://www.cve.org/CVERecord?id=CVE-2024-39501 Référence CVE CVE-2024-39505 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-39471 Référence CVE CVE-2024-39472 https://www.cve.org/CVERecord?id=CVE-2024-39472 Référence CVE CVE-2024-39473 https://www.cve.org/CVERecord?id=CVE-2024-39473 Référence CVE CVE-2024-39474 https://www.cve.org/CVERecord?id=CVE-2024-39474 Référence CVE CVE-2024-39475 https://www.cve.org/CVERecord?id=CVE-2024-39475 Référence CVE CVE-2024-39479 https://www.cve.org/CVERecord?id=CVE-2024-39479 Référence CVE CVE-2024-39481 https://www.cve.org/CVERecord?id=CVE-2024-39481 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39490 https://www.cve.org/CVERecord?id=CVE-2024-39490 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39494 https://www.cve.org/CVERecord?id=CVE-2024-39494 Référence CVE CVE-2024-39496 https://www.cve.org/CVERecord?id=CVE-2024-39496 Référence CVE CVE-2024-39497 https://www.cve.org/CVERecord?id=CVE-2024-39497 Référence CVE CVE-2024-39498 https://www.cve.org/CVERecord?id=CVE-2024-39498 Référence CVE CVE-2024-39499 https://www.cve.org/CVERecord?id=CVE-2024-39499 Référence CVE CVE-2024-39500 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-38780 Référence CVE CVE-2024-39276 https://www.cve.org/CVERecord?id=CVE-2024-39276 Référence CVE CVE-2024-39292 https://www.cve.org/CVERecord?id=CVE-2024-39292 Référence CVE CVE-2024-39301 https://www.cve.org/CVERecord?id=CVE-2024-39301 Référence CVE CVE-2024-39467 https://www.cve.org/CVERecord?id=CVE-2024-39467 Référence CVE CVE-2024-39471 https://www.cve.org/CVERecord?id=CVE-2024-39471 Référence CVE CVE-2024-39475 https://www.cve.org/CVERecord?id=CVE-2024-39475 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Gestion détaillée du document le 23 août 2024 Version initiale Alertes Avis Bulletins d’actualités Mentions légales Conditions générales À propos Contact cyber.gouv.fr service-public.fr legifrance.gouv.fr info.gouv.fr france.fr info.gouv.fr/risques Premier Ministre / Secrétariat Général de la Défense et de la Sécurité Nationale / Agence nationale de la sécurité des systèmes d'information

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

d?id=CVE-2024-38780 Référence CVE CVE-2024-39276 https://www.cve.org/CVERecord?id=CVE-2024-39276 Référence CVE CVE-2024-39292 https://www.cve.org/CVERecord?id=CVE-2024-39292 Référence CVE CVE-2024-39301 https://www.cve.org/CVERecord?id=CVE-2024-39301 Référence CVE CVE-2024-39467 https://www.cve.org/CVERecord?id=CVE-2024-39467 Référence CVE CVE-2024-39471 https://www.cve.org/CVERecord?id=CVE-2024-39471 Référence CVE CVE-2024-39475 https://www.cve.org/CVERecord?id=CVE-2024-39475 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-41011 https://www.cve.org/CVERecord?id=CVE-2024-41011 Référence CVE CVE-2024-42134 https://www.cve.org/CVERecord?id=CVE-2024-42134 Gestion détaillée du document le 16 août 2024 Version initiale Alertes Avis Bulletins d’actualités Mentions légales Conditions générales À propos Contact cyber.gouv.fr service-public.fr legifrance.gouv.fr info.gouv.fr france.fr info.gouv.fr/risques Premier Ministre / Secrétariat Général de la

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

d?id=CVE-2024-39471 Référence CVE CVE-2024-39472 https://www.cve.org/CVERecord?id=CVE-2024-39472 Référence CVE CVE-2024-39473 https://www.cve.org/CVERecord?id=CVE-2024-39473 Référence CVE CVE-2024-39474 https://www.cve.org/CVERecord?id=CVE-2024-39474 Référence CVE CVE-2024-39475 https://www.cve.org/CVERecord?id=CVE-2024-39475 Référence CVE CVE-2024-39479 https://www.cve.org/CVERecord?id=CVE-2024-39479 Référence CVE CVE-2024-39481 https://www.cve.org/CVERecord?id=CVE-2024-39481 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39490 https://www.cve.org/CVERecord?id=CVE-2024-39490 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39494 https://www.cve.org/CVERecord?id=CVE-2024-39494 Référence CVE CVE-2024-39496 https://www.cve.org/CVERecord?id=CVE-2024-39496 Référence CVE CVE-2024-39497 https://www.cve.org/CVERecord?id=CVE-2024-39497 Référence CVE CVE-2024-39498 https://www.cve.org/CVERecord?id=CVE-2024-39498 Référence CVE CVE-2024-39499 https://www.cve.org/CVERecord?id=CVE-2024-39499 Référence CVE CVE-2024-39500 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-38780 Référence CVE CVE-2024-39276 https://www.cve.org/CVERecord?id=CVE-2024-39276 Référence CVE CVE-2024-39292 https://www.cve.org/CVERecord?id=CVE-2024-39292 Référence CVE CVE-2024-39301 https://www.cve.org/CVERecord?id=CVE-2024-39301 Référence CVE CVE-2024-39467 https://www.cve.org/CVERecord?id=CVE-2024-39467 Référence CVE CVE-2024-39471 https://www.cve.org/CVERecord?id=CVE-2024-39471 Référence CVE CVE-2024-39475 https://www.cve.org/CVERecord?id=CVE-2024-39475 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-41011 https://www.cve.org/CVERecord?id=CVE-2024-41011 Référence CVE CVE-2024-42134 https://www.cve.org/CVERecord?id=CVE-2024-42134 Gestion détaillée du document le 09 août 2024 Version initiale Alertes Avis Bulletins d’actualités Mentions légales Conditions générales À propos Contact cyber.gouv.fr service-public.fr legifrance.gouv.fr info.gouv.fr france.fr info.gouv.fr/risques Premier Ministre / Secrétariat Général de la

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

d?id=CVE-2024-39469 Référence CVE CVE-2024-39471 https://www.cve.org/CVERecord?id=CVE-2024-39471 Référence CVE CVE-2024-39474 https://www.cve.org/CVERecord?id=CVE-2024-39474 Référence CVE CVE-2024-39475 https://www.cve.org/CVERecord?id=CVE-2024-39475 Référence CVE CVE-2024-39476 https://www.cve.org/CVERecord?id=CVE-2024-39476 Référence CVE CVE-2024-39480 https://www.cve.org/CVERecord?id=CVE-2024-39480 Référence CVE CVE-2024-39482 https://www.cve.org/CVERecord?id=CVE-2024-39482 Référence CVE CVE-2024-39484 https://www.cve.org/CVERecord?id=CVE-2024-39484 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39488 https://www.cve.org/CVERecord?id=CVE-2024-39488 Référence CVE CVE-2024-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-39493 https://www.cve.org/CVERecord?id=CVE-2024-39493 Référence CVE CVE-2024-39494 https://www.cve.org/CVERecord?id=CVE-2024-39494 Référence CVE CVE-2024-39495 https://www.cve.org/CVERecord?id=CVE-2024-39495 Référence CVE CVE-2024-39496 https://www.cve.org/CVERecord?id=CVE-2024-39496 Référence CVE CVE-2024-39499 https://www.cve.org/CVERecord?id=CVE-2024-39499 Référence CVE CVE-2024-39500 https://www.cve.org/CVERecord?id=CVE-2024-39500 Référence CVE CVE-2024-39501 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
9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < f221bd58db0f6ca087ac0392284f6bce21f4f8ea; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < 22469a0335a1a1a690349b58bcb55822457df81e; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < 461a760d578b2b2c2faac3040b6b7c77baf128f8; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < c1929c041a262a4a27265db8dce3619c92aa678c; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < 3fd487ffaa697ddb05af78a75aaaddabe71c52b0; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < 9f2ad88f9b349554f64e4037ec185c84d7dd9c7d; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < c27a2f7668e215c1ebbccd96fab27a220a93f1f7; 9fb7410f955f7a62c1f882ca8f9ffd4525907e28 < ffbf4fb9b5c12ff878a10ea17997147ea4ebea6f
Fixed
< 4.3; 4.19.316 ≤ 4.19.*; 5.4.278 ≤ 5.4.*; 5.10.219 ≤ 5.10.*; 5.15.161 ≤ 5.15.*; 6.1.93 ≤ 6.1.*; 6.6.33 ≤ 6.6.*; 6.9.4 ≤ 6.9.*
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 10 Jul 2024 · Last source change 11 May 2026, 20:21 UTC · CWE not yet assigned

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-2024-38013
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceUnavailable
NVD statusNVD enriched

Missing structured fields: CWE classification. Missing data is not evidence of low risk; review the primary advisory.

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