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

xhci: Handle TD clearing for multiple streams case

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.

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

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: xhci: Handle TD clearing for multiple streams case When multiple streams are in use, multiple TDs might be in flight when an endpoint is stopped. We need to issue a Set TR Dequeue Pointer for each, to ensure everything is reset properly and the caches cleared. Change the logic so that any N>1 TDs found active for different streams are deferred until after the first one is processed, calling xhci_invalidate_cancelled_tds() again from xhci_handle_cmd_set_deq() to queue another command until we are done with all of them. Also change the error/"should never happen" paths to ensure we at least clear any affected TDs, even if we can't issue a command to clear the hardware cache, and complain loudly with an xhci_warn() if this ever happens. This problem case dates back to commit e9df17eb1408 ("USB: xhci: Correct assumptions about number of rings per endpoint.") early on in the XHCI driver's life, when stream support was first added. It was then identified but not fixed nor made into a warning in commit 674f8438c121 ("xhci: split handling halted endpoints into two steps"), which added a FIXME comment for the problem case (without materially changing the behavior as far as I can tell, though the new logic made the problem more obvious). Then later, in commit 94f339147fc3 ("xhci: Fix failure to give back some cached cancelled URBs."), it was acknowledged again. [Mathias: commit 94f339147fc3 ("xhci: Fix failure to give back some cached cancelled URBs.") was a targeted regression fix to the previously mentioned patch. Users reported issues with usb stuck after unmounting/disconnecting UAS devices. This rolled back the TD clearing of multiple streams to its original state.] Apparently the commit author was aware of the problem (yet still chose to submit it): It was still mentioned as a FIXME, an xhci_dbg() was added to log the problem condition, and the remaining issue was mentioned in the commit description. The choice of making the log type xhci_dbg() for what is, at this point, a completely unhandled and known broken condition is puzzling and unfortunate, as it guarantees that no actual users would see the log in production, thereby making it nigh undebuggable (indeed, even if you turn on DEBUG, the message doesn't really hint at there being a problem at all). It took me *months* of random xHC crashes to finally find a reliable repro and be able to do a deep dive debug session, which could all have been avoided had this unhandled, broken condition been actually reported with a warning, as it should have been as a bug intentionally left in unfixed (never mind that it shouldn't have been left in at all). > Another fix to solve clearing the caches of all stream rings with > cancelled TDs is needed, but not as urgent. 3 years after that statement and 14 years after the original bug was introduced, I think it's finally time to fix it. And maybe next time let's not leave bugs unfixed (that are actually worse than the original bug), and let's actually get people to review kernel commits please. Fixes xHC crashes and IOMMU faults with UAS devices when handling errors/faults. Easiest repro is to use `hdparm` to mark an early sector (e.g. 1024) on a disk as bad, then `cat /dev/sdX > /dev/null` in a loop. At least in the case of JMicron controllers, the read errors end up having to cancel two TDs (for two queued requests to different streams) and the one that didn't get cleared properly ends up faulting the xHC entirely when it tries to access DMA pages that have since been unmapped, referred to by the stale TDs. This normally happens quickly (after two or three loops). After this fix, I left the `cat` in a loop running overnight and experienced no xHC failures, with all read errors recovered properly. Repro'd and tested on an Apple M1 Mac Mini (dwc3 host). On systems without an IOMMU, this bug would instead silently corrupt freed memory, making this a ---truncated---

What

