CVE Catalog

CVE-2026-68151

Low risk· EPSS 7%
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.18%

7th percentile - higher than 7% of all known CVEs

Summary

In the Linux kernel's binfmt_elf_fdpic module, there is a vulnerability where only the first PT_INTERP entry is supposed to be handled, but due to a loop logic error, binaries with multiple PT_INTERP entries overwrite interpreter_name and interpreter pointers, causing memory leaks and keeping a write denial on the file. An unprivileged user can exploit this to permanently block file writes.

Risk Assessment

The risk is the ability to permanently prevent writing to files on the system, which could disrupt services or intentionally damage the system by an unprivileged user.

Recommendation

It is recommended to apply the Linux kernel patch that limits handling to only the first PT_INTERP entry as soon as possible, and to monitor systems for unusual behavior.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: binfmt_elf_fdpic: only honour the first PT_INTERP The program header scan handles PT_INTERP from a switch nested in the scan loop, so its break leaves the switch and not the loop. A binary carrying more than one PT_INTERP runs the case again and overwrites both interpreter_name and interpreter. The previous name allocation leaks and so does the previous interpreter reference, along with the write denial open_exec() took on it. The denial is never released, so the file stays unwritable for as long as the system runs. An unprivileged caller reaches this with a crafted binary and repeats it at will. binfmt_elf stops at the first PT_INTERP. Do the same here. The flaw dates back to the driver's introduction in the pre-git history tree introduced in v2.6.11 by 91808d6ebe39 ("[PATCH] FRV: Add FDPIC ELF binary format driver").

Vulnerability data from NVD (NIST) · CISA KEV · EPSS