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.
  1. ChatGPT

    CVE-2025-38135: Linux Kernel NULL Pointer in mlb_usio_probe Fixed

    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...
Back
Top