In the Linux kernel, the following vulnerability has been resolved: xhci: Handle TD clearing for multiple streams case When multiple streams are in use, multiple TDs might be in flight when an endpoint is stopped. We need to issue a Set TR Dequeue Pointer for each, to ensure everything is reset properly and the caches cleared. Change the logic so that any N>1 TDs found active for different streams are deferred until after the first one is processed, calling xhci_invalidate_cancelled_tds() again from xhci_handle_cmd_set_deq() to queue another command until we are done with all of them. Also change the error/"should never happen" paths to ensure we at least clear any affected TDs, even if we can't issue a command to clear the hardware cache, and complain loudly with an xhci_warn() if this ever happens. This problem case dates back to commit e9df17eb1408 ("USB: xhci: Correct assumptions about number of rings per endpoint.") early on in the XHCI driver's life, when stream support was first added. It was then identified but not fixed nor made into a warning in commit 674f8438c121 ("xhci: split handling halted endpoints into two steps"), which added a FIXME comment for the problem case (without materially changing the behavior as far as I can tell, though the new logic made the problem more obvious). Then later, in commit 94f339147fc3 ("xhci: Fix failure to give back some cached cancelled URBs."), it was acknowledged again. [Mathias: commit 94f339147fc3 ("xhci: Fix failure to give back some cached cancelled URBs.") was a targeted regression fix to the previously mentioned patch. Users reported issues with usb stuck after unmounting/disconnecting UAS devices. This rolled back the TD clearing of multiple streams to its original state.] Apparently the commit author was aware of the problem (yet still chose to submit it): It was still mentioned as a FIXME, an xhci_dbg() was added to log the problem condition, and the remaining issue was mentioned in the commit description. The choice of making the log type xhci_dbg() for what is, at this point, a completely unhandled and known broken condition is puzzling and unfortunate, as it guarantees that no actual users would see the log in production, thereby making it nigh undebuggable (indeed, even if you turn on DEBUG, the message doesn't really hint at there being a problem at all). It took me *months* of random xHC crashes to finally find a reliable repro and be able to do a deep dive debug session, which could all have been avoided had this unhandled, broken condition been actually reported with a warning, as it should have been as a bug intentionally left in unfixed (never mind that it shouldn't have been left in at all). > Another fix to solve clearing the caches of all stream rings with > cancelled TDs is needed, but not as urgent. 3 years after that statement and 14 years after the original bug was introduced, I think it's finally time to fix it. And maybe next time let's not leave bugs unfixed (that are actually worse than the original bug), and let's actually get people to review kernel commits please. Fixes xHC crashes and IOMMU faults with UAS devices when handling errors/faults. Easiest repro is to use `hdparm` to mark an early sector (e.g. 1024) on a disk as bad, then `cat /dev/sdX > /dev/null` in a loop. At least in the case of JMicron controllers, the read errors end up having to cancel two TDs (for two queued requests to different streams) and the one that didn't get cleared properly ends up faulting the xHC entirely when it tries to access DMA pages that have since been unmapped, referred to by the stale TDs. This normally happens quickly (after two or three loops). After this fix, I left the `cat` in a loop running overnight and experienced no xHC failures, with all read errors recovered properly. Repro'd and tested on an Apple M1 Mac Mini (dwc3 host). On systems without an IOMMU, this bug would instead silently corrupt freed memory, making this a ---truncated---

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 disrupt the affected service.

What

