CVE-2026-74484
Last modified
CVE-2026-74484 is a vulnerability of currently unknown severity. 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. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
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.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < 1cc2decee06acc939337304e9b3f737fd5d8c4bd; >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < 4dad8ca637d44d5a6d5c23fa80c9e2e455198c2b; >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < 098e92fe0f1bde5af99c8cf504f13f01ef139f85; >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < 79055d82772b9584f259b747fe40ff56a076678d |
| Linux | Linux | 6.7 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74484?
How severe is CVE-2026-74484?
How do I fix CVE-2026-74484?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-74479In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-7448Rejected reason: ** REJECT ** DO NOT USE THIS CANDIDATE NUMB…
- CVE-2026-74480In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-74481In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74482In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74483In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74485In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-74486In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74487In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74488In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74489In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74490In the Linux kernel, the following vulnerability has been re…8.8
Are you affected by CVE-2026-74484?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
