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

5.5 · MEDIUM
Published Jul 4, 2025 linux CWE-190 EPSS 0.15% (5th pctl)

Overview

CVE-2025-38222 is a medium-severity vulnerability affecting linux linux_kernel. It was published on July 4, 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:

ext4: inline: fix len overflow in ext4_prepare_inline_data

When running the following code on an ext4 filesystem with inline_data

feature enabled, it will lead to the bug below.

fd = open("file1", O_RDWR | O_CREAT | O_TRUNC, 0666);

ftruncate(fd, 30);

pwrite(fd, "a", 1, (1UL << 40) + 5UL);

That happens because write_begin will succeed as when

ext4_generic_write_inline_data calls ext4_prepare_inline_data, pos + len

will be truncated, leading to ext4_prepare_inline_data parameter to be 6

instead of 0x10000000006.

Then, later when write_end is called, we hit:

BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);

at ext4_write_inline_data.

Fix it by using a loff_t type for the len parameter in

ext4_prepare_inline_data instead of an unsigned int.

[ 44.545164] ------------[ cut here ]------------

[ 44.545530] kernel BUG at fs/ext4/inline.c:240!

[ 44.545834] Oops: invalid opcode: 0000

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 >= 3.8, < 5.4.295 Affected

Frequently Asked Questions

What is CVE-2025-38222?

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

How severe is CVE-2025-38222?

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

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

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