CVE Catalog

CVE-2026-93064

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel wifi iwlwifi mvm driver, iwl_mvm_frob_txf_key_iter() had an off-by-one error in calculating the start offset for key sanitization. This zeroed one byte before the match and left the final key byte unsanitized.

Risk Assessment

Improper key sanitization may leave sensitive data in memory or corrupt adjacent data, potentially affecting security.

Recommendation

Update the Linux kernel to a version with the fix that corrects the offset calculation to i + 1 - keylen.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: wifi: iwlwifi: mvm: fix off-by-one in TXF key sanitiser iwl_mvm_frob_txf_key_iter() tracks the last matched byte position in loop variable 'i'. When a full key match is found (match == keylen), 'i' points at the last byte of the matched key. The memset start offset should therefore be i + 1 - keylen, not i - keylen; the current code zeroes one byte before the match and leaves the final key byte un-sanitised.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS