Executive Summary

Informations
Name CVE-2025-21689 First vendor Publication 2025-02-10
Vendor Cve Last vendor Modification 2025-02-21

Security-Database Scoring CVSS v3

Cvss vector : CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Overall CVSS Score 5.5
Base Score 5.5 Environmental Score 5.5
impact SubScore 3.6 Temporal Score 5.5
Exploitabality Sub Score 1.8
 
Attack Vector Local Attack Complexity Low
Privileges Required Low User Interaction None
Scope Unchanged Confidentiality Impact None
Integrity Impact None Availability Impact High
Calculate full CVSS 3.0 Vectors scores

Security-Database Scoring CVSS v2

Cvss vector :
Cvss Base Score N/A Attack Range N/A
Cvss Impact Score N/A Attack Complexity N/A
Cvss Expoit Score N/A Authentication N/A
Calculate full CVSS 2.0 Vectors scores

Detail

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:

if (newport > serial->num_ports) {
dev_err(&port->dev,
"%s - port change to invalid port: %i\n",
__func__, newport);
break;
}

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:

serial_priv->current_port = newport;
port = serial->port[serial_priv->current_port];

The fix checks if newport is greater than or equal to serial->num_ports indicating it is out-of-bounds.

Original Source

Url : http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21689

CWE : Common Weakness Enumeration

% Id Name
100 % CWE-476 NULL Pointer Dereference

CPE : Common Platform Enumeration

TypeDescriptionCount
Application 8
Os 3688

Sources (Detail)

https://git.kernel.org/stable/c/4b9b41fabcd38990f69ef0cee9c631d954a2b530
https://git.kernel.org/stable/c/575a5adf48b06a2980c9eeffedf699ed5534fade
https://git.kernel.org/stable/c/6068dcff7f19e9fa6fa23ee03453ad6a40fa4efe
https://git.kernel.org/stable/c/6377838560c03b36e1153a42ef727533def9b68f
https://git.kernel.org/stable/c/8542b33622571f54dfc2a267fce378b6e3840b8b
https://git.kernel.org/stable/c/94770cf7c5124f0268d481886829dc2beecc4507
https://git.kernel.org/stable/c/f371471708c7d997f763b0e70565026eb67cc470
https://git.kernel.org/stable/c/fa4c7472469d97c4707698b4c0e098f8cfc2bf22
Source Url

Alert History

If you want to see full details history, please login or register.
0
1
2
3
4
5
6
Date Informations
2025-03-18 03:31:36
  • Multiple Updates
2025-03-14 03:18:39
  • Multiple Updates
2025-03-06 14:15:11
  • Multiple Updates
2025-03-06 03:09:32
  • Multiple Updates
2025-02-22 00:20:40
  • Multiple Updates
2025-02-21 21:20:39
  • Multiple Updates
2025-02-10 21:20:29
  • First insertion