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-2023-53860

7.8 · HIGH
Published Dec 9, 2025 EPSS 0.18% (8th pctl)

Overview

CVE-2023-53860 is a high-severity vulnerability. It was published on December 9, 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:

dm: don't attempt to queue IO under RCU protection

dm looks up the table for IO based on the request type, with an

assumption that if the request is marked REQ_NOWAIT, it's fine to

attempt to submit that IO while under RCU read lock protection. This

is not OK, as REQ_NOWAIT just means that we should not be sleeping

waiting on other IO, it does not mean that we can't potentially

schedule.

A simple test case demonstrates this quite nicely:

int main(int argc, char *argv[])

{

struct iovec iov;

int fd;

fd = open("/dev/dm-0", O_RDONLY | O_DIRECT);

posix_memalign(&iov.iov_base, 4096, 4096);

iov.iov_len = 4096;

preadv2(fd, &iov, 1, 0, RWF_NOWAIT);

return 0;

}

which will instantly spew:

BUG: sleeping function called from invalid context at include/linux/sched/mm.h:306

in_atomic(): 0, irqs_disabled(): 0, non_block: 0, pid: 5580, name: dm-nowait

preempt_count: 0, expe

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. 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.

Frequently Asked Questions

What is CVE-2023-53860?

CVE-2023-53860 is a high-severity vulnerability. It was published on December 9, 2025 and has a CVSS 3.1 base score of 7.8 (HIGH).

How severe is CVE-2023-53860?

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-2023-53860?

Check the references section for vendor advisories, patches, and mitigation guidance. 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-2023-53860?

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