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-38017

5.5 · MEDIUM
Published Jun 18, 2025 linux EPSS 0.14% (4th pctl)

Overview

CVE-2025-38017 is a medium-severity vulnerability affecting linux linux_kernel. It was published on June 18, 2025 and has a CVSS 3.1 base score of 5.5 (MEDIUM).

This vulnerability has a CVSS 3.1 base score of 5.5, rated MEDIUM. 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:

fs/eventpoll: fix endless busy loop after timeout has expired

After commit 0a65bc27bd64 ("eventpoll: Set epoll timeout if it's in

the future"), the following program would immediately enter a busy

loop in the kernel:

```

int main() {

int e = epoll_create1(0);

struct epoll_event event = {.events = EPOLLIN};

epoll_ctl(e, EPOLL_CTL_ADD, 0, &event);

const struct timespec timeout = {.tv_nsec = 1};

epoll_pwait2(e, &event, 1, &timeout, 0);

}

```

This happens because the given (non-zero) timeout of 1 nanosecond

usually expires before ep_poll() is entered and then

ep_schedule_timeout() returns false, but `timed_out` is never set

because the code line that sets it is skipped. This quickly turns

into a soft lockup, RCU stalls and deadlocks, inflicting severe

headaches to the whole system.

When the timeout has expired, we don't need to schedule a hrtimer, but

we should set the `timed_out` variable. Therefore, I su

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 >= 6.14.4, < 6.14.8 Affected

Frequently Asked Questions

What is CVE-2025-38017?

CVE-2025-38017 is a medium-severity vulnerability affecting linux linux_kernel. It was published on June 18, 2025 and has a CVSS 3.1 base score of 5.5 (MEDIUM).

How severe is CVE-2025-38017?

This vulnerability has a CVSS 3.1 base score of 5.5, rated MEDIUM. 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-38017?

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-38017?

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