CVE-2025-37876
- EPSS 0.05%
- Veröffentlicht 09.05.2025 06:45:40
- Zuletzt bearbeitet 12.11.2025 19:52:42
In the Linux kernel, the following vulnerability has been resolved: netfs: Only create /proc/fs/netfs with CONFIG_PROC_FS When testing a special config: CONFIG_NETFS_SUPPORTS=y CONFIG_PROC_FS=n The system crashes with something like: [ 3.7661...
CVE-2025-37870
- EPSS 0.05%
- Veröffentlicht 09.05.2025 06:43:59
- Zuletzt bearbeitet 12.11.2025 20:37:39
In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: prevent hang on link training fail [Why] When link training fails, the phy clock will be disabled. However, in enable_streams, it is assumed that link training suc...
CVE-2025-37867
- EPSS 0.07%
- Veröffentlicht 09.05.2025 06:43:56
- Zuletzt bearbeitet 12.11.2025 20:15:41
In the Linux kernel, the following vulnerability has been resolved: RDMA/core: Silence oversized kvmalloc() warning syzkaller triggered an oversized kvmalloc() warning. Silence it by adding __GFP_NOWARN. syzkaller log: WARNING: CPU: 7 PID: 518 at...
CVE-2025-37861
- EPSS 0.07%
- Veröffentlicht 09.05.2025 06:42:07
- Zuletzt bearbeitet 12.11.2025 20:12:35
In the Linux kernel, the following vulnerability has been resolved: scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue When the task management thread processes reply queues while the reset thread resets them, the task managem...
CVE-2025-37862
- EPSS 0.06%
- Veröffentlicht 09.05.2025 06:42:07
- Zuletzt bearbeitet 12.11.2025 20:13:04
In the Linux kernel, the following vulnerability has been resolved: HID: pidff: Fix null pointer dereference in pidff_find_fields This function triggered a null pointer dereference if used to search for a report that isn't implemented on the device...
CVE-2025-37859
- EPSS 0.06%
- Veröffentlicht 09.05.2025 06:42:06
- Zuletzt bearbeitet 12.11.2025 20:10:45
In the Linux kernel, the following vulnerability has been resolved: page_pool: avoid infinite loop to schedule delayed worker We noticed the kworker in page_pool_release_retry() was waken up repeatedly and infinitely in production because of the bu...
CVE-2025-37857
- EPSS 0.05%
- Veröffentlicht 09.05.2025 06:42:05
- Zuletzt bearbeitet 12.11.2025 20:08:56
In the Linux kernel, the following vulnerability has been resolved: scsi: st: Fix array overflow in st_setup() Change the array size to follow parms size instead of a fixed value.
CVE-2025-37858
- EPSS 0.03%
- Veröffentlicht 09.05.2025 06:42:05
- Zuletzt bearbeitet 12.11.2025 20:09:28
In the Linux kernel, the following vulnerability has been resolved: fs/jfs: Prevent integer overflow in AG size calculation The JFS filesystem calculates allocation group (AG) size using 1 << l2agsize in dbExtendFS(). When l2agsize exceeds 31 (poss...
CVE-2025-37856
- EPSS 0.05%
- Veröffentlicht 09.05.2025 06:42:04
- Zuletzt bearbeitet 12.11.2025 20:08:08
In the Linux kernel, the following vulnerability has been resolved: btrfs: harden block_group::bg_list against list_del() races As far as I can tell, these calls of list_del_init() on bg_list cannot run concurrently with btrfs_mark_bg_unused() or b...
CVE-2025-37855
- EPSS 0.07%
- Veröffentlicht 09.05.2025 06:42:03
- Zuletzt bearbeitet 17.11.2025 12:51:05
In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Guard Possible Null Pointer Dereference [WHY] In some situations, dc->res_pool may be null. [HOW] Check if pointer is null before dereference.