In the Linux kernel, the following vulnerability has been...
Moderate severity
Unreviewed
Published
Feb 10, 2025
to the GitHub Advisory Database
•
Updated Feb 21, 2025
Description
Published by the National Vulnerability Database
Feb 10, 2025
Published to the GitHub Advisory Database
Feb 10, 2025
Last updated
Feb 21, 2025
In the Linux kernel, the following vulnerability has been resolved:
USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb()
This patch addresses a null-ptr-deref in qt2_process_read_urb() due to
an incorrect bounds check in the following:
The condition doesn't account for the valid range of the serial->port
buffer, which is from 0 to serial->num_ports - 1. When newport is equal
to serial->num_ports, the assignment of "port" in the
following code is out-of-bounds and NULL:
The fix checks if newport is greater than or equal to serial->num_ports
indicating it is out-of-bounds.
References