CVE-2026-80671
Last modified
CVE-2026-80671 is a critical-severity vulnerability rated 9.3/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: perf sched: Fix register_pid() overflow, strcpy, and BUG_ON register_pid() has several issues when processing untrusted perf.data: 1. Integer overflow: (pid + 1) * sizeof(struct task_desc *) can wrap to a small value on 32-bit systems when pid is large (e.g. 0x40000000), causing realloc to return a tiny buffer followed by out-of-bounds writes in the initialization loop. 2. EPSS estimates a 0.16% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: perf sched: Fix register_pid() overflow, strcpy, and BUG_ON register_pid() has several issues when processing untrusted perf.data: 1. Integer overflow: (pid + 1) * sizeof(struct task_desc *) can wrap to a small value on 32-bit systems when pid is large (e.g. 0x40000000), causing realloc to return a tiny buffer followed by out-of-bounds writes in the initialization loop. 2. Heap buffer overflow: strcpy(task->comm, comm) copies the untrusted comm string into a fixed 20-byte COMM_LEN buffer with no length check. 3. BUG_ON on allocation failure: perf.data is untrusted input, so allocation failures should be handled gracefully rather than killing the process. 4. Realloc of sched->tasks assigned directly back, leaking the old pointer on failure; nr_tasks incremented before the realloc, leaving corrupted state on failure. Cap pid at PID_MAX_LIMIT (4194304, matching the kernel's maximum on 64-bit), replace strcpy with strlcpy, guard against NULL comm, replace BUG_ON with NULL returns using safe realloc patterns, and add NULL checks in callers that dereference the result.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 344e59fc4f2cba6dc04ce5e2a77388645d4ca834; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 22263d241bad753217d545f8085b7ead52e2873b; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 2003918e13f43cf6c5698be3cc9aa3657dd676a8; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 29639f00bfa49da7904ba0a499e0da7a0e5d735e; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 261d2b5f4afa0570ca906e553c93811c5abe4590; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 652cea73b7b7b7c622a2be670e44e3c499c6d49f; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 5ea1dcc9418c4e06ce29ed5170596f497ba86872; >= ec156764d424dd67283c2cd5e9f6f1b8388364ac, < 5949d339f5ec98752d56dcd4e36f619a59d513a5 |
| Linux | Linux | 2.6.32 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80671?
How severe is CVE-2026-80671?
How do I fix CVE-2026-80671?
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-80665In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-80666In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80667In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80668In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-80669In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80670In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-80672In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-80673In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-80674In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-80675In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-80676In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80677In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-80671?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
