Description
In the Linux kernel, the following vulnerability has been resolved:

net/iucv: take a reference on the socket found in afiucv_hs_rcv()

afiucv_hs_rcv() looks up the destination socket under iucv_sk_list.lock,
drops the lock, and then passes the socket to the afiucv_hs_callback_*()
handlers without holding a reference. AF_IUCV sockets are not
RCU-protected and are freed synchronously by iucv_sock_kill() ->
sock_put(), so a concurrent close can free the socket in the window
between read_unlock() and the handler, which then dereferences freed
memory (for example sk->sk_data_ready() in afiucv_hs_callback_syn()).

Take a reference with sock_hold() while the socket is still on the list
and release it with sock_put() once the handler has run.
Published: 2026-08-10
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The Linux kernel’s IUCV networking subsystem contains a use‑after‑free flaw: the function that receives a socket after a read lock is released passes the socket to a callback without retaining a reference. If the socket is closed concurrently, synchronous deallocation frees the object while the callback still accesses it, causing corrupted kernel memory that can be exploited to execute arbitrary code with kernel privileges.

Affected Systems

All Linux kernel versions that include the IUCV subsystem before the upstream commit that introduces a reference hold in afiucv_hs_rcv() are affected. Because the vulnerability was fixed by that commit, any kernel older than the patched revision is considered vulnerable.

Risk and Exploitability

Based on the description, it is inferred that the exploit requires local access to create or close IUCV sockets and precise timing to race the unlock and callback. The CVSS score is 8.8 and the EPSS score is < 1%, and the CVE is not listed in KEV. The use‑after‑free nature of the bug and its potential to corrupt kernel memory make it a risk that attackers with local privileges could leverage to gain elevated privileges or compromise system integrity.

Generated by OpenCVE AI on August 14, 2026 at 01:04 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the kernel update that includes the commit adding sock_hold() in afiucv_hs_rcv() to eliminate the race and reference issue.
  • If an update cannot be applied immediately, unload or blacklist the "iucv" module on systems that do not require the protocol to prevent the vulnerable code path from executing.
  • Enable or reinforce kernel hardening options such as CONFIG_STRICT_DEVMEM or KASLR to make post‑corruption exploitation more difficult.

Generated by OpenCVE AI on August 14, 2026 at 01:04 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4745-1 linux-6.12 security update
History

Wed, 19 Aug 2026 16:45:00 +0000


Thu, 13 Aug 2026 23:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 4.7, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H'}

cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}


Thu, 13 Aug 2026 03:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Wed, 12 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-825
References
Metrics threat_severity

None

cvssV3_1

{'score': 4.7, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Moderate


Mon, 10 Aug 2026 17:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Mon, 10 Aug 2026 12:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: net/iucv: take a reference on the socket found in afiucv_hs_rcv() afiucv_hs_rcv() looks up the destination socket under iucv_sk_list.lock, drops the lock, and then passes the socket to the afiucv_hs_callback_*() handlers without holding a reference. AF_IUCV sockets are not RCU-protected and are freed synchronously by iucv_sock_kill() -> sock_put(), so a concurrent close can free the socket in the window between read_unlock() and the handler, which then dereferences freed memory (for example sk->sk_data_ready() in afiucv_hs_callback_syn()). Take a reference with sock_hold() while the socket is still on the list and release it with sock_put() once the handler has run.
Title net/iucv: take a reference on the socket found in afiucv_hs_rcv()
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-19T16:34:47.433Z

Reserved: 2026-07-30T09:28:09.389Z

Link: CVE-2026-68397

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T13:20:33.127

Modified: 2026-08-19T17:20:47.693

Link: CVE-2026-68397

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-10T12:04:16Z

Links: CVE-2026-68397 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-14T01:15:17Z

Weaknesses
  • CWE-825

    Expired Pointer Dereference