CVE-2024-26723
HighIn the Linux kernel, the following vulnerability has been resolved: lan966x: Fix crash when adding interface under a lag There is a crash when adding one of the lan966x interfaces under a lag interface. The issue can be reproduced like this: ip link add name bond0 type bond miimon 100 mode balance-xor ip link set dev eth0 master bond0 The reason is because when adding a interface under the lag it would go through all the ports and try to figure out which other ports are under that lag interface. And the issue is that lan966x can have ports that are NULL pointer as they are not probed. So then iterating over these ports it would just crash as they are NULL pointers. The fix consists in actually checking for NULL pointers before accessing something from the ports. Like we do in other places.
CVSS 3.1 score
7.8
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Weakness type
CWE-400CVE-2024-26723 is a Uncontrolled Resource Consumption vulnerability
What is Uncontrolled Resource Consumption?
The product does not properly control the amount of resources it consumes, leading to exhaustion. Learn more on MITRE CWE
References
The following references provide additional information about CVE-2024-26723 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
PatchKernel patch commithttps://git.kernel.org/stable/c/15faa1f67ab405d47789d4702f587ec7df7ef03e
-
PatchKernel patch commithttps://git.kernel.org/stable/c/2a492f01228b7d091dfe38974ef40dccf8f9f2f1
-
PatchKernel patch commithttps://git.kernel.org/stable/c/48fae67d837488c87379f0c9f27df7391718477c
Frequently asked questions
-
What is CVE-2024-26723?
CVE-2024-26723 is a High severity Linux kernel vulnerability with a CVSS score of 7.8 out of 10 , classified as an Uncontrolled Resource Consumption flaw (CWE-400) . CVE-2024-26723 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2024-26723?
CVE-2024-26723 has a CVSS score of 7.8 out of 10, rated High severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H. -
Is there a patch available for CVE-2024-26723?
No patch is currently available for CVE-2024-26723. Monitor the NIST NVD and your Linux distribution's security advisories for updates.
-
Is CVE-2024-26723 actively exploited?
No — CVE-2024-26723 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.
-
What is Uncontrolled Resource Consumption (CWE-400)?
The product does not properly control the amount of resources it consumes, leading to exhaustion. View CWE-400 on MITRE CWE →