Cyber Resilience

CVE-2024-26752

Linux Kernel 4.19.296 – 4.19.308

Published
03 April 2024
Modified
17 June 2026
Patch / advisory
CVSS Score v3.1 5.5
Click a component to see what it means
Raw vectorCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
EPSS Score 0.0025 17th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2024-26752 is a medium-severity Incorrect Calculation of Buffer Size (CWE-131) vulnerability in Linux Linux Kernel. Its CVSS base score is 5.5 (Medium).

Operationally, ranked at the 17th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

EU & UK References

Vulnerability Data

In the Linux kernel, the following vulnerability has been resolved: l2tp: pass correct message length to ip6_append_data l2tp_ip6_sendmsg needs to avoid accounting for the transport header twice when splicing more data into an already partially-occupied skbuff. To manage this, we…

more

check whether the skbuff contains data using skb_queue_empty when deciding how much data to append using ip6_append_data. However, the code which performed the calculation was incorrect: ulen = len + skb_queue_empty(&sk->sk_write_queue) ? transhdrlen : 0; ...due to C operator precedence, this ends up setting ulen to transhdrlen for messages with a non-zero length, which results in corrupted packets on the wire. Add parentheses to correct the calculation in line with the original intent.

CWE(s)

Related Threats

CVEs Like This One

CVE-2023-45871Same product: Debian Debian Linux
CVE-2023-52691Same product: Debian Debian Linux
CVE-2024-26925Same product: Debian Debian Linux
CVE-2024-26906Same product: Debian Debian Linux
CVE-2024-26689Same product: Debian Debian Linux
CVE-2024-26744Same product: Debian Debian Linux
CVE-2024-36934Same product: Debian Debian Linux
CVE-2023-52619Same product: Debian Debian Linux
CVE-2024-35867Same product: Debian Debian Linux
CVE-2024-26778Same product: Debian Debian Linux

Affected Assets

linux
linux kernel
4.14.327, 6.5.7, 6.8 · 4.19.296 — 4.19.308 · 5.4.258 — 5.4.270 · 5.10.198 — 5.10.211
debian
debian linux
10.0

Mitigating Controls

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly prevent buffer-size miscalculations via coding standards, reviews, and testing, while fixing this single weakness only partially fulfills the broader control.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

degrades

Secure coding standards directly require correct buffer-size calculations.

detects

Security testing can detect buffer-size errors before release.

prevents

Secure development lifecycle mandates size-checking practices that reduce buffer-size miscalculations.

prevents

Application security requirements can specify buffer-size validation rules.

prevents

Secure architecture principles include safe memory-allocation guidelines.

References