CVE-2026-90076
Last modified
CVE-2026-90076 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: net/sched: fq: add overflow bounds to quantum and initial quantum fq_init() computes quantum = 2 * psched_mtu() and initial_quantum = 10 * psched_mtu() with no overflow check. A device with a huge MTU (e.g.
Description
In the Linux kernel, the following vulnerability has been resolved: net/sched: fq: add overflow bounds to quantum and initial quantum fq_init() computes quantum = 2 * psched_mtu() and initial_quantum = 10 * psched_mtu() with no overflow check. A device with a huge MTU (e.g. dummy with max_mtu == 0 accepting MTU 2147483634) makes psched_mtu() return 0x80000000; the 2 * and 10 * multiplications wrap to 0 in 32-bit arithmetic, so q->quantum == 0. Then in fq_dequeue() the credit-refill loop adds 0 to f->credit (which stays <= 0) and goto begin loops forever under the qdisc lock, creating a soft lockup. Clamp psched_mtu() to [1, 1 << 20] before multiplying so the product cannot wrap, then cap the result at 1 << 20, matching the bound already enforced on TCA_FQ_QUANTUM in fq_change(). Conditions to recreate the bug: a device whose MTU (plus hard_header_len) is large enough that 2 * psched_mtu() wraps (e.g. a dummy device with max_mtu == 0 accepting MTU 2147483634). Requires CAP_NET_ADMIN in a user namespace.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= afe4fd062416b158a8a8538b23adc1930a9b88dc, < d16dac3925be95ad46e986d4b139c9898b6e227f; >= afe4fd062416b158a8a8538b23adc1930a9b88dc, < f6b3e3848a5fca63438984acd6d9eceac80814c1; >= afe4fd062416b158a8a8538b23adc1930a9b88dc, < e35acd56f244d94355f9ab237c2ecc8fba5e6f04; >= afe4fd062416b158a8a8538b23adc1930a9b88dc, < 709f34f7c28dc4dd6c40343d101850f11e172312 |
| Linux | Linux | 3.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-90076?
How severe is CVE-2026-90076?
How do I fix CVE-2026-90076?
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-90070In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90071In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-90072In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90073In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90074In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90075In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90077In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90078In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90079In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9008The Page-list plugin for WordPress is vulnerable to Missing …4.3
- CVE-2026-90080In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90081In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-90076?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
