CVE-2023-53354
BaseFortify
Publication date: 2025-09-17
Last updated on: 2025-12-11
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 4.16 (inc) to 4.19.295 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.257 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.195 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.132 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.53 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.16 (exc) |
| linux | linux_kernel | From 6.5 (inc) to 6.5.3 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a bug in the Linux kernel's skb_segment() function related to zero copy operations on socket buffers (skbuff). A recent change introduced a bug where skb_orphan_frags() can modify the number of fragments, leaving local variables stale. This causes the function to access a NULL pointer, leading to a kernel panic (crash). Essentially, the kernel tries to use invalid memory due to incorrect handling of skbuff fragments.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to panic and crash, resulting in a denial of service. Systems affected by this bug may become unstable or unresponsive, potentially disrupting network operations or other services relying on the kernel's networking stack.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring your system logs for kernel panic messages or NULL pointer dereference errors related to skb_segment, as shown in the provided stacktrace. You can check the kernel log using commands like 'dmesg | grep skb_segment' or 'journalctl -k | grep skb_segment' to look for related panic or error messages.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves updating your Linux kernel to a version that includes the fix for this vulnerability, where the call to zero copy functions is moved before using skbuff fragments in skb_segment(). Until then, avoid workloads or configurations that heavily use skb_segment or zero copy functions that might trigger this bug to prevent kernel panic.