CVE-2026-74484
Received Received - Intake

Memory Leak in Linux Kernel binfmt_misc

Vulnerability report for CVE-2026-74484, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-15

Last updated on: 2026-08-15

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: binfmt_misc: don't let an 'F' entry pin its own instance An entry registered with 'F' opens its interpreter at registration time and holds that file until the entry is freed. Any entry nobody removes by hand only gets closed once the binfmt_misc superblock is shut down. If the interpreter lives on a mount that keeps that superblock alive the two pin each other: binfmt_misc sb -> inode -> entry -> interp_file -> vfsmount -> binfmt_misc sb TL;DR the file is never closed. Once the mount namespace is gone there is nothing left to unregister through either. There are two ways to trigger this bug: - Point the interpreter at the instance itself. Its files are regular files owned by the mounter and both bm_get_inode() and simple_fill_super() leave i_op at empty_iops. So notify_change() falls back to simple_setattr() and chmod +x works. We never set SB_I_NOEXEC and so open_exec() accepts it. - Use the instance as an overlayfs lower layer. The overlay superblock holds a clone_private_mount() of every layer until it is destroyed and that clone is in no namespace. So umount_tree() never reaches it. That's a DoS. And it isn't only the superblock that leaks. It pins the user namespace it was mounted in, so every iteration permanently eats one of the caller's user namespace charges. So let's just do the sane thing. SB_I_NOEXEC makes open_exec() fail on the instance's own files and s_stack_depth makes overlayfs reject the layer before it ever takes a clone. That also covers the ecryptfs and fuse passthrough variants. What 'F' promises is unchanged. The stable tag is narrower than the Fixes tags on purpose. Before sandboxed mounts this needed global root against the single instance everyone shares, and the change doesn't apply to those trees anyway. Note that SB_I_NODEV is implicitly raised for userns mounts but raise it explicitly here as well.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-15
Last Modified
2026-08-15
Generated
2026-08-15
AI Q&A
2026-08-15
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel allows a specially crafted entry in binfmt_misc to pin its own instance, preventing the interpreter file from being closed. This creates a denial-of-service condition by leaking the superblock and user namespace, consuming system resources indefinitely.

Detection Guidance

This vulnerability is specific to the Linux kernel's binfmt_misc functionality and does not have direct network detection methods. Check if binfmt_misc is mounted with commands like 'mount | grep binfmt_misc' or 'cat /proc/filesystems | grep binfmt_misc'. Inspect kernel logs for related errors or warnings.

Impact Analysis

The vulnerability can cause a denial-of-service by exhausting system resources. It also permanently consumes user namespace charges, potentially leading to resource starvation and system instability.

Mitigation Strategies

Update the Linux kernel to a patched version that includes the fix for this vulnerability. Avoid using 'F' entries in binfmt_misc or ensure they do not point to their own instance. Monitor kernel logs for related issues.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-74484. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart