Lucene search
+L

1003 matches found

UbuntuCve
UbuntuCve
added 2025/12/30 1:16 p.m.12 views

CVE-2023-54227

In the Linux kernel, the following vulnerability has been resolved: blk-mq: fix tags leak when shrink nrhwqueues Although we don't need to realloc set-tags when shrink nrhwqueues, we need to free them. Or these tags will be leaked. How to reproduce: 1. mount -t configfs configfs /mnt 2. modprobe...

7.5CVSS5.7AI score0.00403EPSS
SaveExploits0References4
OSV
OSV
added 2025/12/30 1:16 p.m.10 views

UBUNTU-CVE-2023-54191

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7996: fix memory leak in mt7996mcuexit Always purge mcu skb queues in mt7996mcuexit routine even if mt7996firmwarestate fails...

5.7AI score0.00188EPSS
SaveExploits0References5
OSV
OSV
added 2025/12/30 1:16 p.m.11 views

UBUNTU-CVE-2023-54289

In the Linux kernel, the following vulnerability has been resolved: scsi: qedf: Fix NULL dereference in error handling Smatch reported: drivers/scsi/qedf/qedfmain.c:3056 qedfallocglobalqueues warn: missing unwind goto? At this point in the function, nothing has been allocated so we can return...

6AI score0.00202EPSS
SaveExploits0References10
UbuntuCve
UbuntuCve
added 2025/12/30 1:16 p.m.19 views

CVE-2023-54166

In the Linux kernel, the following vulnerability has been resolved: igc: Fix Kernel Panic during ndotxtimeout callback The Xeon validation group has been carrying out some loaded tests with various HW configurations, and they have seen some transmit queue time out happening during the test. This...

7.8CVSS6.2AI score0.00149EPSS
SaveExploits0References6
CVE
CVE
added 2025/12/30 12:23 p.m.29 views

CVE-2023-54289

CVE-2023-54289: Linux kernel SCSI qedf NULL-dereference in error path. The issue occurs when qedf_alloc_global_queues() handles an error before any allocation; qedf_free_global_queues() would dereference a NULL gl, causing a crash. The fixed behavior returns early when nothing has been allocated ...

6AI score0.00202EPSS
SaveExploits0References7
OSV
OSV
added 2025/12/30 12:23 p.m.11 views

CVE-2023-54289 scsi: qedf: Fix NULL dereference in error handling

In the Linux kernel, the following vulnerability has been resolved: scsi: qedf: Fix NULL dereference in error handling Smatch reported: drivers/scsi/qedf/qedfmain.c:3056 qedfallocglobalqueues warn: missing unwind goto? At this point in the function, nothing has been allocated so we can return...

6.3AI score
SaveExploits0References10
CVE
CVE
added 2025/12/30 12:11 p.m.36 views

CVE-2023-54236

CVE-2023-54236 is a Linux kernel vulnerability related to the net_failover path, where the transmit queue (txq) count could exceed the number of available TX queues, leading to a warning such as “eth0 selects TX queue 18, but real number of TX queues is 16.” The provided documents confirm that th...

6AI score0.00209EPSS
SaveExploits0References6
CVE
CVE
added 2025/12/30 12:11 p.m.41 views

CVE-2023-54227

CVE-2023-54227 affects the Linux kernel blk-mq by leaking tags during shrink_nr_hw_queues. Reproduction shows 9 tags allocated for 8 submit queues + 1 poll queue, but when nr_hw_queues shrinks to 5, only 5 tags are freed, leaking the other 4. The issue is addressed in kernel patches; multiple OS ...

7.5CVSS6.1AI score0.00403EPSS
SaveExploits0References2
Debian CVE
Debian CVE
added 2025/12/30 12:11 p.m.19 views

CVE-2023-54227

In the Linux kernel, the following vulnerability has been resolved: blk-mq: fix tags leak when shrink nrhwqueues Although we don't need to realloc set-tags when shrink nrhwqueues, we need to free them. Or these tags will be leaked. How to reproduce: 1. mount -t configfs configfs /mnt 2. modprobe...

7.5CVSS5.2AI score0.00403EPSS
SaveExploits0
OSV
OSV
added 2025/12/30 12:11 p.m.10 views

CVE-2023-54227 blk-mq: fix tags leak when shrink nr_hw_queues

In the Linux kernel, the following vulnerability has been resolved: blk-mq: fix tags leak when shrink nrhwqueues Although we don't need to realloc set-tags when shrink nrhwqueues, we need to free them. Or these tags will be leaked. How to reproduce: 1. mount -t configfs configfs /mnt 2. modprobe...

7.5CVSS6.4AI score
SaveExploits0References5
Cvelist
Cvelist
added 2025/12/30 12:11 p.m.41 views

CVE-2023-54227 blk-mq: fix tags leak when shrink nr_hw_queues

In the Linux kernel, the following vulnerability has been resolved: blk-mq: fix tags leak when shrink nrhwqueues Although we don't need to realloc set-tags when shrink nrhwqueues, we need to free them. Or these tags will be leaked. How to reproduce: 1. mount -t configfs configfs /mnt 2. modprobe...

7.5CVSS0.00403EPSS
SaveExploits0References2
Cvelist
Cvelist
added 2025/12/30 12:10 p.m.31 views

CVE-2022-50838 net: stream: purge sk_error_queue in sk_stream_kill_queues()

In the Linux kernel, the following vulnerability has been resolved: net: stream: purge skerrorqueue in skstreamkillqueues Changheon Lee reported TCP socket leaks, with a nice repro. It seems we leak TCP sockets with the following sequence: 1 SOFTIMESTAMPINGTXACK is enabled on the socket. Each ACK...

0.0028EPSS
SaveExploits0References9
OSV
OSV
added 2025/12/30 12:10 p.m.12 views

CVE-2022-50838 net: stream: purge sk_error_queue in sk_stream_kill_queues()

In the Linux kernel, the following vulnerability has been resolved: net: stream: purge skerrorqueue in skstreamkillqueues Changheon Lee reported TCP socket leaks, with a nice repro. It seems we leak TCP sockets with the following sequence: 1 SOFTIMESTAMPINGTXACK is enabled on the socket. Each ACK...

6.2AI score
SaveExploits0References12
OSV
OSV
added 2025/12/30 12:08 p.m.12 views

CVE-2023-54166 igc: Fix Kernel Panic during ndo_tx_timeout callback

In the Linux kernel, the following vulnerability has been resolved: igc: Fix Kernel Panic during ndotxtimeout callback The Xeon validation group has been carrying out some loaded tests with various HW configurations, and they have seen some transmit queue time out happening during the test. This...

7.8CVSS6.3AI score
SaveExploits0References7
CVE
CVE
added 2025/12/30 12:08 p.m.41 views

CVE-2023-54166

CVE-2023-54166 : Linux kernel igc driver patch to fix kernel panic during ndo_tx_timeout. The description in connected sources confirms a race where a transmit timeout could trigger igc_tx_timeout() while the interface is being reinitialized or TX queues are in-flight, potentially causing a panic...

7.8CVSS6AI score0.00149EPSS
SaveExploits0References4
Positive Technologies
Positive Technologies
added 2025/12/30 12:00 a.m.9 views

PT-2025-54044

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A memory leak was identified and resolved in the virtio-vdpa module within the Linux kernel. Specifically, the virtio vdpa find vqs function failed to free a cpumask allocated by create...

5.9AI score0.00182EPSS
SaveExploits0
CNNVD
CNNVD
added 2025/12/30 12:00 a.m.11 views

Linux kernel 安全漏洞

Linux kernel is the kernel used by Linux, the open source operating system of the Linux Foundation in the United States. A security vulnerability exists in the Linux kernel that stems from improper use of work queues, which could lead to a system crash...

5.8AI score0.00232EPSS
SaveExploits0References4
Positive Technologies
Positive Technologies
added 2025/12/30 12:00 a.m.15 views

PT-2025-54065

Name of the Vulnerable Software and Affected Versions Linux kernel versions prior to 6.2.8-1.el7.centos.x86 64 1 Description The Linux kernel’s net failover component contains an issue where the transmission queue txq size can exceed the expected limit. Specifically, the failover txq is initializ...

7.8CVSS6.9AI score0.00954EPSS
SaveExploits2References898
Positive Technologies
Positive Technologies
added 2025/12/30 12:00 a.m.20 views

PT-2025-53995

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description The Linux kernel contained a flaw in the igc driver that could lead to a kernel panic during an ndo tx timeout callback. This issue was discovered during loaded tests with various hardwa...

7.8AI score0.00149EPSS
SaveExploits0
Tenable Nessus
Tenable Nessus
added 2025/12/30 12:00 a.m.15 views

Unity Linux 20.1060e / 20.1070e Security Update: kernel (UTSA-2025-992427)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-992427 advisory. In the Linux kernel, the following vulnerability has been resolved: ice: xsk: prohibit usage of non-balanced queue id Fix the following scenario: 1. ethtool -L $IFAC...

5.5CVSS6.5AI score0.00189EPSS
SaveExploits0References4
Rows per page
Query Builder