PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-64044 Linux CVE debrief

A Linux kernel vulnerability, CVE-2026-64044, was resolved. The issue involves ovpn: respect peer refcount in CMD_NEW_PEER error path. The vulnerability arises from ovpn_nl_peer_new_doit()'s error path calling ovpn_peer_release() directly rather than ovpn_peer_put(), bypassing the kref. This affects TCP but not UDP due to differences in how peers are handled.

Vendor
Linux
Product
Unknown
CVSS
Unknown
CISA KEV
Not listed in stored evidence
Original CVE published
2026-07-19
Original CVE updated
2026-07-19
Advisory published
2026-07-19
Advisory updated
2026-07-19

Who should care

Linux kernel users and administrators should be aware of this vulnerability. The issue is specific to the ovpn (OpenVPN) part of the Linux kernel and affects how peer references are managed in error conditions.

Technical summary

In the Linux kernel, a vulnerability was found in the handling of peer references in the ovpn (OpenVPN) component. Specifically, in the CMD_NEW_PEER error path, ovpn_nl_peer_new_doit() calls ovpn_peer_release() directly instead of ovpn_peer_put(). This bypasses the kref (kernel reference count) mechanism, potentially leading to use-after-free issues. The impact differs between UDP and TCP due to their different handling of peer references. For TCP, this can lead to a situation where a peer is freed while still referenced by a user-space caller, causing issues when the caller attempts to use the freed memory.

Defensive priority

Medium

Recommended defensive actions

  • Apply the official patch or update to a fixed version of the Linux kernel.
  • Review and monitor OpenVPN configurations and logs for unusual activity.
  • Ensure proper error handling and resource management in related code paths.
  • Perform a thorough review of the system for potential indicators of compromise.
  • Check for any unauthorized changes to system configurations or files.
  • Verify that all necessary security updates and patches are applied.
  • Monitor system logs for suspicious activity related to OpenVPN.

Evidence notes

The CVE record was published on 2026-07-19T16:17:44.690Z and has not been modified since then. The NVD entry is currently Received. The vulnerability was resolved by replacing the direct destructor call with ovpn_peer_put() to correctly defer destruction until the last reference is dropped.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-07-19T16:17:44.690Z and has not been modified since then. The NVD entry is currently Received.