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

ax25: Fix refcount imbalance on inbound connections

Linux · Linux

8.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.

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-38721

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: ax25: Fix refcount imbalance on inbound connections When releasing a socket in ax25_release(), we call netdev_put() to decrease the refcount on the associated ax.25 device. However, the execution path for accepting an incoming connection never calls netdev_hold(). This imbalance leads to refcount errors, and ultimately to kernel crashes. A typical call trace for the above situation will start with one of the following errors: refcount_t: decrement hit 0; leaking memory. refcount_t: underflow; use-after-free. And will then have a trace like: Call Trace: <TASK> ? show_regs+0x64/0x70 ? __warn+0x83/0x120 ? refcount_warn_saturate+0xb2/0x100 ? report_bug+0x158/0x190 ? prb_read_valid+0x20/0x30 ? handle_bug+0x3e/0x70 ? exc_invalid_op+0x1c/0x70 ? asm_exc_invalid_op+0x1f/0x30 ? refcount_warn_saturate+0xb2/0x100 ? refcount_warn_saturate+0xb2/0x100 ax25_release+0x2ad/0x360 __sock_release+0x35/0xa0 sock_close+0x19/0x20 [...] On reboot (or any attempt to remove the interface), the kernel gets stuck in an infinite loop: unregister_netdevice: waiting for ax0 to become free. Usage count = 0 This patch corrects these issues by ensuring that we call netdev_hold() and ax25_dev_hold() for new connections in ax25_accept(). This makes the logic leading to ax25_accept() match the logic for ax25_bind(): in both cases we increment the refcount, which is ultimately decremented in ax25_release().

What

In the Linux kernel, the following vulnerability has been resolved: ax25: Fix refcount imbalance on inbound connections When releasing a socket in ax25_release(), we call netdev_put() to decrease the refcount on the associated ax.25 device. However, the execution path for accepting an incoming connection never calls netdev_hold(). This imbalance leads to refcount errors, and ultimately to kernel crashes. A typical call trace for the above situation will start with one of the following errors: refcount_t: decrement hit 0; leaking memory. refcount_t: underflow; use-after-free. And will then have a trace like: Call Trace: <TASK> ? show_regs+0x64/0x70 ? __warn+0x83/0x120 ? refcount_warn_saturate+0xb2/0x100 ? report_bug+0x158/0x190 ? prb_read_valid+0x20/0x30 ? handle_bug+0x3e/0x70 ? exc_invalid_op+0x1c/0x70 ? asm_exc_invalid_op+0x1f/0x30 ? refcount_warn_saturate+0xb2/0x100 ? refcount_warn_saturate+0xb2/0x100 ax25_release+0x2ad/0x360 __sock_release+0x35/0xa0 sock_close+0x19/0x20 [...] On reboot (or any attempt to remove the interface), the kernel gets stuck in an infinite loop: unregister_netdevice: waiting for ax0 to become free. Usage count = 0 This patch corrects these issues by ensuring that we call netdev_hold() and ax25_dev_hold() for new connections in ax25_accept(). This makes the logic leading to ax25_accept() match the logic for ax25_bind(): in both cases we increment the refcount, which is ultimately decremented in ax25_release().

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 an adjacent network may attempt exploitation without authentication or user interaction. If successful, the issue may disrupt the affected service.

What

