You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
cve 2025 38135
About this tag
CVE-2025-38135 is a Linux kernel vulnerability involving a missing NULL check in the mlb_usio_probe function of a serial driver. The bug can cause a null pointer dereference, potentially leading to a denial-of-service crash on affected systems. The fix adds a check for the return value of devm_ioremap() to handle NULL returns properly. This issue highlights how routine memory-mapping calls and subtle API semantics remain common sources of kernel instability and security impact. While the vulnerability is low-level, it underscores the importance of careful error handling in kernel code.
A simple missing NULL check inside a Linux kernel serial driver has been assigned CVE-2025-38135 — a low-level bug that can trigger a kernel-level null pointer dereference and, in the worst cases, a denial-of-service crash on affected systems. The fix is straightforward: check the return value...