CVE-2024-49861

HIGH

Linux Kernel 5.2-6.6.53, 6.1.0-6.1.119, 6.2.0-6.6.53, 6.7.0-6.10.12, 6.11.0-6.11.1 - Arbitrary Memory Write via BPF

Title source: llm
STIX 2.1

Exploitation Summary

EIP tracks 1 public exploit for CVE-2024-49861. PoCs published by fabrizioperna.

AI-analyzed exploit summary This repository contains a detailed technical analysis and proof-of-concept code for CVE-2018-18445, a vulnerability in the eBPF verifier. The writeup includes an in-depth breakdown of BPF instruction macros, environment setup, and PoC execution steps.

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix helper writes to read-only maps Lonial found an issue that despite user- and BPF-side frozen BPF map (like in case of .rodata), it was still possible to write into it from a BPF program side through specific helpers having ARG_PTR_TO_{LONG,INT} as arguments. In check_func_arg() when the argument is as mentioned, the meta->raw_mode is never set. Later, check_helper_mem_access(), under the case of PTR_TO_MAP_VALUE as register base type, it assumes BPF_READ for the subsequent call to check_map_access_type() and given the BPF map is read-only it succeeds. The helpers really need to be annotated as ARG_PTR_TO_{LONG,INT} | MEM_UNINIT when results are written into them as opposed to read out of them. The latter indicates that it's okay to pass a pointer to uninitialized memory as the memory is written to anyway. However, ARG_PTR_TO_{LONG,INT} is a special case of ARG_PTR_TO_FIXED_SIZE_MEM just with additional alignment requirement. So it is better to just get rid of the ARG_PTR_TO_{LONG,INT} special cases altogether and reuse the fixed size memory types. For this, add MEM_ALIGNED to additionally ensure alignment given these helpers write directly into the args via *<ptr> = val. The .arg*_size has been initialized reflecting the actual sizeof(*<ptr>). MEM_ALIGNED can only be used in combination with MEM_FIXED_SIZE annotated argument types, since in !MEM_FIXED_SIZE cases the verifier does not know the buffer size a priori and therefore cannot blindly write *<ptr> = val.

Exploits (1)

github WRITEUP
by fabrizioperna · cpoc
https://github.com/fabrizioperna/ebpf-verifier-cve-pocs/tree/main/CVE-2024-49861

This repository contains a detailed technical analysis and proof-of-concept code for CVE-2018-18445, a vulnerability in the eBPF verifier. The writeup includes an in-depth breakdown of BPF instruction macros, environment setup, and PoC execution steps.

Classification
Writeup 95%
Attack Type
Lpe
Complexity
Moderate
Reliability
Reliable
Target: Linux Kernel eBPF verifier (Ubuntu 18.04.1)
No auth needed
Prerequisites: Ubuntu 18.04.1 environment · gcc compiler
devstral-2 · analyzed Feb 27, 2026 Full analysis →

Scores

CVSS v3 7.1
EPSS 0.0002
EPSS Percentile 5.2%
Attack Vector LOCAL
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H

CISA SSVC

Vulnrichment
Exploitation none
Automatable no
Technical Impact partial

Details

Status published
Products (17)
linux/Kernel 5.2.0 - 6.1.120linux
linux/Kernel 6.11.0 - 6.11.2linux
linux/Kernel 6.2.0 - 6.6.54linux
linux/Kernel 6.7.0 - 6.10.13linux
Linux/Linux < 5.2
Linux/Linux 5.2
Linux/Linux 57c3bb725a3dd97d960d7e1cd0845d88de53217f - 1e75d25133158b525e0456876e9bcfd6b2993fd5
Linux/Linux 57c3bb725a3dd97d960d7e1cd0845d88de53217f - 2ed98ee02d1e08afee88f54baec39ea78dc8a23c
Linux/Linux 57c3bb725a3dd97d960d7e1cd0845d88de53217f - 32556ce93bc45c730829083cb60f95a2728ea48b
Linux/Linux 57c3bb725a3dd97d960d7e1cd0845d88de53217f - 988e55abcf7fdb8fc9a76a7cf3f4e939a4d4fb3a
... and 7 more
Published Oct 21, 2024
Tracked Since Feb 18, 2026