In the Linux kernel, the following vulnerability has been resolved: ax25: Fix refcount imbalance on inbound connections When releasing a socket in ax25_release(), we call netdev_put() to decrease the refcount on the associated ax.25 device. However, the execution path for accepting an incoming connection never calls netdev_hold(). This imbalance leads to refcount errors, and ultimately to kernel crashes. A typical call trace for the above situation will start with one of the following errors: refcount_t: decrement hit 0; leaking memory. refcount_t: underflow; use-after-free. And will then have a trace like: Call Trace: <TASK> ? show_regs+0x64/0x70 ? __warn+0x83/0x120 ? refcount_warn_saturate+0xb2/0x100 ? report_bug+0x158/0x190 ? prb_read_valid+0x20/0x30 ? handle_bug+0x3e/0x70 ? exc_invalid_op+0x1c/0x70 ? asm_exc_invalid_op+0x1f/0x30 ? refcount_warn_saturate+0xb2/0x100 ? refcount_warn_saturate+0xb2/0x100 ax25_release+0x2ad/0x360 __sock_release+0x35/0xa0 sock_close+0x19/0x20 [...] On reboot (or any attempt to remove the interface), the kernel gets stuck in an infinite loop: unregister_netdevice: waiting for ax0 to become free. Usage count = 0 This patch corrects these issues by ensuring that we call netdev_hold() and ax25_dev_hold() for new connections in ax25_accept(). This makes the logic leading to ax25_accept() match the logic for ax25_bind(): in both cases we increment the refcount, which is ultimately decremented in ax25_release().

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 an adjacent network may attempt exploitation without authentication or user interaction. If successful, the issue may disrupt the affected service.

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
an adjacent network → vulnerable operation → disrupt the affected service
Attack surface
Adjacent
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration.
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:A/AC:L/PR:N/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.

AVAdjacentAttack vector: The attacker must be on an adjacent or logically close network.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.PRNonePrivileges required: The attacker does not need an account or existing privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.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
No specific living-off-the-land technique is confirmed in the structured sources. Monitor normal administration tools for activity inconsistent with the affected service's baseline.
UnauthenticatedDenial of service
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-1607Linux Kernel: Mehrere Schwachstellen

Ein lokaler Angreifer kann mehrere Schwachstellen im Linux-Kernel ausnutzen, um seine Privilegien zu erweitern, einen Denial-of-Service-Zustand zu erzeugen, vertrauliche Informationen offenzulegen oder einen unspezifischen Angriff durchzuführen.

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