In the Linux kernel, the following vulnerability has been resolved: xhci: Handle TD clearing for multiple streams case When multiple streams are in use, multiple TDs might be in flight when an endpoint is stopped. We need to issue a Set TR Dequeue Pointer for each, to ensure everything is reset properly and the caches cleared. Change the logic so that any N>1 TDs found active for different streams are deferred until after the first one is processed, calling xhci_invalidate_cancelled_tds() again from xhci_handle_cmd_set_deq() to queue another command until we are done with all of them. Also change the error/"should never happen" paths to ensure we at least clear any affected TDs, even if we can't issue a command to clear the hardware cache, and complain loudly with an xhci_warn() if this ever happens. This problem case dates back to commit e9df17eb1408 ("USB: xhci: Correct assumptions about number of rings per endpoint.") early on in the XHCI driver's life, when stream support was first added. It was then identified but not fixed nor made into a warning in commit 674f8438c121 ("xhci: split handling halted endpoints into two steps"), which added a FIXME comment for the problem case (without materially changing the behavior as far as I can tell, though the new logic made the problem more obvious). Then later, in commit 94f339147fc3 ("xhci: Fix failure to give back some cached cancelled URBs."), it was acknowledged again. [Mathias: commit 94f339147fc3 ("xhci: Fix failure to give back some cached cancelled URBs.") was a targeted regression fix to the previously mentioned patch. Users reported issues with usb stuck after unmounting/disconnecting UAS devices. This rolled back the TD clearing of multiple streams to its original state.] Apparently the commit author was aware of the problem (yet still chose to submit it): It was still mentioned as a FIXME, an xhci_dbg() was added to log the problem condition, and the remaining issue was mentioned in the commit description. The choice of making the log type xhci_dbg() for what is, at this point, a completely unhandled and known broken condition is puzzling and unfortunate, as it guarantees that no actual users would see the log in production, thereby making it nigh undebuggable (indeed, even if you turn on DEBUG, the message doesn't really hint at there being a problem at all). It took me *months* of random xHC crashes to finally find a reliable repro and be able to do a deep dive debug session, which could all have been avoided had this unhandled, broken condition been actually reported with a warning, as it should have been as a bug intentionally left in unfixed (never mind that it shouldn't have been left in at all). > Another fix to solve clearing the caches of all stream rings with > cancelled TDs is needed, but not as urgent. 3 years after that statement and 14 years after the original bug was introduced, I think it's finally time to fix it. And maybe next time let's not leave bugs unfixed (that are actually worse than the original bug), and let's actually get people to review kernel commits please. Fixes xHC crashes and IOMMU faults with UAS devices when handling errors/faults. Easiest repro is to use `hdparm` to mark an early sector (e.g. 1024) on a disk as bad, then `cat /dev/sdX > /dev/null` in a loop. At least in the case of JMicron controllers, the read errors end up having to cancel two TDs (for two queued requests to different streams) and the one that didn't get cleared properly ends up faulting the xHC entirely when it tries to access DMA pages that have since been unmapped, referred to by the stale TDs. This normally happens quickly (after two or three loops). After this fix, I left the `cat` in a loop running overnight and experienced no xHC failures, with all read errors recovered properly. Repro'd and tested on an Apple M1 Mac Mini (dwc3 host). On systems without an IOMMU, this bug would instead silently corrupt freed memory, making this a ---truncated---

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 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
local access → Use After Free → disrupt the affected service
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.
Denial of serviceCWE-416
A

Official authority intelligence

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

BSI · German · WID-SEC-W-2025-1293IBM DataPower Gateway: Mehrere Schwachstellen

Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in IBM DataPower Gateway ausnutzen, um seine Privilegien zu erhöhen, Informationen auszuspähen, einen Denial-of-Service auszulösen oder weitere unspezifizierte Auswirkungen zu erzielen.

Official advisory
BSI · German · WID-SEC-W-2024-1913Red Hat OpenShift Container Platform: Mehrere Schwachstellen

Ein entfernter anonymer oder lokaler Angreifer kann mehrere Schwachstellen in Red Hat OpenShift Container Platform ausnutzen, um seine Privilegien zu erhöhen, beliebigen Code auszuführen, einen Denial-of-Service-Zustand zu erzeugen, vertrauliche Informationen offenzulegen, Dateien und Daten zu manipulieren oder Sicherheitsmaßnahmen zu umgehen.

Official advisory
BSI · German · WID-SEC-W-2025-0612IBM Security Guardium: Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in IBM Security Guardium ausnutzen, um Sicherheitsbeschränkungen zu umgehen, einen Denial-of-Service-Zustand herbeizuführen, beliebigen Code auszuführen und vertrauliche Informationen preiszugeben.

Official advisory
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-0018Multiples vulnérabilités dans les produits Juniper Networks

