AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72242

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the SELinux implementation, specifically in the `selinux_sctp_bind_connect()` function, which improperly dereferences `sk->sk_socket` without ensuring it is non-NULL. This could lead to potential null pointer dereference issues when invoked from the ASCONF softirq path, potentially impacting system stability and security. Linux system administrators and developers utilizing SELinux should prioritize addressing this vulnerability to maintain system integrity and prevent exploitation.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: selinux: avoid sk_socket dereference in selinux_sctp_bind_connect() selinux_sctp_bind_connect() dereferences sk->sk_socket to pass a struct socket * to selinux_socket_bind() and selinux_socket_connect_helper(). However, when the hook is invoked from the ASCONF softirq path (sctp_process_asconf), there is no file reference guaranteeing that sk->sk_socket is non-NULL. The setsockopt callers (bindx, connectx, set_primary, sendmsg connect) hold a file reference and are not affected. Both selinux_socket_bind() and selinux_socket_connect_helper() immediately resolve sock->sk, never using the struct socket * for anything else. Refactor the inner logic into helpers that take a struct sock * directly so that selinux_sctp_bind_connect() never needs to touch sk->sk_socket at all.