CVE-2023-53372: sctp: fix a potential overflow in sctp_ifwdtsn_skip
In the Linux kernel, the following vulnerability has been resolved:
sctp: fix a potential overflow in sctp_ifwdtsn_skip
Currently, when traversing ifwdtsn skips with _sctp_walk_ifwdtsn, it only
checks the pos against the end of the chunk. However, the data left for
the last pos may be < sizeof(struct sctp_ifwdtsn_skip), and dereference
it as struct sctp_ifwdtsn_skip may cause coverflow.
This patch fixes it by checking the pos against "the end of the chunk -
sizeof(struct sctp_ifwdtsn_skip)" in sctp_ifwdtsn_skip, similar to
sctp_fwdtsn_skip.
This is a Linux kernel memory-safety flaw in SCTP handling. A local low-privileged user may be able to trigger memory corruption with high confidentiality, integrity, and availability impact. The sources show kernel stable fixes, but no public source in the bundle proves active exploitation.
Executive priority
Handle as a high-priority kernel patching item, especially on shared Linux systems. It is not shown as actively exploited in the supplied sources, but impact is high if triggered locally.
Technical view
The vulnerable SCTP I-FWD-TSN skip traversal checked only against the chunk end. If the remaining bytes were smaller than struct sctp_ifwdtsn_skip, dereferencing the trailing position could cause an out-of-bounds condition. The fix tightens bounds checking before dereference.
Likely exposure
Exposure is limited to Linux systems running affected kernel code with SCTP support present. The bundle lists Linux kernel affected version markers including 4.16, 4.19.281, 5.4.241, 5.10.178, 5.15.108, 6.1.25, 6.2.12, and 6.3.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction. The bundle marks KEV as false and provides no cited evidence of exploitation in the wild. Treat exploit status as unproven from the supplied evidence.
Researcher notes
The key validation point is whether the running kernel contains the corrected sctp_ifwdtsn_skip bounds check. Source evidence is limited to the CVE record, CVE List data, and Linux stable commit references; no exploitability details beyond CVSS are supplied.
Mitigation direction
Update Linux kernels to vendor releases containing the referenced stable fixes.
Confirm distribution advisories map the fix into your packaged kernel version.
Prioritize hosts where untrusted local users or workloads can execute code.
If SCTP is unnecessary, check vendor guidance for reducing SCTP availability.
Validation and detection
Inventory running kernel versions across servers, endpoints, containers, and appliances.
Check whether each kernel includes the referenced stable fix commits or vendor backports.
Identify systems where low-privileged local users can run code.
Confirm SCTP support is present or enabled before treating exposure as reachable.
Based on public source material and reviewed before publication.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-787: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
1CVSS vectors
3Timeline events
1ADP providers
8Source links
SSVC decision data
CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: noneAutomatable: noTechnical Impact: total
CVSS vector scores
1 official score
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-787 · source CWE mapping
Out-of-bounds Write
Out-of-bounds Write represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.