AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72462

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

A race condition vulnerability exists in the Linux kernel's AppArmor implementation when mediating Unix socket access using peer paths. This flaw can lead to unauthorized access to socket paths, potentially compromising system security. Linux administrators and security teams should prioritize this fix to mitigate risks associated with socket communication in their environments.

CVE
CVE-2026-72462
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: apparmor: fix race in unix socket mediation when peer_path is used The holding a reference to the peer_sk is not enough to ensure access to the peer sk path. Accessing the path outside of the state lock allows for a race with unix_release_sock(). Fix this by taking the state lock and getting a reference to the path under lock. Ideally for connected sockets we would cache this information so we don't have to take the lock here. But for now just fix the race.