CVE-2025-39946
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-04-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel's TLS implementation involves improper handling of TLS record headers when the socket buffer is very small. Normally, the system waits to buffer the entire TLS record before processing it, but with a tiny socket buffer, data is read earlier to avoid connection stalls. If the TLS record header is invalid and discovered late, the system previously tried to retry parsing, copying more data each time, which could overflow the allocated socket buffer space (skb). The fix ensures that the connection is aborted immediately upon detecting an invalid TLS record, preventing buffer overflow and potential instability.
How can this vulnerability impact me? :
This vulnerability can lead to a buffer overflow in the Linux kernel's TLS processing, which may cause connection instability or crashes. An attacker could exploit this by sending specially crafted TLS records in small out-of-band segments to trigger the overflow, potentially leading to denial of service or other unpredictable behavior in systems relying on the affected Linux kernel TLS implementation.