CVE-2023-53369
BaseFortify
Publication date: 2025-09-18
Last updated on: 2025-12-12
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 2.6.29 (inc) to 5.4.253 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.190 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.126 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.45 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.10 (exc) |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-NVD-CWE-noinfo |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves the incorrect use of a parsing policy in the function dcbnl_bcn_setcfg. The function uses the wrong nla_policy (dcbnl_pfc_up_nest) to parse nested attributes for DCB_ATTR_BCN, which should instead use dcbnl_bcn_nest. Because the two policies differ after the initial attributes, this misuse can cause an overflow in parsing, leading to incorrect handling of attributes and potential memory issues.
How can this vulnerability impact me? :
The vulnerability can lead to improper parsing of network attributes in the Linux kernel's Data Center Bridging (DCB) configuration. This may cause memory corruption or overflow, potentially leading to system instability, crashes, or exploitation by attackers to execute arbitrary code or cause denial of service.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version where the dcbnl_bcn_setcfg function correctly uses the dcbnl_bcn_nest policy to parse the nested tb[DCB_ATTR_BCN] TLV, instead of the erroneous dcbnl_pfc_up_nest policy. This fix prevents potential parsing errors and overflows related to the DCB attributes.