d?id=CVE-2024-35967 Référence CVE CVE-2024-36476 https://www.cve.org/CVERecord?id=CVE-2024-36476 Référence CVE CVE-2024-36899 https://www.cve.org/CVERecord?id=CVE-2024-36899 Référence CVE CVE-2024-36952 https://www.cve.org/CVERecord?id=CVE-2024-36952 Référence CVE CVE-2024-38544 https://www.cve.org/CVERecord?id=CVE-2024-38544 Référence CVE CVE-2024-38553 https://www.cve.org/CVERecord?id=CVE-2024-38553 Référence CVE CVE-2024-38588 https://www.cve.org/CVERecord?id=CVE-2024-38588 Référence CVE CVE-2024-38597 https://www.cve.org/CVERecord?id=CVE-2024-38597 Référence CVE CVE-2024-39497 https://www.cve.org/CVERecord?id=CVE-2024-39497 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40953 https://www.cve.org/CVERecord?id=CVE-2024-40953 Référence CVE CVE-2024-40965 https://www.cve.org/CVERecord?id=CVE-2024-40965 Référence CVE CVE-2024-40967 https://www.cve.org/CVERecord?id=CVE-2024-40967 Référence CVE CVE-2024-41016 https://www.cve.org/CVERecord?id=CVE-2024-41016 Référence CVE CVE-2024-41066 https://www.cve.org/CVERecord?id=CVE-2024-41066 Référence CVE CVE-2024-41080 https://www.cve.org/CVERecord?id=CVE-2024-41080 Référence CVE CVE-2024-42252 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2023-52880 Référence CVE CVE-2024-23848 https://www.cve.org/CVERecord?id=CVE-2024-23848 Référence CVE CVE-2024-26685 https://www.cve.org/CVERecord?id=CVE-2024-26685 Référence CVE CVE-2024-35896 https://www.cve.org/CVERecord?id=CVE-2024-35896 Référence CVE CVE-2024-36886 https://www.cve.org/CVERecord?id=CVE-2024-36886 Référence CVE CVE-2024-36952 https://www.cve.org/CVERecord?id=CVE-2024-36952 Référence CVE CVE-2024-36964 https://www.cve.org/CVERecord?id=CVE-2024-36964 Référence CVE CVE-2024-38558 https://www.cve.org/CVERecord?id=CVE-2024-38558 Référence CVE CVE-2024-38567 https://www.cve.org/CVERecord?id=CVE-2024-38567 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40943 https://www.cve.org/CVERecord?id=CVE-2024-40943 Référence CVE CVE-2024-40981 https://www.cve.org/CVERecord?id=CVE-2024-40981 Référence CVE CVE-2024-41063 https://www.cve.org/CVERecord?id=CVE-2024-41063 Référence CVE CVE-2024-41064 https://www.cve.org/CVERecord?id=CVE-2024-41064 Référence CVE CVE-2024-42068 https://www.cve.org/CVERecord?id=CVE-2024-42068 Référence CVE CVE-2024-42070 https://www.cve.org/CVERecord?id=CVE-2024-42070 Référence CVE CVE-2024-43854 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-26718 Référence CVE CVE-2024-35887 https://www.cve.org/CVERecord?id=CVE-2024-35887 Référence CVE CVE-2024-35896 https://www.cve.org/CVERecord?id=CVE-2024-35896 Référence CVE CVE-2024-36886 https://www.cve.org/CVERecord?id=CVE-2024-36886 Référence CVE CVE-2024-36952 https://www.cve.org/CVERecord?id=CVE-2024-36952 Référence CVE CVE-2024-36964 https://www.cve.org/CVERecord?id=CVE-2024-36964 Référence CVE CVE-2024-38544 https://www.cve.org/CVERecord?id=CVE-2024-38544 Référence CVE CVE-2024-38567 https://www.cve.org/CVERecord?id=CVE-2024-38567 Référence CVE CVE-2024-39497 https://www.cve.org/CVERecord?id=CVE-2024-39497 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40943 https://www.cve.org/CVERecord?id=CVE-2024-40943 Référence CVE CVE-2024-40953 https://www.cve.org/CVERecord?id=CVE-2024-40953 Référence CVE CVE-2024-40965 https://www.cve.org/CVERecord?id=CVE-2024-40965 Référence CVE CVE-2024-40981 https://www.cve.org/CVERecord?id=CVE-2024-40981 Référence CVE CVE-2024-41016 https://www.cve.org/CVERecord?id=CVE-2024-41016 Référence CVE CVE-2024-41063 https://www.cve.org/CVERecord?id=CVE-2024-41063 Référence CVE CVE-2024-41064 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-26822 Référence CVE CVE-2024-26929 https://www.cve.org/CVERecord?id=CVE-2024-26929 Référence CVE CVE-2024-35963 https://www.cve.org/CVERecord?id=CVE-2024-35963 Référence CVE CVE-2024-35965 https://www.cve.org/CVERecord?id=CVE-2024-35965 Référence CVE CVE-2024-35966 https://www.cve.org/CVERecord?id=CVE-2024-35966 Référence CVE CVE-2024-35967 https://www.cve.org/CVERecord?id=CVE-2024-35967 Référence CVE CVE-2024-38553 https://www.cve.org/CVERecord?id=CVE-2024-38553 Référence CVE CVE-2024-38597 https://www.cve.org/CVERecord?id=CVE-2024-38597 Référence CVE CVE-2024-38661 https://www.cve.org/CVERecord?id=CVE-2024-38661 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40967 https://www.cve.org/CVERecord?id=CVE-2024-40967 Référence CVE CVE-2024-40973 https://www.cve.org/CVERecord?id=CVE-2024-40973 Référence CVE CVE-2024-40982 https://www.cve.org/CVERecord?id=CVE-2024-40982 Référence CVE CVE-2024-41012 https://www.cve.org/CVERecord?id=CVE-2024-41012 Référence CVE CVE-2024-41020 https://www.cve.org/CVERecord?id=CVE-2024-41020 Référence CVE CVE-2024-41066 https://www.cve.org/CVERecord?id=CVE-2024-41066 Référence CVE CVE-2024-42252 https://www.cve.org/CVERecord?id=CVE-2024-42252 Référence CVE CVE-2024-42311 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-35966 Référence CVE CVE-2024-35967 https://www.cve.org/CVERecord?id=CVE-2024-35967 Référence CVE CVE-2024-36938 https://www.cve.org/CVERecord?id=CVE-2024-36938 Référence CVE CVE-2024-36952 https://www.cve.org/CVERecord?id=CVE-2024-36952 Référence CVE CVE-2024-36953 https://www.cve.org/CVERecord?id=CVE-2024-36953 Référence CVE CVE-2024-36968 https://www.cve.org/CVERecord?id=CVE-2024-36968 Référence CVE CVE-2024-38538 https://www.cve.org/CVERecord?id=CVE-2024-38538 Référence CVE CVE-2024-38553 https://www.cve.org/CVERecord?id=CVE-2024-38553 Référence CVE CVE-2024-38597 https://www.cve.org/CVERecord?id=CVE-2024-38597 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-42068 https://www.cve.org/CVERecord?id=CVE-2024-42068 Référence CVE CVE-2024-42077 https://www.cve.org/CVERecord?id=CVE-2024-42077 Référence CVE CVE-2024-42156 https://www.cve.org/CVERecord?id=CVE-2024-42156 Référence CVE CVE-2024-42240 https://www.cve.org/CVERecord?id=CVE-2024-42240 Référence CVE CVE-2024-43892 https://www.cve.org/CVERecord?id=CVE-2024-43892 Référence CVE CVE-2024-44940 https://www.cve.org/CVERecord?id=CVE-2024-44940 Référence CVE CVE-2024-44942 https://www.cve.org/CVERecord?id=CVE-2024-44942 Référence CVE CVE-2024-46724 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-38602 Référence CVE CVE-2024-38611 https://www.cve.org/CVERecord?id=CVE-2024-38611 Référence CVE CVE-2024-38619 https://www.cve.org/CVERecord?id=CVE-2024-38619 Référence CVE CVE-2024-38632 https://www.cve.org/CVERecord?id=CVE-2024-38632 Référence CVE CVE-2024-38633 https://www.cve.org/CVERecord?id=CVE-2024-38633 Référence CVE CVE-2024-38667 https://www.cve.org/CVERecord?id=CVE-2024-38667 Référence CVE CVE-2024-39301 https://www.cve.org/CVERecord?id=CVE-2024-39301 Référence CVE CVE-2024-39463 https://www.cve.org/CVERecord?id=CVE-2024-39463 Référence CVE CVE-2024-39472 https://www.cve.org/CVERecord?id=CVE-2024-39472 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40915 https://www.cve.org/CVERecord?id=CVE-2024-40915 Référence CVE CVE-2024-40959 https://www.cve.org/CVERecord?id=CVE-2024-40959 Référence CVE CVE-2024-40973 https://www.cve.org/CVERecord?id=CVE-2024-40973 Référence CVE CVE-2024-41011 https://www.cve.org/CVERecord?id=CVE-2024-41011 Référence CVE CVE-2024-41012 https://www.cve.org/CVERecord?id=CVE-2024-41012 Référence CVE CVE-2024-41015 https://www.cve.org/CVERecord?id=CVE-2024-41015 Référence CVE CVE-2024-41016 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-40899 Référence CVE CVE-2024-40900 https://www.cve.org/CVERecord?id=CVE-2024-40900 Référence CVE CVE-2024-40901 https://www.cve.org/CVERecord?id=CVE-2024-40901 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40906 https://www.cve.org/CVERecord?id=CVE-2024-40906 Référence CVE CVE-2024-40908 https://www.cve.org/CVERecord?id=CVE-2024-40908 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40914 https://www.cve.org/CVERecord?id=CVE-2024-40914 Référence CVE CVE-2024-40915 https://www.cve.org/CVERecord?id=CVE-2024-40915 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40919 https://www.cve.org/CVERecord?id=CVE-2024-40919 Référence CVE CVE-2024-40920 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-36968 Référence CVE CVE-2024-38538 https://www.cve.org/CVERecord?id=CVE-2024-38538 Référence CVE CVE-2024-38544 https://www.cve.org/CVERecord?id=CVE-2024-38544 Référence CVE CVE-2024-38545 https://www.cve.org/CVERecord?id=CVE-2024-38545 Référence CVE CVE-2024-38553 https://www.cve.org/CVERecord?id=CVE-2024-38553 Référence CVE CVE-2024-38597 https://www.cve.org/CVERecord?id=CVE-2024-38597 Référence CVE CVE-2024-38632 https://www.cve.org/CVERecord?id=CVE-2024-38632 Référence CVE CVE-2024-38667 https://www.cve.org/CVERecord?id=CVE-2024-38667 Référence CVE CVE-2024-39463 https://www.cve.org/CVERecord?id=CVE-2024-39463 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40973 https://www.cve.org/CVERecord?id=CVE-2024-40973 Référence CVE CVE-2024-41016 https://www.cve.org/CVERecord?id=CVE-2024-41016 Référence CVE CVE-2024-42068 https://www.cve.org/CVERecord?id=CVE-2024-42068 Référence CVE CVE-2024-42077 https://www.cve.org/CVERecord?id=CVE-2024-42077 Référence CVE CVE-2024-42079 https://www.cve.org/CVERecord?id=CVE-2024-42079 Référence CVE CVE-2024-42156 https://www.cve.org/CVERecord?id=CVE-2024-42156 Référence CVE CVE-2024-42158 https://www.cve.org/CVERecord?id=CVE-2024-42158 Référence CVE CVE-2024-42240 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-38538 Référence CVE CVE-2024-38544 https://www.cve.org/CVERecord?id=CVE-2024-38544 Référence CVE CVE-2024-38545 https://www.cve.org/CVERecord?id=CVE-2024-38545 Référence CVE CVE-2024-38553 https://www.cve.org/CVERecord?id=CVE-2024-38553 Référence CVE CVE-2024-38597 https://www.cve.org/CVERecord?id=CVE-2024-38597 Référence CVE CVE-2024-38630 https://www.cve.org/CVERecord?id=CVE-2024-38630 Référence CVE CVE-2024-38632 https://www.cve.org/CVERecord?id=CVE-2024-38632 Référence CVE CVE-2024-38667 https://www.cve.org/CVERecord?id=CVE-2024-38667 Référence CVE CVE-2024-39463 https://www.cve.org/CVERecord?id=CVE-2024-39463 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-41016 https://www.cve.org/CVERecord?id=CVE-2024-41016 Référence CVE CVE-2024-42068 https://www.cve.org/CVERecord?id=CVE-2024-42068 Référence CVE CVE-2024-42077 https://www.cve.org/CVERecord?id=CVE-2024-42077 Référence CVE CVE-2024-42079 https://www.cve.org/CVERecord?id=CVE-2024-42079 Référence CVE CVE-2024-42156 https://www.cve.org/CVERecord?id=CVE-2024-42156 Référence CVE CVE-2024-42158 https://www.cve.org/CVERecord?id=CVE-2024-42158 Référence CVE CVE-2024-42240 https://www.cve.org/CVERecord?id=CVE-2024-42240 Référence CVE CVE-2024-43882 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-26837 Référence CVE CVE-2024-27024 https://www.cve.org/CVERecord?id=CVE-2024-27024 Référence CVE CVE-2024-36953 https://www.cve.org/CVERecord?id=CVE-2024-36953 Référence CVE CVE-2024-36971 https://www.cve.org/CVERecord?id=CVE-2024-36971 Référence CVE CVE-2024-37353 https://www.cve.org/CVERecord?id=CVE-2024-37353 Référence CVE CVE-2024-38381 https://www.cve.org/CVERecord?id=CVE-2024-38381 Référence CVE CVE-2024-38538 https://www.cve.org/CVERecord?id=CVE-2024-38538 Référence CVE CVE-2024-38596 https://www.cve.org/CVERecord?id=CVE-2024-38596 Référence CVE CVE-2024-38632 https://www.cve.org/CVERecord?id=CVE-2024-38632 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40965 https://www.cve.org/CVERecord?id=CVE-2024-40965 Référence CVE CVE-2024-40973 https://www.cve.org/CVERecord?id=CVE-2024-40973 Référence CVE CVE-2024-40983 https://www.cve.org/CVERecord?id=CVE-2024-40983 Référence CVE CVE-2024-41000 https://www.cve.org/CVERecord?id=CVE-2024-41000 Référence CVE CVE-2024-41062 https://www.cve.org/CVERecord?id=CVE-2024-41062 Référence CVE CVE-2024-41073 https://www.cve.org/CVERecord?id=CVE-2024-41073 Référence CVE CVE-2024-41079 https://www.cve.org/CVERecord?id=CVE-2024-41079 Référence CVE CVE-2024-41082 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-40900 Référence CVE CVE-2024-40901 https://www.cve.org/CVERecord?id=CVE-2024-40901 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40906 https://www.cve.org/CVERecord?id=CVE-2024-40906 Référence CVE CVE-2024-40908 https://www.cve.org/CVERecord?id=CVE-2024-40908 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40914 https://www.cve.org/CVERecord?id=CVE-2024-40914 Référence CVE CVE-2024-40915 https://www.cve.org/CVERecord?id=CVE-2024-40915 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40917 https://www.cve.org/CVERecord?id=CVE-2024-40917 Référence CVE CVE-2024-40918 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-39509 Référence CVE CVE-2024-39510 https://www.cve.org/CVERecord?id=CVE-2024-39510 Référence CVE CVE-2024-40899 https://www.cve.org/CVERecord?id=CVE-2024-40899 Référence CVE CVE-2024-40900 https://www.cve.org/CVERecord?id=CVE-2024-40900 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40920 https://www.cve.org/CVERecord?id=CVE-2024-40920 Référence CVE CVE-2024-40921 https://www.cve.org/CVERecord?id=CVE-2024-40921 Référence CVE CVE-2024-40922 https://www.cve.org/CVERecord?id=CVE-2024-40922 Référence CVE CVE-2024-40924 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-40900 Référence CVE CVE-2024-40901 https://www.cve.org/CVERecord?id=CVE-2024-40901 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40906 https://www.cve.org/CVERecord?id=CVE-2024-40906 Référence CVE CVE-2024-40908 https://www.cve.org/CVERecord?id=CVE-2024-40908 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40914 https://www.cve.org/CVERecord?id=CVE-2024-40914 Référence CVE CVE-2024-40915 https://www.cve.org/CVERecord?id=CVE-2024-40915 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40917 https://www.cve.org/CVERecord?id=CVE-2024-40917 Référence CVE CVE-2024-40918 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-35950 Référence CVE CVE-2024-35965 https://www.cve.org/CVERecord?id=CVE-2024-35965 Référence CVE CVE-2024-36013 https://www.cve.org/CVERecord?id=CVE-2024-36013 Référence CVE CVE-2024-36270 https://www.cve.org/CVERecord?id=CVE-2024-36270 Référence CVE CVE-2024-36286 https://www.cve.org/CVERecord?id=CVE-2024-36286 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-39489 https://www.cve.org/CVERecord?id=CVE-2024-39489 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40984 https://www.cve.org/CVERecord?id=CVE-2024-40984 Référence CVE CVE-2024-41009 https://www.cve.org/CVERecord?id=CVE-2024-41009 Référence CVE CVE-2024-41011 https://www.cve.org/CVERecord?id=CVE-2024-41011 Référence CVE CVE-2024-41012 https://www.cve.org/CVERecord?id=CVE-2024-41012 Référence CVE CVE-2024-41016 https://www.cve.org/CVERecord?id=CVE-2024-41016 Référence CVE CVE-2024-41020 https://www.cve.org/CVERecord?id=CVE-2024-41020 Référence CVE CVE-2024-41035 https://www.cve.org/CVERecord?id=CVE-2024-41035 Référence CVE CVE-2024-41062 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-40900 Référence CVE CVE-2024-40901 https://www.cve.org/CVERecord?id=CVE-2024-40901 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40906 https://www.cve.org/CVERecord?id=CVE-2024-40906 Référence CVE CVE-2024-40908 https://www.cve.org/CVERecord?id=CVE-2024-40908 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40914 https://www.cve.org/CVERecord?id=CVE-2024-40914 Référence CVE CVE-2024-40915 https://www.cve.org/CVERecord?id=CVE-2024-40915 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40917 https://www.cve.org/CVERecord?id=CVE-2024-40917 Référence CVE CVE-2024-40918 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-39509 Référence CVE CVE-2024-39510 https://www.cve.org/CVERecord?id=CVE-2024-39510 Référence CVE CVE-2024-40899 https://www.cve.org/CVERecord?id=CVE-2024-40899 Référence CVE CVE-2024-40900 https://www.cve.org/CVERecord?id=CVE-2024-40900 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40920 https://www.cve.org/CVERecord?id=CVE-2024-40920 Référence CVE CVE-2024-40921 https://www.cve.org/CVERecord?id=CVE-2024-40921 Référence CVE CVE-2024-40922 https://www.cve.org/CVERecord?id=CVE-2024-40922 Référence CVE CVE-2024-40924 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-40899 Référence CVE CVE-2024-40900 https://www.cve.org/CVERecord?id=CVE-2024-40900 Référence CVE CVE-2024-40901 https://www.cve.org/CVERecord?id=CVE-2024-40901 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40903 https://www.cve.org/CVERecord?id=CVE-2024-40903 Référence CVE CVE-2024-40904 https://www.cve.org/CVERecord?id=CVE-2024-40904 Référence CVE CVE-2024-40905 https://www.cve.org/CVERecord?id=CVE-2024-40905 Référence CVE CVE-2024-40906 https://www.cve.org/CVERecord?id=CVE-2024-40906 Référence CVE CVE-2024-40908 https://www.cve.org/CVERecord?id=CVE-2024-40908 Référence CVE CVE-2024-40910 https://www.cve.org/CVERecord?id=CVE-2024-40910 Référence CVE CVE-2024-40911 https://www.cve.org/CVERecord?id=CVE-2024-40911 Référence CVE CVE-2024-40912 https://www.cve.org/CVERecord?id=CVE-2024-40912 Référence CVE CVE-2024-40913 https://www.cve.org/CVERecord?id=CVE-2024-40913 Référence CVE CVE-2024-40914 https://www.cve.org/CVERecord?id=CVE-2024-40914 Référence CVE CVE-2024-40915 https://www.cve.org/CVERecord?id=CVE-2024-40915 Référence CVE CVE-2024-40916 https://www.cve.org/CVERecord?id=CVE-2024-40916 Référence CVE CVE-2024-40919 https://www.cve.org/CVERecord?id=CVE-2024-40919 Référence CVE CVE-2024-40920 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
9fd75b66b8f68498454d685dc4ba13192ae069b0 < f4df9d6c8d4e4c818252b0419c2165d66eabd4eb; 9fd75b66b8f68498454d685dc4ba13192ae069b0 < 52100fd74ad07b53a4666feafff1cd11436362d3; 9fd75b66b8f68498454d685dc4ba13192ae069b0 < a723a6c8d4831cc8e2c7b0c9f3f0c010d4671964; 9fd75b66b8f68498454d685dc4ba13192ae069b0 < 3c34fb0bd4a4237592c5ecb5b2e2531900c55774; c44a453ffe16eb08acdc6129ac4fa0192dbc0456; de55a1338e6a48ff1e41ea8db1432496fbe2a62b; 9e1e088a57c23251f1cfe9601bbd90ade2ea73b9; b20a5ab0f5fb175750c6bafd4cf12daccf00c738
Fixed
< 5.18; 6.1.95 ≤ 6.1.*; 6.6.35 ≤ 6.6.*; 6.9.6 ≤ 6.9.*; 6.10 ≤ *
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 12 Jul 2024 · Last source change 5 Aug 2026, 11:33 UTC · CWE not yet assigned

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-2024-38721
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceUnavailable
NVD statusNVD modified after enrichment

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