d?id=CVE-2024-35797 Référence CVE CVE-2024-35875 https://www.cve.org/CVERecord?id=CVE-2024-35875 Référence CVE CVE-2024-36000 https://www.cve.org/CVERecord?id=CVE-2024-36000 Référence CVE CVE-2024-36019 https://www.cve.org/CVERecord?id=CVE-2024-36019 Référence CVE CVE-2024-36883 https://www.cve.org/CVERecord?id=CVE-2024-36883 Référence CVE CVE-2024-36979 https://www.cve.org/CVERecord?id=CVE-2024-36979 Référence CVE CVE-2024-38559 https://www.cve.org/CVERecord?id=CVE-2024-38559 Référence CVE CVE-2024-38619 https://www.cve.org/CVERecord?id=CVE-2024-38619 Référence CVE CVE-2024-39894 https://www.cve.org/CVERecord?id=CVE-2024-39894 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40936 https://www.cve.org/CVERecord?id=CVE-2024-40936 Référence CVE CVE-2024-41040 https://www.cve.org/CVERecord?id=CVE-2024-41040 Référence CVE CVE-2024-41044 https://www.cve.org/CVERecord?id=CVE-2024-41044 Référence CVE CVE-2024-41055 https://www.cve.org/CVERecord?id=CVE-2024-41055 Référence CVE CVE-2024-41073 https://www.cve.org/CVERecord?id=CVE-2024-41073 Référence CVE CVE-2024-41096 https://www.cve.org/CVERecord?id=CVE-2024-41096 Référence CVE CVE-2024-42082 https://www.cve.org/CVERecord?id=CVE-2024-42082 Référence CVE CVE-2024-42096 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-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=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-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 https://www.cve.org/CVERecord?id=CVE-2024-40935 Référence CVE CVE-2024-40937 https://www.cve.org/CVERecord?id=CVE-2024-40937 Référence CVE CVE-2024-40938 https://www.cve.org/CVERecord?id=CVE-2024-40938 Référence CVE CVE-2024-40939 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2024-AVI-0958Multiples vulnérabilités dans les produits IBM

