CVE-2026-22976
📋 TL;DR
A NULL pointer dereference vulnerability in the Linux kernel's QFQ (Quick Fair Queueing) scheduler allows local attackers to cause a kernel panic and system crash. This affects systems using QFQ queuing discipline with specific network configuration scenarios. The vulnerability requires local access to trigger.
💻 Affected Systems
- Linux kernel
📦 What is this software?
Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →Linux Kernel by Linux
The Linux Kernel is the core component of the Linux operating system, serving as the critical interface between computer hardware and software processes. As the heart of millions of servers, cloud infrastructure, embedded systems, Android devices, and IoT deployments worldwide, the Linux Kernel mana...
Learn more about Linux Kernel →⚠️ Risk & Real-World Impact
Worst Case
Kernel panic leading to complete system crash and denial of service, potentially causing data loss or service disruption.
Likely Case
Local denial of service through kernel panic, requiring system reboot to recover.
If Mitigated
No impact if QFQ scheduler is not in use or proper access controls prevent local users from manipulating network queuing.
🎯 Exploit Status
Requires local access and ability to manipulate network queuing via tc commands. The exploit trace shows a local process triggering the vulnerability.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Fixed in kernel commits: 0809c4bc06c9c961222df29f2eccfd449304056f, 11bf9134613f6c71fc0ff36c5d8d33856f6ae3bb, 43497313d0da3e12b5cfcd97aa17bf48ee663f95, 51ffd447bc37bf1a5776b85523f51d2bc69977f6, 6116a83ec167d3ab1390cded854d237481f41b63
Vendor Advisory: https://git.kernel.org/stable/c/0809c4bc06c9c961222df29f2eccfd449304056f
Restart Required: Yes
Instructions:
1. Update Linux kernel to version containing the fix commits. 2. Reboot system to load new kernel. 3. Verify QFQ functionality if required for network configuration.
🔧 Temporary Workarounds
Disable QFQ scheduler
linuxRemove or disable QFQ queuing discipline from network interfaces
tc qdisc del dev <interface> root
tc qdisc replace dev <interface> root pfifo_fast
Restrict tc command access
linuxLimit which users can manipulate traffic control settings
chmod 750 /sbin/tc
setcap -r /sbin/tc
configure sudoers to restrict tc command usage
🧯 If You Can't Patch
- Implement strict access controls to prevent unauthorized users from running tc commands
- Monitor for kernel panic events and implement high availability/failover for critical systems
🔍 How to Verify
Check if Vulnerable:
Check if QFQ is configured: tc qdisc show | grep qfq. Check kernel version against affected range.
Check Version:
uname -r
Verify Fix Applied:
Verify kernel version includes fix commits: grep -r 'qfq_reset' /proc/kallsyms. Test tc qdisc operations with QFQ configuration.
📡 Detection & Monitoring
Log Indicators:
- Kernel panic messages mentioning qfq_deactivate_agg
- NULL pointer dereference errors in kernel logs
- System crash/reboot events
Network Indicators:
- Sudden loss of network connectivity on interfaces using QFQ
SIEM Query:
source="kernel" AND ("qfq_deactivate_agg" OR "NULL pointer dereference" OR "Oops: 0002")
🔗 References
- https://git.kernel.org/stable/c/0809c4bc06c9c961222df29f2eccfd449304056f
- https://git.kernel.org/stable/c/11bf9134613f6c71fc0ff36c5d8d33856f6ae3bb
- https://git.kernel.org/stable/c/43497313d0da3e12b5cfcd97aa17bf48ee663f95
- https://git.kernel.org/stable/c/51ffd447bc37bf1a5776b85523f51d2bc69977f6
- https://git.kernel.org/stable/c/6116a83ec167d3ab1390cded854d237481f41b63
- https://git.kernel.org/stable/c/c1d73b1480235731e35c81df70b08f4714a7d095
- https://git.kernel.org/stable/c/cdb24200b043438a144df501f1ebbd926bb1a2c7