In the Linux kernel, the following vulnerability has been resolved:
wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf
An integer overflow occurs in the iwl_write_to_user_buf() function, which is called by the iwl_dbgfs_monitor_data_read() function.
static bool iwl_write_to_user_buf(char __user *user_buf, ssize_t count, void *buf, ssize_t *size, ssize_t *bytes_copied) { int buf_size_left = count - *bytes_copied;
buf_size_left = buf_size_left - (buf_size_left % sizeof(u32)); if (*size > buf_size_left) *size = buf_size_left;
If the user passes a SIZE_MAX value to the "ssize_t count" parameter, the ssize_t count parameter is assigned to "int buf_size_left". Then compare "*size" with "buf_size_left" . Here, "buf_size_left" is a negative number, so "*size" is assigned "buf_size_left" and goes into the third argument of the copy_to_user function, causing a heap overflow.
This is not a security vulnerability because iwl_dbgfs_monitor_data_read() is a debugfs operation with 0400 privileges.
CVSS Details
- CVSS 3.1 Base Score: 7.8
- CVSS 3.1 Vector: (CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H)
Covered by Rapid7
| Product | Vendor Advisory | Solution File | Added | Published |
|---|---|---|---|---|
| Debian | — | Upgrade linux | Oct 3, 2025 | Oct 3, 2025 |
| Redhat_linux | — | No solution exists | Jul 17, 2026 | Oct 1, 2025 |
| Ubuntu | — | Upgrade linuxUpgrade linux-iotUpgrade linux-ibmUpgrade linux-gcp-fipsUpgrade linux-ibm-5.15Upgrade linux-hwe-5.4Upgrade linux-gcp-5.4Upgrade linux-lowlatencyUpgrade linux-azure-fipsUpgrade linux-nvidia-tegra-igxUpgrade linux-azure-5.15Upgrade linux-nvidia-tegraUpgrade linux-intel-iot-realtimeUpgrade linux-gkeopUpgrade linux-ibm-5.4Upgrade linux-aws-fipsUpgrade linux-oracle-5.15Upgrade linux-nvidia-tegra-5.15Upgrade linux-realtimeUpgrade linux-nvidiaUpgrade linux-aws-5.4Upgrade linux-kvmUpgrade linux-awsUpgrade linux-gkeUpgrade linux-aws-5.15Upgrade linux-xilinx-zynqmpUpgrade linux-bluefieldUpgrade linux-azure-5.4Upgrade linux-hwe-5.15Upgrade linux-gcp-5.15Upgrade linux-riscv-5.15Upgrade linux-oracleUpgrade linux-gcpUpgrade linux-lowlatency-hwe-5.15Upgrade linux-fipsUpgrade linux-intel-iotg-5.15Upgrade linux-oracle-5.4Upgrade linux-raspiUpgrade linux-azureUpgrade linux-raspi-5.4Upgrade linux-intel-iotg | Oct 10, 2025 | Oct 1, 2025 |
| Vmware Photon_os | — | Use 'tdnf update' to upgrade all packages to the latest version. | Oct 15, 2025 | Oct 1, 2025 |
Prioritise with Active Threat Intelligence
With curated Threat Intelligence, you can see which vulnerabilities truly put you at risk, prioritize what matters most, and act before attackers do.
Explore Intelligence Hub