CVE-2026-74543
Last modified
CVE-2026-74543 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: net: udp_tunnel: fix memory leak in udp_tunnel_nic_unregister() syzbot reported a memory leak [1] in the UDP tunnel NIC offload code. When device registration fails (e.g. in register_netdevice()), netdev core unwinds by sending a single NETDEV_UNREGISTER notification. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: net: udp_tunnel: fix memory leak in udp_tunnel_nic_unregister() syzbot reported a memory leak [1] in the UDP tunnel NIC offload code. When device registration fails (e.g. in register_netdevice()), netdev core unwinds by sending a single NETDEV_UNREGISTER notification. If work was queued during NETDEV_REGISTER (utn->work_pending is set), udp_tunnel_nic_unregister() returns early: if (utn->work_pending) return; Because failed registrations do not enter netdev_wait_allrefs_any(), no subsequent NETDEV_UNREGISTER rebroadcast will ever occur. As a result, the struct udp_tunnel_nic allocated in udp_tunnel_nic_alloc() is leaked permanently. Fix this by removing the early return. Instead, synchronously cancel any pending work with cancel_delayed_work_sync() before freeing @utn. To be able to call cancel_delayed_work_sync() while holding RTNL (the work also needs RTNL), switch udp_tunnel_nic_device_sync_work() to rtnl_trylock(). If RTNL is contended, requeue the work with a 1 jiffy delay (via queue_delayed_work()) to prevent high CPU contention while waiting for RTNL lock. The utn->work_pending bookkeeping is no longer needed and is removed, as the workqueue core already tracks the pending/running state of the work. [1] BUG: memory leak unreferenced object 0xffff888127d5f840 (size 96): comm "syz-executor", pid 5806, jiffies 4294942188 backtrace (crc 99fdb6c8): __kmalloc_noprof+0x3bf/0x550 udp_tunnel_nic_alloc net/ipv4/udp_tunnel_nic.c:756 [inline] udp_tunnel_nic_register net/ipv4/udp_tunnel_nic.c:833 [inline] udp_tunnel_nic_netdevice_event+0x804/0xab0 net/ipv4/udp_tunnel_nic.c:931 notifier_call_chain+0x59/0x160 kernel/notifier.c:85 call_netdevice_notifiers_info+0x7d/0xb0 net/core/dev.c:2250 register_netdevice+0xc10/0xeb0 net/core/dev.c:11478
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= cc4e3835eff474aa274d6e1d18f69d9d296d3b76, < b712da45bd9b9835d132e9fbc0c3e43c164cb1fd; >= cc4e3835eff474aa274d6e1d18f69d9d296d3b76, < f82a2ded3d7a9098267c84f14eafdb98c4550ac5; >= cc4e3835eff474aa274d6e1d18f69d9d296d3b76, < b322532a4b774db1b480a2de84125910a70739a5; >= cc4e3835eff474aa274d6e1d18f69d9d296d3b76, < 080695e6f005e2396f1207fd69d24c442cb230c6 |
| Linux | Linux | 5.9 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74543?
How severe is CVE-2026-74543?
How do I fix CVE-2026-74543?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-74538In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74539In the Linux kernel, the following vulnerability has been re…8
- CVE-2026-7454A maliciously crafted WRL file, when parsed through Autodesk…7.8
- CVE-2026-74540In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74541In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74542In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74544In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74545In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-74546In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74547In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74548In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74549In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-74543?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
