CVE-2025-71087
BaseFortify
Publication date: 2026-01-13
Last updated on: 2026-03-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 4.7 |
| linux | linux_kernel | From 5.11 (inc) to 5.15.198 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.13 (inc) to 6.18.4 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.160 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.120 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.64 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 4.7.1 (inc) to 5.10.248 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-193 | A product calculates or uses an incorrect maximum or minimum value that is 1 more, or 1 less, than the correct value. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is an off-by-one error in the Linux kernel's iavf driver, specifically in the function iavf_config_rss_reg(). The issue occurs when configuring the RSS (Receive Side Scaling) hash key and lookup table. Due to incorrect loop bounds, the code reads and writes one element beyond the intended memory or device register boundaries, causing out-of-bounds memory reads and out-of-bounds writes to device registers. This happens because the loop condition uses '<=' instead of '<', leading to accessing one element past the valid range.
How can this vulnerability impact me? :
The vulnerability can lead to out-of-bounds memory reads and writes, which may cause system instability, crashes, or unpredictable behavior in the affected device driver. It could potentially be exploited to corrupt memory or device registers, leading to denial of service or other unintended effects on the system's operation.