CVE-2024-45020
Last modified
CVE-2024-45020 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: bpf: Fix a kernel verifier crash in stacksafe() Daniel Hodges reported a kernel verifier crash when playing with sched-ext. Further investigation shows that the crash is due to invalid memory access in stacksafe(). More specifically, it is the following code: if (exact != NOT_EXACT && old->stack[spi].slot_type[i % BPF_REG_SIZE] != cur->stack[spi].slot_type[i % BPF_REG_SIZE]) return false; The 'i' iterates old->allocated_stack. If cur->allocated_stack < old->allocated_stack the out-of-bound access will happen. To fix the issue add 'i >= cur->allocated_stack' check such that if the condition is true, stacksafe() should fail. EPSS estimates a 0.22% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: bpf: Fix a kernel verifier crash in stacksafe() Daniel Hodges reported a kernel verifier crash when playing with sched-ext. Further investigation shows that the crash is due to invalid memory access in stacksafe(). More specifically, it is the following code: if (exact != NOT_EXACT && old->stack[spi].slot_type[i % BPF_REG_SIZE] != cur->stack[spi].slot_type[i % BPF_REG_SIZE]) return false; The 'i' iterates old->allocated_stack. If cur->allocated_stack < old->allocated_stack the out-of-bound access will happen. To fix the issue add 'i >= cur->allocated_stack' check such that if the condition is true, stacksafe() should fail. Otherwise, cur->stack[spi].slot_type[i % BPF_REG_SIZE] memory access is legal.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Linux | Linux Kernel | >= 6.6.15, < 6.6.48 | — |
| Linux | Linux Kernel | >= 6.7, < 6.10.7 | — |
| Linux | Linux Kernel | 6.11 | Rc1 |
References
Timeline
- Published
- Last Modified
- Status
- Modified
Frequently Asked Questions
What is CVE-2024-45020?
How severe is CVE-2024-45020?
How do I fix CVE-2024-45020?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2024
- CVE-2024-45015In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45016In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45017In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45018In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45019In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-4502A vulnerability classified as critical has been found in Rui…7.2
- CVE-2024-45021In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45022In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45023In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2024-45024In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45025In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-45026In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2024-45020?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
