CVE-2025-71229
Alignment Fault in Linux rtw88 WiFi Driver Causes Kernel Crash
Publication date: 2026-02-18
Last updated on: 2026-03-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.19 (inc) to 6.19.1 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.72 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.18.11 (exc) |
| linux | linux_kernel | From 6.5 (inc) to 6.6.125 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
How can this vulnerability impact me? :
This vulnerability can cause the affected system to crash due to an alignment fault when the rtw_core_enable_beacon() function is executed. This results in a kernel panic or system instability, potentially leading to denial of service.
Systems using the affected Realtek rtw88 wifi driver may experience unexpected reboots or loss of network connectivity, impacting availability.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's wifi driver component rtw88, specifically in the function rtw_core_enable_beacon(). The function attempts to read 4 bytes from a memory address that is not aligned to a multiple of 4, which causes an alignment fault and results in a system crash on some hardware platforms.
The issue is due to improper memory access alignment, and the fix involves changing the code to perform 1 byte reads and writes instead of 4 byte accesses to avoid the alignment fault.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability causes a crash in the Linux kernel related to the rtw88 wifi driver, specifically in the function rtw_core_enable_beacon(). Detection can be done by monitoring kernel logs for crash messages or oops reports indicating an alignment fault in rtw88 modules.
- Check kernel logs for alignment fault errors related to rtw88 using: dmesg | grep -i rtw88
- Look for kernel oops or panic messages mentioning rtw_core_enable_beacon or rtw_pci_read32.
- Use journalctl to review recent kernel errors: journalctl -k | grep -i rtw88
What immediate steps should I take to mitigate this vulnerability?
The vulnerability is fixed by changing the code to perform 1 byte reads/writes instead of 4 bytes in rtw_core_enable_beacon(). Immediate mitigation involves updating the Linux kernel to a version that includes this fix.
- Update your Linux kernel to the latest version that contains the patch for this issue.
- If updating immediately is not possible, consider disabling the affected rtw88 wifi modules temporarily to prevent crashes.
- Monitor system stability and kernel logs for related errors until the patch is applied.