CVE-2026-93137
Last modified
CVE-2026-93137 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: bpf: Fix use-after-free on mm_struct in bpf_find_vma() bpf_find_vma() reads task->mm and calls mmap_read_trylock(mm) without holding a reference on the mm. On a foreign task, a concurrent exit_mm() can free the mm_struct between the lockless read and the trylock, resulting in a use-after-free.
Description
In the Linux kernel, the following vulnerability has been resolved: bpf: Fix use-after-free on mm_struct in bpf_find_vma() bpf_find_vma() reads task->mm and calls mmap_read_trylock(mm) without holding a reference on the mm. On a foreign task, a concurrent exit_mm() can free the mm_struct between the lockless read and the trylock, resulting in a use-after-free. mm_struct is not SLAB_TYPESAFE_BY_RCU. For the current task, task->mm is stable. For a foreign task, pin the mm under task->alloc_lock and release it with mmput_async(), mirroring commit d8e27d2d22b6 ("bpf: fix mm lifecycle in open-coded task_vma iterator"). Use spin_trylock() instead of get_task_mm() so BPF context does not block on alloc_lock. Reject irqs-disabled contexts and !CONFIG_MMU on the foreign-task path because dropping the mm reference is not safe there. Race: CPU0 (BPF program) CPU1 (exiting task) ============================ ========================== bpf_find_vma(foreign_task): mm = task->mm exit_mm(): task->mm = NULL mmput(mm) -> frees mm_struct mmap_read_trylock(mm) // UAF on mm
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 7c7e3d31e7856a8260a254f8c71db416f7f9f5a1, < db347840d6b6ee9bb9b8e4a985d4b4419f9f3200; >= 7c7e3d31e7856a8260a254f8c71db416f7f9f5a1, < 8e1101fc4118019a69c96ced4aec93164f89cbd5; >= 7c7e3d31e7856a8260a254f8c71db416f7f9f5a1, < c7ad910e987008e125eeff448892e86852173384; >= 7c7e3d31e7856a8260a254f8c71db416f7f9f5a1, < 86d54cf069fc5ae2e111c87933bebf6eb527978e; >= 7c7e3d31e7856a8260a254f8c71db416f7f9f5a1, < 2b2a903bee56d312539046d9defa8023eec94760; >= 7c7e3d31e7856a8260a254f8c71db416f7f9f5a1, < 47b079e2117a2ee52e21f8b72935900c702fc0b5 |
| Linux | Linux | 5.17 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93137?
How severe is CVE-2026-93137?
How do I fix CVE-2026-93137?
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-93131In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93132In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93133In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93134In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93135In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93136In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93138In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-93139In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9314Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-93140In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93141In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93142In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-93137?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
