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

7.8 · HIGH
Published Oct 1, 2025 linux CWE-787 EPSS 0.14% (4th pctl)

Overview

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

bpf: Fix out-of-bounds dynptr write in bpf_crypto_crypt

Stanislav reported that in bpf_crypto_crypt() the destination dynptr's

size is not validated to be at least as large as the source dynptr's

size before calling into the crypto backend with 'len = src_len'. This

can result in an OOB write when the destination is smaller than the

source.

Concretely, in mentioned function, psrc and pdst are both linear

buffers fetched from each dynptr:

psrc = __bpf_dynptr_data(src, src_len);

[...]

pdst = __bpf_dynptr_data_rw(dst, dst_len);

[...]

err = decrypt ?

ctx->type->decrypt(ctx->tfm, psrc, pdst, src_len, piv) :

ctx->type->encrypt(ctx->tfm, psrc, pdst, src_len, piv);

The crypto backend expects pdst to be large enough with a src_len length

that can be written. Add an additional src_len > dst_len check and bail

out if it's the case. Note that these kfuncs are accessible under root

privileges only.

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.10, < 6.12.48 Affected

Frequently Asked Questions

What is CVE-2025-39917?

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

How severe is CVE-2025-39917?

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

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

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