CVE-2026-68196
Received Received - Intake

Buffer Overflow in Linux Kernel WILC1000 WiFi Driver

Vulnerability report for CVE-2026-68196, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-10

Last updated on: 2026-08-10

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: wifi: wilc1000: validate assoc response length before subtracting header wilc_parse_assoc_resp_info() computes the trailing IE length as ies_len = buffer_len - sizeof(*res); without first checking that buffer_len is at least sizeof(struct wilc_assoc_resp) (6 bytes). buffer_len is the length reported for a received association response (host_int_parse_assoc_resp_info() passes hif_drv->assoc_resp / assoc_resp_info_len straight in) and must be validated before the driver accesses the fixed header. For a frame shorter than the 6-byte fixed header, the subtraction wraps. For a four-byte response the result is truncated to a u16 ies_len of 65534, so kmemdup() then attempts to copy 65534 bytes starting at buffer + sizeof(*res), beyond the valid association-response data (CWE-125). A response shorter than four bytes can also cause an out-of-bounds read of res->status_code at offsets 2 and 3. Reject frames too short to hold the fixed header before touching the header or computing ies_len. Also set the connection status to a failure on this path: the caller falls through to a "conn_info->status == WLAN_STATUS_SUCCESS" check after the parser returns, so leaving the status untouched could let a malformed short response be treated as a successful association.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-10
Last Modified
2026-08-10
Generated
2026-08-10
AI Q&A
2026-08-10
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux_kernel wilc1000 *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel's wilc1000 WiFi driver involves improper validation of association response frames. The driver subtracts the header size from the reported frame length without first checking if the frame is large enough to contain the header. This can lead to integer underflow, causing out-of-bounds memory access when copying data.

Detection Guidance

This vulnerability involves improper validation of association response frames in the wilc1000 WiFi driver. Detection requires monitoring for malformed WiFi frames or kernel logs indicating buffer overflow attempts. Check kernel logs for wilc1000 errors or crashes using dmesg | grep wilc1000. Monitor network traffic for unusually short association responses with tools like Wireshark or tcpdump filtering for WiFi management frames.

Impact Analysis

An attacker within WiFi range could send maliciously crafted association response frames to trigger out-of-bounds memory access. This may cause system crashes, denial of service, or potentially allow arbitrary code execution on affected systems using the wilc1000 WiFi driver.

Mitigation Strategies

Immediately update your Linux kernel to the latest stable version that includes the fix for CVE-2026-68196. If updating is not immediately possible, disable the wilc1000 WiFi driver by blacklisting the module (echo blacklist wilc1000 >> /etc/modprobe.d/disable-wilc.conf) and reboot. Ensure your WiFi firmware is also updated to the latest version compatible with the patched kernel.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-68196. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart