CVE-2026-46307
📛 CVE Title
wifi: ath5k: do not access array OOB
Description
In the Linux kernel, the following vulnerability has been resolved: wifi: ath5k: do not access array OOB Vincent reports: > The ath5k driver seems to do an array-index-out-of-bounds access as > shown by the UBSAN kernel message: > UBSAN: array-index-out-of-bounds in drivers/net/wireless/ath/ath5k/base.c:1741:20 > index 4 is out of range for type 'ieee80211_tx_rate [4]' > ... > Call Trace: > <TASK> > dump_stack_lvl+0x5d/0x80 > ubsan_epilogue+0x5/0x2b > __ubsan_handle_out_of_bounds.cold+0x46/0x4b > ath5k_tasklet_tx+0x4e0/0x560 [ath5k] > tasklet_action_common+0xb5/0x1c0 It is real. 'ts->ts_final_idx' can be 3 on 5212, so: info->status.rates[ts->ts_final_idx + 1].idx = -1; with the array defined as: struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; while the size is: #define IEEE80211_TX_MAX_RATES 4 is indeed bogus. Set this 'idx = -1' sentinel only if the array index is less than the array size. As mac80211 will not look at rates beyond the size (IEEE80211_TX_MAX_RATES). Note: The effect of the OOB write is negligible. It just overwrites the next member of info->status, i.e. ack_signal.
Overview
- State
- —
- Assigner (CNA)
- —
- CVSS severity
- high
- CVSS score
- 7.8 / 10
- CVSS vector
AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H- Effective score
- 7.8 / 10 HIGH source: CNA overview
- MSRC score
- 5.5 / 10 MEDIUM MS rating: Moderate
- CWE(s)
- —
- Reserved
- —
- Published
- 2026-06-09 07:00 UTC
- Last updated
- 2026-06-20 01:43 UTC
- Source
- https://www.tenable.com/cve/CVE-2026-46307
- Linked Threat
- CVE-2026-46307 — CVE-2026-46307
NVD triage scoring NVD CVE 2.0
Layer NVD adds on top of the CNA's CVE record — published / last-modified timestamps, exploitability / impact subscores, and the FIRST.org EPSS probability that this CVE will be exploited in the wild in the next 30 days.
- NVD published
- 2026-06-08 17:16:49 UTC
- NVD last modified
- 2026-07-23 08:10:00 UTC
- NVD CVSS v3.1
- 8.3 / 10 HIGH source: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
- NVD CVSS vector
CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L- Exploitability subscore
- 2.8 / 10
- Impact subscore
- 5.5 / 10
- EPSS score
- 0.0022 (probability of exploitation in next 30 days)
- EPSS percentile
- 12.70% vs all CVEs — higher = more likely to be exploited, as of 2026-08-01
NVD-assigned CWE(s):
CWE-125
(differs from the CNA list above)
NVD / KEV / EPSS data refreshed 2026-08-01 16:32 UTC. Re-run the 🛰 Backfill from NVD button above to refresh.
European Union Vulnerability Database ENISA EUVD
ENISA's official EU repository for curated vulnerability intelligence. Carries a separate identifier (EUVD-YYYY-NNNN) and frequently exposes an earlier-published description + CVSS than NVD does.
- EUVD ID
-
EUVD-2026-35172 - Assigner
- Linux
- Published
- Jun 8, 2026, 3:46:35 PM
- Updated
- Jun 14, 2026, 6:08:05 PM
- EUVD base score (CVSS 3.1)
-
8.3 / 10
CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L - EUVD-reported EPSS
- 0.2200
- Vendors
- Linux
- Products
-
Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <83226c71af53fb9b3cad40cb9a9a79f36d68c020)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <744c19e266b0d2628c5951439195dcef27eadacf)Linux (patch: 5.15.209)Linux (patch: 6.18.30)Linux (patch: 6.12.88)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <568173ad9bd0b46cc6cd937dea8791e9b5eefa57)Linux (patch: 6.6.140)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <d748603f12baff112caa3ab7d39f50100f010dbd)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <e9f1081bc775146156def0dbc821b92f35d56afb)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <d6869537013b1f21b292342752d97868b79b5934)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <9dd6aae4bc7bfa11088d928670a3315eae542769)Linux (patch: 7.0.7)Linux (patch: 0)Linux (3.0)Linux (patch: 6.1.175)Linux (patch: 5.10.258)Linux (patch: 7.1)Linux (6d7b97b23e114c8fbb825e6721164d228c1af3fc <ecb1c163166759dec004c1fdb9709b8a5992fc8e)
- Aliases
-
GHSA-qrx4-q7hg-2xx2
ENISA description: In the Linux kernel, the following vulnerability has been resolved: wifi: ath5k: do not access array OOB Vincent reports: > The ath5k driver seems to do an array-index-out-of-bounds access as > shown by the UBSAN kernel message: > UBSAN: array-index-out-of-bounds in drivers/net/wireless/ath/ath5k/base.c:1741:20 > index 4 is out of range for type 'ieee80211_tx_rate [4]' > ... > Call Trace: > <TASK> > dump_stack_lvl+0x5d/0x80 > ubsan_epilogue+0x5/0x2b > __ubsan_handle_out_of_bounds.cold+0x46/0x4b > ath5k_tasklet_tx+0x4e0/0x560 [ath5k] > tasklet_action_common+0xb5/0x1c0 It is real. 'ts->ts_final_idx' can be 3 on 5212, so: info->status.rates[ts->ts_final_idx + 1].idx = -1; with the array defined as: struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; while the size is: #define IEEE80211_TX_MAX_RATES 4 is indeed bogus. Set this 'idx = -1' sentinel only if the array index is less than the array size. As mac80211 will not look at rates beyond the size (IEEE80211_TX_MAX_RATES). Note: The effect of the OOB write is negligible. It just overwrites the next member of info->status, i.e. ack_signal.
EUVD references (8)
- https://git.kernel.org/stable/c/ecb1c163166759dec004c1fdb9709b8a5992fc8e
- https://git.kernel.org/stable/c/9dd6aae4bc7bfa11088d928670a3315eae542769
- https://git.kernel.org/stable/c/744c19e266b0d2628c5951439195dcef27eadacf
- https://git.kernel.org/stable/c/83226c71af53fb9b3cad40cb9a9a79f36d68c020
- https://git.kernel.org/stable/c/d6869537013b1f21b292342752d97868b79b5934
- https://git.kernel.org/stable/c/e9f1081bc775146156def0dbc821b92f35d56afb
- https://git.kernel.org/stable/c/568173ad9bd0b46cc6cd937dea8791e9b5eefa57
- https://git.kernel.org/stable/c/d748603f12baff112caa3ab7d39f50100f010dbd
Microsoft Security Response Center MSRC
Microsoft's vendor-authoritative record from the Security Update Guide — its own CVSS score, impact, severity rating, exploit assessment, and KB-article fixes. Refreshed 2026-07-23 03:00 UTC (source: CVRF).
- MS severity
- Moderate
- MS CVSS base score
- 5.5 / 10 (temporal 5.5)
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H - Release
- 2026-Jun
Microsoft remediations / KB articles (2)
- CBL-Mariner Releases — Vendor Fix / Security Update (fixed build 6.6.141.1-1)
- https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade — None Available / CBL-Mariner Releases
Affected products — CPE 2.3 (3) NVD
NVD's normalized CPE 2.3 matchers, used by vendor tools (vulnerability scanners, asset managers) for automated detection. Compare with the CNA's free-text "Affected products" section above.
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:*cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:*
Vendor references (0)
References embedded in the original CVE record by the assigning CNA.
None in the CVE record.
Web references (12)
DuckDuckGo results ranked by threat-intel / vendor advisory domains. Generated by the 🔎 Find references (web) button above — same flow as the Remediations search.
- None Available msrc
- MSRC update guide: CVE-2026-46307 msrc
- https://git.kernel.org/stable/c/83226c71af53fb9b3cad40cb9a9a79f36d68c020 tenable:git.kernel.org
- https://git.kernel.org/stable/c/9dd6aae4bc7bfa11088d928670a3315eae542769 tenable:git.kernel.org
- https://git.kernel.org/stable/c/d6869537013b1f21b292342752d97868b79b5934 tenable:git.kernel.org
- https://git.kernel.org/stable/c/d748603f12baff112caa3ab7d39f50100f010dbd tenable:git.kernel.org
- https://git.kernel.org/stable/c/e9f1081bc775146156def0dbc821b92f35d56afb tenable:git.kernel.org
- https://git.kernel.org/stable/c/ecb1c163166759dec004c1fdb9709b8a5992fc8e tenable:git.kernel.org
- https://nvd.nist.gov/vuln/detail/CVE-2026-46307 tenable:nvd.nist.gov
- https://git.kernel.org/stable/c/568173ad9bd0b46cc6cd937dea8791e9b5eefa57 tenable:git.kernel.org
- https://www.cve.org/CVERecord?id=CVE-2026-46307 tenable:www.cve.org
- https://git.kernel.org/stable/c/744c19e266b0d2628c5951439195dcef27eadacf tenable:git.kernel.org
NVD-tagged references (8)
Reference list NVD curates from the CNA record, vendor advisories, and third-party reports. The tag chips below are NVD's analyst-assigned categories.
- https://git.kernel.org/stable/c/568173ad9bd0b46cc6cd937dea8791e9b5eefa57 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/744c19e266b0d2628c5951439195dcef27eadacf 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/83226c71af53fb9b3cad40cb9a9a79f36d68c020 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/9dd6aae4bc7bfa11088d928670a3315eae542769 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/d6869537013b1f21b292342752d97868b79b5934 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/d748603f12baff112caa3ab7d39f50100f010dbd 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/e9f1081bc775146156def0dbc821b92f35d56afb 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
- https://git.kernel.org/stable/c/ecb1c163166759dec004c1fdb9709b8a5992fc8e 416baaa9-dc9f-4396-8d5f-8c081fb06d67 Patch
Remediations (10)
Remediations are stored against the linked Threat row; the list below is deduplicated across both pages.
-
web:blog.qualys.com
May 2026's Patch Tuesday arrives with Microsoft addressing a fresh set of vulnerabilities across its ecosystem, reinforcing the ongoing need for timely patching in an increasingly threat-heavy…
2026-06-19 02:38 UTC -
web:learn.microsoft.com
Windows 11, version 25H2 is now available for all eligible devices. Devices running Home and Pro editions of Windows 11 that are not managed by IT departments will receive the update to Windows 11, version 25H2 through the machine learning-based intelligent rollout.
2026-06-19 02:38 UTC -
web:nvd.nist.gov
An official website of the United States government Here's how you know
2026-06-19 02:38 UTC -
web:portal.msrc.microsoft.com
The Security Update Guide provides information on the latest Microsoft security updates, helping users understand and address potential vulnerabilities effectively.
2026-06-19 02:38 UTC -
web:www.cisa.gov
BOD 26-04 further establishes basic expectations for when agencies must check whether threat actors compromised the system before the patch was applied. While BOD 26-04 applies only to FCEB agencies, CISA encourages all organizations to adopt risk-based vulnerability management and prioritize remediation of KEV catalog vulnerabilities.
2026-06-19 02:38 UTC -
web:www.crowdstrike.com
Microsoft has released security updates for 130 vulnerabilities, including 30 critical, in its May 2026 Patch Tuesday rollout.
2026-06-19 02:38 UTC -
web:www.malwarebytes.com
Microsoft says it's working on a fix for an unpatched Defender vulnerability that can give attackers the highest level of access on Windows.
2026-06-19 02:38 UTC -
web:www.oracle.com
This Critical Security Patch Update contains 35 new security patches across the product families listed below. Please note that an MOS note summarizing the content of this Critical Security Patch Update and other Oracle Software Security Assurance activities is located at May 2026 Critical Security Patch Update: Executive Summary and Analysis.
2026-06-19 02:38 UTC -
web:www.rapid7.com
Microsoft is publishing 200 vulnerabilities on June 2026 Patch Tuesday, including an HTTP/2 denial of service vulnerability and an elevation of privilege vulnerability in PowerToys.
2026-06-19 02:38 UTC -
web:zecurit.com
Get the complete breakdown of Microsoft's June 2026 Patch Tuesday. We analyze the latest security updates and all critical CVEs .
2026-06-19 02:38 UTC
AI Forensic Analysis
Only Available for Registered Users. Sign in to view.