ecord?id=CVE-2024-39472 Référence CVE CVE-2024-39476 https://www.cve.org/CVERecord?id=CVE-2024-39476 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39495 https://www.cve.org/CVERecord?id=CVE-2024-39495 Référence CVE CVE-2024-39502 https://www.cve.org/CVERecord?id=CVE-2024-39502 Référence CVE CVE-2024-39689 https://www.cve.org/CVERecord?id=CVE-2024-39689 Référence CVE CVE-2024-4032 https://www.cve.org/CVERecord?id=CVE-2024-4032 Référence CVE CVE-2024-4067 https://www.cve.org/CVERecord?id=CVE-2024-4067 Référence CVE CVE-2024-40902 https://www.cve.org/CVERecord?id=CVE-2024-40902 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40974 https://www.cve.org/CVERecord?id=CVE-2024-40974 Référence CVE CVE-2024-41042 https://www.cve.org/CVERecord?id=CVE-2024-41042 Référence CVE CVE-2024-42232 https://www.cve.org/CVERecord?id=CVE-2024-42232 Référence CVE CVE-2024-42236 https://www.cve.org/CVERecord?id=CVE-2024-42236 Référence CVE CVE-2024-42238 https://www.cve.org/CVERecord?id=CVE-2024-42238 Référence CVE CVE-2024-42244 https://www.cve.org/CVERecord?id=CVE-2024-42244 Référence CVE CVE-2024-42247 https://www.cve.org/CVERecord?id=CVE-2024-42247 Référence CVE CVE-2024-42251 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-40918 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=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-40923 https://www.cve.org/CVERecord?id=CVE-2024-40923 Référence CVE CVE-2024-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40925 https://www.cve.org/CVERecord?id=CVE-2024-40925 Référence CVE CVE-2024-40926 https://www.cve.org/CVERecord?id=CVE-2024-40926 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40928 https://www.cve.org/CVERecord?id=CVE-2024-40928 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40930 https://www.cve.org/CVERecord?id=CVE-2024-40930 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40933 https://www.cve.org/CVERecord?id=CVE-2024-40933 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 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-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=CVE-2024-40924 Référence CVE CVE-2024-40926 https://www.cve.org/CVERecord?id=CVE-2024-40926 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40930 https://www.cve.org/CVERecord?id=CVE-2024-40930 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40936 https://www.cve.org/CVERecord?id=CVE-2024-40936 Référence CVE CVE-2024-40938 https://www.cve.org/CVERecord?id=CVE-2024-40938 Référence CVE CVE-2024-40939 https://www.cve.org/CVERecord?id=CVE-2024-40939 Référence CVE CVE-2024-40941 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-40918 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=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-40923 https://www.cve.org/CVERecord?id=CVE-2024-40923 Référence CVE CVE-2024-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40925 https://www.cve.org/CVERecord?id=CVE-2024-40925 Référence CVE CVE-2024-40926 https://www.cve.org/CVERecord?id=CVE-2024-40926 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40928 https://www.cve.org/CVERecord?id=CVE-2024-40928 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40930 https://www.cve.org/CVERecord?id=CVE-2024-40930 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40933 https://www.cve.org/CVERecord?id=CVE-2024-40933 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 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-40918 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=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-40923 https://www.cve.org/CVERecord?id=CVE-2024-40923 Référence CVE CVE-2024-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40925 https://www.cve.org/CVERecord?id=CVE-2024-40925 Référence CVE CVE-2024-40926 https://www.cve.org/CVERecord?id=CVE-2024-40926 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40928 https://www.cve.org/CVERecord?id=CVE-2024-40928 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40930 https://www.cve.org/CVERecord?id=CVE-2024-40930 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40933 https://www.cve.org/CVERecord?id=CVE-2024-40933 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 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-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=CVE-2024-40924 Référence CVE CVE-2024-40926 https://www.cve.org/CVERecord?id=CVE-2024-40926 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40930 https://www.cve.org/CVERecord?id=CVE-2024-40930 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40936 https://www.cve.org/CVERecord?id=CVE-2024-40936 Référence CVE CVE-2024-40938 https://www.cve.org/CVERecord?id=CVE-2024-40938 Référence CVE CVE-2024-40939 https://www.cve.org/CVERecord?id=CVE-2024-40939 Référence CVE CVE-2024-40941 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-35791 Référence CVE CVE-2024-35797 https://www.cve.org/CVERecord?id=CVE-2024-35797 Référence CVE CVE-2024-35875 https://www.cve.org/CVERecord?id=CVE-2024-35875 Référence CVE CVE-2024-36000 https://www.cve.org/CVERecord?id=CVE-2024-36000 Référence CVE CVE-2024-36019 https://www.cve.org/CVERecord?id=CVE-2024-36019 Référence CVE CVE-2024-36883 https://www.cve.org/CVERecord?id=CVE-2024-36883 Référence CVE CVE-2024-36979 https://www.cve.org/CVERecord?id=CVE-2024-36979 Référence CVE CVE-2024-38559 https://www.cve.org/CVERecord?id=CVE-2024-38559 Référence CVE CVE-2024-38619 https://www.cve.org/CVERecord?id=CVE-2024-38619 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40936 https://www.cve.org/CVERecord?id=CVE-2024-40936 Référence CVE CVE-2024-41040 https://www.cve.org/CVERecord?id=CVE-2024-41040 Référence CVE CVE-2024-41044 https://www.cve.org/CVERecord?id=CVE-2024-41044 Référence CVE CVE-2024-41055 https://www.cve.org/CVERecord?id=CVE-2024-41055 Référence CVE CVE-2024-41073 https://www.cve.org/CVERecord?id=CVE-2024-41073 Référence CVE CVE-2024-41096 https://www.cve.org/CVERecord?id=CVE-2024-41096 Référence CVE CVE-2024-42082 https://www.cve.org/CVERecord?id=CVE-2024-42082 Référence CVE CVE-2024-42096 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-40908 Référence CVE CVE-2024-40909 https://www.cve.org/CVERecord?id=CVE-2024-40909 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-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-40923 https://www.cve.org/CVERecord?id=CVE-2024-40923 Référence CVE CVE-2024-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40925 https://www.cve.org/CVERecord?id=CVE-2024-40925 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40928 https://www.cve.org/CVERecord?id=CVE-2024-40928 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 https://www.cve.org/CVERecord?id=CVE-2024-40935 Référence CVE CVE-2024-40937 https://www.cve.org/CVERecord?id=CVE-2024-40937 Référence CVE CVE-2024-40940 https://www.cve.org/CVERecord?id=

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

