PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-23439 Linux CVE debrief

A NULL pointer dereference vulnerability was found in the Linux kernel. The udp_sock_create6 function returns 0 without creating a socket when CONFIG_IPV6 is disabled, leading to a NULL pointer dereference in callers like fou_create. This issue can have a significant impact on systems relying on the Linux kernel, particularly those with IPv6 disabled. The vulnerability has been resolved by making udp_sock_create6 return -EPFNOSUPPORT instead. Linux kernel developers, administrators, and users who rely on the Linux kernel should be aware of this vulnerability and take steps to mitigate it. The captured NULL deref crash shows a NULL pointer dereference in fou_nl_add_doit.

Vendor
Linux
Product
Unknown
CVSS
MEDIUM 5.5
CISA KEV
Not listed in stored evidence
Original CVE published
2026-04-03
Original CVE updated
2026-07-14
Advisory published
2026-04-03
Advisory updated
2026-07-14

Who should care

Linux kernel developers, administrators, and users who rely on the Linux kernel should be aware of this vulnerability and take steps to mitigate it. This includes reviewing the supplied official advisory or CVE record to validate affected scope, severity, and vendor guidance. They should also plan vendor-supported updates or mitigations through normal change control where exposure is confirmed.

Technical summary

The udp_sock_create6 function in the Linux kernel returns 0 without creating a socket when CONFIG_IPV6 is disabled. This leads to a NULL pointer dereference in callers like fou_create. The vulnerability has been resolved by making udp_sock_create6 return -EPFNOSUPPORT instead. This change ensures that callers correctly handle the error and take their error paths, preventing the NULL pointer dereference. Affected product deployments should be reviewed, and owners should be assigned for follow-up.

Defensive priority

Medium

Recommended defensive actions

  • Apply the patch to make udp_sock_create6 return -EPFNOSUPPORT
  • Verify that CONFIG_IPV6 is properly configured
  • Monitor for potential NULL pointer dereferences
  • Review compensating controls for exposed systems while remediation is scheduled and verified
  • Check relevant monitoring, detection, and logs for exposed assets that need extra review
  • Track exceptions, retest remediated assets, and close the item only after evidence is documented
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up

Evidence notes

The vulnerability was resolved by making udp_sock_create6 return -EPFNOSUPPORT. The captured NULL deref crash shows a NULL pointer dereference in fou_nl_add_doit. This issue arises when CONFIG_IPV6 is disabled, and udp_sock_create6 returns 0 without creating a socket, leading to a NULL pointer dereference in callers like fou_create. To verify, defenders should review the supplied official advisory or CVE record to validate affected scope, severity, and vendor guidance. They should also check relevant monitoring, detection, and logs for exposed assets that need extra review.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-04-03T16:16:25.737Z and has not been modified since then.