CVE-2023-53490 Vulnerability Analysis & Exploit Details

CVE-2023-53490
Vulnerability Scoring

4.7
/10
Medium Risk

The vulnerability CVE-2023-53490 could compromise system integrity but typically requires user interaction to be exploited.

Attack Complexity Details

  • Attack Complexity: High
    Exploits require significant effort and special conditions.
  • Attack Vector: Local
    Vulnerability requires local system access.
  • Privileges Required: Low
    Some privileges are necessary to exploit the vulnerability.
  • Scope: Unchanged
    Exploit remains within the originally vulnerable component.
  • User Interaction: None
    No user interaction is necessary for exploitation.

CVE-2023-53490 Details

Status: Analyzed

Last updated: 🕣 16 Jan 2026, 20:40 UTC
Originally published on: 🕛 01 Oct 2025, 12:15 UTC

Time between publication and last update: 107 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H

CVE-2023-53490 Vulnerability Summary

CVE-2023-53490: In the Linux kernel, the following vulnerability has been resolved: mptcp: fix disconnect vs accept race Despite commit 0ad529d9fd2b ("mptcp: fix possible divide by zero in recvmsg()"), the mptcp protocol is still prone to a race between disconnect() (or shutdown) and accept. The root cause is that the mentioned commit checks the msk-level flag, but mptcp_stream_accept() does acquire the msk-level lock, as it can rely directly on the first subflow lock. As reported by Christoph than can lead to a race where an msk socket is accepted after that mptcp_subflow_queue_clean() releases the listener socket lock and just before it takes destructive actions leading to the following splat: BUG: kernel NULL pointer dereference, address: 0000000000000012 PGD 5a4ca067 P4D 5a4ca067 PUD 37d4c067 PMD 0 Oops: 0000 [#1] PREEMPT SMP CPU: 2 PID: 10955 Comm: syz-executor.5 Not tainted 6.5.0-rc1-gdc7b257ee5dd #37 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.0-2.el7 04/01/2014 RIP: 0010:mptcp_stream_accept+0x1ee/0x2f0 include/net/inet_sock.h:330 Code: 0a 09 00 48 8b 1b 4c 39 e3 74 07 e8 bc 7c 7f fe eb a1 e8 b5 7c 7f fe 4c 8b 6c 24 08 eb 05 e8 a9 7c 7f fe 49 8b 85 d8 09 00 00 <0f> b6 40 12 88 44 24 07 0f b6 6c 24 07 bf 07 00 00 00 89 ee e8 89 RSP: 0018:ffffc90000d07dc0 EFLAGS: 00010293 RAX: 0000000000000000 RBX: ffff888037e8d020 RCX: ffff88803b093300 RDX: 0000000000000000 RSI: ffffffff833822c5 RDI: ffffffff8333896a RBP: 0000607f82031520 R08: ffff88803b093300 R09: 0000000000000000 R10: 0000000000000000 R11: 0000000000003e83 R12: ffff888037e8d020 R13: ffff888037e8c680 R14: ffff888009af7900 R15: ffff888009af6880 FS: 00007fc26d708640(0000) GS:ffff88807dd00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000012 CR3: 0000000066bc5001 CR4: 0000000000370ee0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> do_accept+0x1ae/0x260 net/socket.c:1872 __sys_accept4+0x9b/0x110 net/socket.c:1913 __do_sys_accept4 net/socket.c:1954 [inline] __se_sys_accept4 net/socket.c:1951 [inline] __x64_sys_accept4+0x20/0x30 net/socket.c:1951 do_syscall_x64 arch/x86/entry/common.c:50 [inline] do_syscall_64+0x47/0xa0 arch/x86/entry/common.c:80 entry_SYSCALL_64_after_hwframe+0x6e/0xd8 Address the issue by temporary removing the pending request socket from the accept queue, so that racing accept() can't touch them. After depleting the msk - the ssk still exists, as plain TCP sockets, re-insert them into the accept queue, so that later inet_csk_listen_stop() will complete the tcp socket disposal.

Assessing the Risk of CVE-2023-53490

Access Complexity Graph

The exploitability of CVE-2023-53490 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2023-53490

This vulnerability, CVE-2023-53490, requires a high level of attack complexity and low privileges, making it difficult but not impossible to exploit. Organizations should ensure robust security configurations to mitigate risks.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2023-53490, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2023-53490, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: None
    CVE-2023-53490 has no significant impact on data confidentiality.
  • Integrity: None
    CVE-2023-53490 poses no threat to data integrity.
  • Availability: High
    CVE-2023-53490 can disrupt system operations, potentially causing complete denial of service (DoS).

CVE-2023-53490 References

External References

CWE Common Weakness Enumeration

CWE-362

CAPEC Common Attack Pattern Enumeration and Classification

  • Leveraging Race Conditions CAPEC-26 The adversary targets a race condition occurring when multiple processes access and manipulate the same resource concurrently, and the outcome of the execution depends on the particular order in which the access takes place. The adversary can leverage a race condition by "running the race", modifying the resource and modifying the normal execution flow. For instance, a race condition can occur while accessing a file: the adversary can trick the system by replacing the original file with their version and cause the system to read the malicious file.
  • Leveraging Time-of-Check and Time-of-Use (TOCTOU) Race Conditions CAPEC-29 This attack targets a race condition occurring between the time of check (state) for a resource and the time of use of a resource. A typical example is file access. The adversary can leverage a file access race condition by "running the race", meaning that they would modify the resource between the first time the target program accesses the file and the time the target program uses the file. During that period of time, the adversary could replace or modify the file, causing the application to behave unexpectedly.

Vulnerable Configurations

  • cpe:2.3:o:linux:linux_kernel:6.1.27:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.27:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.28:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.28:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.29:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.29:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.30:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.30:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.31:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.31:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.32:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.32:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.33:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.33:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.34:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.34:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.35:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.35:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.36:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.36:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.37:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.37:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.38:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.38:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.39:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.39:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.40:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.40:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.41:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.41:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.42:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.42:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.43:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.43:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.44:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.44:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.1.45:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.1.45:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2.14:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2.14:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2.15:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2.15:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2.16:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2.16:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.2:rc8:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.2:rc8:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.11:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.11:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.12:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.12:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3.13:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3.13:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc6:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:rc7:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.1:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.1:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.2:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.2:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.3:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.3:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.4:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.4:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.5:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.5:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.6:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.6:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.7:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.7:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.8:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.8:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.9:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.9:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.4.10:*:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.4.10:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.3:-:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.3:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc1:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc2:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc3:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc4:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:6.5:rc5:*:*:*:*:*:*
    cpe:2.3:o:linux:linux_kernel:6.5:rc5:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2023-53490: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2026-1165 – The Popup Box plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 6.1.1. This is due to a flawed...
  • CVE-2025-14554 – The Sell BTC - Cryptocurrency Selling Calculator plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'orderform_data' AJAX ac...
  • CVE-2026-23039 – In the Linux kernel, the following vulnerability has been resolved: drm/gud: fix NULL fb and crtc dereferences on USB disconnect On disconnect dr...
  • CVE-2026-23038 – In the Linux kernel, the following vulnerability has been resolved: pnfs/flexfiles: Fix memory leak in nfs4_ff_alloc_deviceid_node() In nfs4_ff_a...
  • CVE-2026-23037 – In the Linux kernel, the following vulnerability has been resolved: can: etas_es58x: allow partial RX URB allocation to succeed When es58x_alloc_...