d?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-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-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-40923 https://www.cve.org/CVERecord?id=CVE-2024-40923 Référence CVE CVE-2024-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40925 https://www.cve.org/CVERecord?id=CVE-2024-40925 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40928 https://www.cve.org/CVERecord?id=CVE-2024-40928 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 https://www.cve.org/CVERecord?id=CVE-2024-40935 Référence CVE CVE-2024-40937 https://www.cve.org/CVERecord?id=CVE-2024-40937 Référence CVE CVE-2024-40940 https://www.cve.org/CVERecord?id=

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

d?id=CVE-2024-38598 Référence CVE CVE-2024-38615 https://www.cve.org/CVERecord?id=CVE-2024-38615 Référence CVE CVE-2024-38627 https://www.cve.org/CVERecord?id=CVE-2024-38627 Référence CVE CVE-2024-38663 https://www.cve.org/CVERecord?id=CVE-2024-38663 Référence CVE CVE-2024-39276 https://www.cve.org/CVERecord?id=CVE-2024-39276 Référence CVE CVE-2024-39472 https://www.cve.org/CVERecord?id=CVE-2024-39472 Référence CVE CVE-2024-39476 https://www.cve.org/CVERecord?id=CVE-2024-39476 Référence CVE CVE-2024-39487 https://www.cve.org/CVERecord?id=CVE-2024-39487 Référence CVE CVE-2024-39502 https://www.cve.org/CVERecord?id=CVE-2024-39502 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40974 https://www.cve.org/CVERecord?id=CVE-2024-40974 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 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-0613Multiples vulnérabilités dans le noyau Linux de Debian

d?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=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-40924 https://www.cve.org/CVERecord?id=CVE-2024-40924 Référence CVE CVE-2024-40927 https://www.cve.org/CVERecord?id=CVE-2024-40927 Référence CVE CVE-2024-40929 https://www.cve.org/CVERecord?id=CVE-2024-40929 Référence CVE CVE-2024-40931 https://www.cve.org/CVERecord?id=CVE-2024-40931 Référence CVE CVE-2024-40932 https://www.cve.org/CVERecord?id=CVE-2024-40932 Référence CVE CVE-2024-40934 https://www.cve.org/CVERecord?id=CVE-2024-40934 Référence CVE CVE-2024-40935 https://www.cve.org/CVERecord?id=CVE-2024-40935 Référence CVE CVE-2024-40937 https://www.cve.org/CVERecord?id=CVE-2024-40937 Référence CVE CVE-2024-40938 https://www.cve.org/CVERecord?id=CVE-2024-40938 Référence CVE CVE-2024-40939 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
e9df17eb1408cfafa3d1844bfc7f22c7237b31b8 < 26460c1afa311524f588e288a4941432f0de6228; e9df17eb1408cfafa3d1844bfc7f22c7237b31b8 < 633f72cb6124ecda97b641fbc119340bd88d51a9; e9df17eb1408cfafa3d1844bfc7f22c7237b31b8 < 949be4ec5835e0ccb3e2a8ab0e46179cb5512518; e9df17eb1408cfafa3d1844bfc7f22c7237b31b8 < 61593dc413c3655e4328a351555235bc3089486a; e9df17eb1408cfafa3d1844bfc7f22c7237b31b8 < 5ceac4402f5d975e5a01c806438eb4e554771577; 2.6.35
Fixed
< 2.6.35; 5.15.162 ≤ 5.15.*; 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 11 May 2026, 20:22 UTC · CWE-416 · Use After Free

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