CVE Catalog
EnglishPolski(English translation not available - showing Polish)

CVE-2026-23192

High
Published: Translated: NVD NIST

Summary

W jądrze Linuxa zidentyfikowano podatność związaną z linkwatch, która może prowadzić do sytuacji use-after-free. Problem występuje, gdy referencja do urządzenia jest zwalniana, a następnie podejmowane są próby operacji na już zwolnionym urządzeniu.

Risk Assessment

Podatność ta może prowadzić do nieprzewidzianych zachowań systemu, w tym potencjalnych awarii lub przejęcia kontroli nad systemem przez nieautoryzowane podmioty. Organizacje powinny być świadome ryzyka związanego z nieprawidłowym zarządzaniem referencjami urządzeń.

Recommendation

Zaleca się aktualizację jądra Linux do najnowszej wersji, w której ta podatność została naprawiona. Dodatkowo, należy monitorować systemy pod kątem nieautoryzowanych działań związanych z urządzeniami.

Related vulnerabilities

Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: linkwatch: use __dev_put() in callers to prevent UAF After linkwatch_do_dev() calls __dev_put() to release the linkwatch reference, the device refcount may drop to 1. At this point, netdev_run_todo() can proceed (since linkwatch_sync_dev() sees an empty list and returns without blocking), wait for the refcount to become 1 via netdev_wait_allrefs_any(), and then free the device via kobject_put(). This creates a use-after-free when __linkwatch_run_queue() tries to call netdev_unlock_ops() on the already-freed device. Note that adding netdev_lock_ops()/netdev_unlock_ops() pair in netdev_run_todo() before kobject_put() would not work, because netdev_lock_ops() is conditional - it only locks when netdev_need_ops_lock() returns true. If the device doesn't require ops_lock, linkwatch won't hold any lock, and netdev_run_todo() acquiring the lock won't provide synchronization. Fix this by moving __dev_put() from linkwatch_

Vulnerability data from NVD (NIST) · CISA KEV · EPSS