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-2025-21731

7.8 · HIGH
Published Feb 27, 2025 linux CWE-416 EPSS 0.22% (13th pctl)

Overview

CVE-2025-21731 is a high-severity vulnerability affecting linux linux_kernel. It was published on February 27, 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:

nbd: don't allow reconnect after disconnect

Following process can cause nbd_config UAF:

1) grab nbd_config temporarily;

2) nbd_genl_disconnect() flush all recv_work() and release the

initial reference:

nbd_genl_disconnect

nbd_disconnect_and_put

nbd_disconnect

flush_workqueue(nbd->recv_workq)

if (test_and_clear_bit(NBD_RT_HAS_CONFIG_REF, ...))

nbd_config_put

-> due to step 1), reference is still not zero

3) nbd_genl_reconfigure() queue recv_work() again;

nbd_genl_reconfigure

config = nbd_get_config_unlocked(nbd)

if (!config)

-> succeed

if (!test_bit(NBD_RT_BOUND, ...))

-> succeed

nbd_reconnect_socket

queue_work(nbd->recv_workq, &args->work)

4) step 1) release the reference;

5) Finially, recv_work() will trigger UAF:

recv_work

nbd_config_put(nbd)

-> nbd_config is freed

atomic_dec(&config->recv_threads)

-> UAF

Fix the problem by clearing NBD_RT_B

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 >= 4.12, < 5.4.291 Affected

Frequently Asked Questions

What is CVE-2025-21731?

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

How severe is CVE-2025-21731?

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-2025-21731?

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-2025-21731?

CyberStrike's AI-powered security agents can automatically detect CVE-2025-21731 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.