CVE-2026-74483
Last modified
CVE-2026-74483 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: binfmt_misc: don't leak the user namespace when the mount fails bm_get_tree() takes a reference to the user namespace and hands it to get_tree_keyed() as the sget key. sget_fc() moves that reference into sb->s_fs_info and clears fc->s_fs_info, so from that point on the superblock owns it and bm_free() doesn't see it anymore. The superblock drops it in ->put_super(). EPSS estimates a 0.15% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: binfmt_misc: don't leak the user namespace when the mount fails bm_get_tree() takes a reference to the user namespace and hands it to get_tree_keyed() as the sget key. sget_fc() moves that reference into sb->s_fs_info and clears fc->s_fs_info, so from that point on the superblock owns it and bm_free() doesn't see it anymore. The superblock drops it in ->put_super(). But generic_shutdown_super() only calls ->put_super() from inside the if (sb->s_root) branch, so nothing releases it when bm_fill_super() fails: - The kzalloc_obj() failure leaves s_root NULL and the whole branch is skipped. - A simple_fill_super() failure in the file loop leaves s_root set, but s_op still points at simple_super_operations, which has no ->put_super(). bm_fill_super() installs s_ops only once simple_fill_super() returned success, and installing it earlier wouldn't help either because simple_fill_super() overwrites s_op. Either way vfs_get_super() calls deactivate_locked_super() and the reference is gone for good. binfmt_misc mounts are available in a user namespace and both the inode and the dentry cache are SLAB_ACCOUNT, so an unprivileged caller under a tight memory cgroup can fail simple_fill_super() on demand and leak one user namespace per attempt. Drop the reference in ->kill_sb() instead, which runs unconditionally, the same way nfsd and rpc_pipefs release their keyed s_fs_info. That also stops ->put_super() from clearing s_fs_info while the superblock is still on @fs_supers. generic_shutdown_super() leaves it there on purpose so that sget_fc() keeps finding it until kill_sb() has run, but a NULL s_fs_info makes test_keyed_super() miss it, so a concurrent mount for the same user namespace skips the grab_super() wait and creates a second superblock for a namespace that is still being torn down.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < ffec017158d3aad8a6ffca1dfad63d63bde9caad; >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < 867aed6a4848761190d5ebdedf9642648f97bceb; >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < 87a4eb9bbb3497f749bbac612af22ddaa62d7b0d; >= 21ca59b365c091d583f36ac753eaa8baf947be6f, < b8206f516fe7cbe785cf44bf09c17c438d7c3cad |
| Linux | Linux | 6.7 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74483?
How severe is CVE-2026-74483?
How do I fix CVE-2026-74483?
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-74478In the Linux kernel, the following vulnerability has been re…9.8
- 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-74484In 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
Are you affected by CVE-2026-74483?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
