Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2022-49977

7.8 · HIGH
Published Jun 18, 2025 linux CWE-476 EPSS 0.23% (13th pctl)

Overview

CVE-2022-49977 is a high-severity vulnerability affecting linux linux_kernel. It was published on June 18, 2025 and has a CVSS 3.1 base score of 7.8 (HIGH).

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

Technical Description

In the Linux kernel, the following vulnerability has been resolved:

ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is dead

ftrace_startup does not remove ops from ftrace_ops_list when

ftrace_startup_enable fails:

register_ftrace_function

ftrace_startup

__register_ftrace_function

...

add_ftrace_ops(&ftrace_ops_list, ops)

...

...

ftrace_startup_enable // if ftrace failed to modify, ftrace_disabled is set to 1

...

return 0 // ops is in the ftrace_ops_list.

When ftrace_disabled = 1, unregister_ftrace_function simply returns without doing anything:

unregister_ftrace_function

ftrace_shutdown

if (unlikely(ftrace_disabled))

return -ENODEV; // return here, __unregister_ftrace_function is not executed,

// as a result, ops is still in the ftrace_ops_list

__unregister_ftrace_function

...

If ops is dynamically allocated, it will be free later, in this case,

is_ftrace_trampoli

Remediation

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Affected Products

Vendor Product Versions Status
linux linux_kernel >= 0, < 4.9.327 Affected

Frequently Asked Questions

What is CVE-2022-49977?

CVE-2022-49977 is a high-severity vulnerability affecting linux linux_kernel. It was published on June 18, 2025 and has a CVSS 3.1 base score of 7.8 (HIGH).

How severe is CVE-2022-49977?

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

How do I fix or remediate CVE-2022-49977?

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2022-49977?

CyberStrike's AI-powered security agents can automatically detect CVE-2022-49977 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.