AUGUST 16, 2026
Live Feed
Back to database
Case File

CVE-2026-68198

HIGH · CVSS 8.8 EPSS 0.27%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-16

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ath6kl Wi-Fi driver, specifically in the aggr_reset_state() function, which improperly handles a use-after-free condition due to asynchronous timer deletion. This flaw can lead to potential memory corruption and exploitation if the timer callback accesses freed memory, creating a race condition. Organizations using Linux systems with this driver should prioritize patching to mitigate risks associated with this vulnerability.

CVE
CVE-2026-68198
Severity
HIGH
CVSS
8.8
EPSS
0.27%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: ath6kl: fix use-after-free in aggr_reset_state() The aggr_reset_state() function uses timer_delete() (non-synchronous) for the aggregation timer before proceeding to delete TID state and before the structure is freed by callers like aggr_module_destroy(). If the timer callback (aggr_timeout) is executing when aggr_reset_state() is called, the callback will continue to access aggr_conn fields like rx_tid[] and stat[] which may be freed immediately after by kfree(aggr_info->aggr_conn) in aggr_module_destroy(). Additionally, the timer callback can re-arm itself via mod_timer() while aggr_reset_state() is running, creating a more complex race condition. Use timer_delete_sync() instead to ensure any running timer callback has completed before returning.