CVE-2026-23410
HighIn the Linux kernel, the following vulnerability has been resolved: apparmor: fix race on rawdata dereference There is a race condition that leads to a use-after-free situation: because the rawdata inodes are not refcounted, an attacker can start open()ing one of the rawdata files, and at the same time remove the last reference to this rawdata (by removing the corresponding profile, for example), which frees its struct aa_loaddata; as a result, when seq_rawdata_open() is reached, i_private is a dangling pointer and freed memory is accessed. The rawdata inodes weren't refcounted to avoid a circular refcount and were supposed to be held by the profile rawdata reference. However during profile removal there is a window where the vfs and profile destruction race, resulting in the use after free. Fix this by moving to a double refcount scheme. Where the profile refcount on rawdata is used to break the circular dependency. Allowing for freeing of the rawdata once all inode references to the rawdata are put.
CVSS 3.1 score
7.8
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Weakness type
CWE-362CVE-2026-23410 is a Race Condition vulnerability
What is Race Condition?
The product contains a code sequence that can run concurrently with other code, creating unexpected states. Learn more on MITRE CWE
Affected versions
Linux kernel versions
4.13
and later are affected. Fixed in
5.10.253,
5.15.203,
6.1.169,
6.6.130,
6.12.77,
6.18.18,
6.19.8,
7.0
and their respective stable series.
References
The following references provide additional information about CVE-2026-23410 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
PatchKernel patch commithttps://git.kernel.org/stable/c/3b8e77c7abab40e6de9ad9de730d77984a498840
-
PatchKernel patch commithttps://git.kernel.org/stable/c/6b6ba87579c7e7c669e0bec91823e7fb693bc5df
-
PatchKernel patch commithttps://git.kernel.org/stable/c/6ef1f2926c41ab96952d9696d55a052f1b3a9418
Frequently asked questions
-
What is CVE-2026-23410?
CVE-2026-23410 is a High severity Linux kernel vulnerability with a CVSS score of 7.8 out of 10 , classified as a Race Condition flaw (CWE-362) . It affects Linux kernel versions from 4.13 onward and has been patched in 5.10.253, 5.15.203, 6.1.169 and others. CVE-2026-23410 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2026-23410?
CVE-2026-23410 has a CVSS score of 7.8 out of 10, rated High severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H. -
Is there a patch available for CVE-2026-23410?
Yes — CVE-2026-23410 has been patched. Fixed versions include 5.10.253, 5.15.203, 6.1.169 and others. If you are running Linux kernel 4.13 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2026-23410 actively exploited?
No — CVE-2026-23410 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.
-
What is Race Condition (CWE-362)?
The product contains a code sequence that can run concurrently with other code, creating unexpected states. View CWE-362 on MITRE CWE →