CVE-2025-68776
BaseFortify
Publication date: 2026-01-13
Last updated on: 2026-01-19
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a NULL pointer dereference in the Linux kernel's net/hsr module, specifically in the function prp_get_untagged_frame(). The function calls __pskb_copy() to create a copy of a network frame but does not check if the allocation failed (i.e., if __pskb_copy() returns NULL). If this happens, the subsequent call to skb_clone() with a NULL pointer causes the kernel to crash with a general protection fault.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash due to a NULL pointer dereference, leading to a denial of service (DoS) condition. This crash can disrupt network operations and potentially affect system stability and availability.
What immediate steps should I take to mitigate this vulnerability?
Apply the patch that adds a NULL check immediately after the __pskb_copy() call in the prp_get_untagged_frame() function to handle allocation failures gracefully and prevent the NULL pointer dereference crash.