CVE-2024-36481

CVSS 3.1 Score 5.5 of 10 (medium)

Details

Published Jun 21, 2024
Updated: Jun 24, 2024
CWE ID 754

Summary

CVE-2024-36481 is a vulnerability affecting the Linux kernel. The issue lies in the tracing/probes subsystem, specifically in the parse_btf_field() function. This function calls btf_find_struct_member() to locate a struct member, but does not adequately handle errors. If btf_find_struct_member() returns an error using the ERR_PTR() macro, parse_btf_field() will only check for a NULL pointer and continue execution. This flaw can lead to unintended behavior or crashes. To mitigate this vulnerability, the error condition must be properly identified using IS_ERR() and propagated up the call stack.

Ligh bulbPrevent cyber attacks with Recorded Future by prioritizing and patching critical vulnerabilities being exploited by threat actors targeting your industry. Book your demo to learn more.

Share