Cyber Resilience

CVE-2025-71143

Linux Kernel 6.6.1 – 6.6.120

Published
14 January 2026
Modified
25 March 2026
Patch / advisory
CVSS Score v3.1 7.8
Click a component to see what it means
Raw vectorCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0012 2th percentile
Risk Priority 54 floored blend · peak EPSS

CVSS and EPSS are reproduced from their sources (NVD, FIRST EPSS). Risk Priority is our own derived reading, not an NVD score.

Summary

CVE-2025-71143 is a high-severity Improper Validation of Array Index (CWE-129) vulnerability in Linux Linux Kernel. Its CVSS base score is 7.8 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked at the 2th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

CVE-2025-71143 is an array-index-out-of-bounds vulnerability in the Linux kernel's Samsung Exynos clock output driver, specifically in the exynos_clkout_probe() function within drivers/clk/samsung/clk-exynos-clkout.c. The issue arises because the .num field in struct clk_hw_onecell_data is assigned after the .hws[] array has been accessed, leading to a UBSAN_BOUNDS warning on index 0 access when the array count is still zero. This stems from a prior commit annotating .hws with __counted_by, which enforces bounds checking. The vulnerability is classified under CWE-129 (Improper Validation of Array Index) with a CVSS v3.1 base score of 7.8.

A local attacker with low privileges (PR:L) can exploit this vulnerability with low attack complexity (AC:L) and no user interaction (UI:N), in a local attack vector (AV:L) with unchanged scope (S:U). Successful exploitation could result in high impacts on confidentiality, integrity, and availability (C:H/I:H/A:H), potentially allowing arbitrary code execution or system compromise within the kernel context where the driver is loaded.

Mitigation involves applying the upstream kernel patches referenced in the stable git commits, such as a317f63255ebc3dac378c79c5bff4f8d0561c290, cf33f0b7df13685234ccea7be7bfe316b60db4db, eb1f3a6ab3efee2b52361879cdc2dc6b11f499c0, and fbf57f5e453dadadb3d29b2d1dbe067e3dc4e236. These patches reorder the initialization to assign .num before any .hws[] access, resolving the bounds violation. Security practitioners should update affected Linux kernels, particularly those using Samsung Exynos hardware, to the patched versions.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

In the Linux kernel, the following vulnerability has been resolved: clk: samsung: exynos-clkout: Assign .num before accessing .hws Commit f316cdff8d67 ("clk: Annotate struct clk_hw_onecell_data with __counted_by") annotated the hws member of 'struct clk_hw_onecell_data' with __counted_by, which informs the bounds sanitizer…

more

(UBSAN_BOUNDS) about the number of elements in .hws[], so that it can warn when .hws[] is accessed out of bounds. As noted in that change, the __counted_by member must be initialized with the number of elements before the first array access happens, otherwise there will be a warning from each access prior to the initialization because the number of elements is zero. This occurs in exynos_clkout_probe() due to .num being assigned after .hws[] has been accessed: UBSAN: array-index-out-of-bounds in drivers/clk/samsung/clk-exynos-clkout.c:178:18 index 0 is out of range for type 'clk_hw *[*]' Move the .num initialization to before the first access of .hws[], clearing up the warning.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1068 Exploitation for Privilege Escalation Privilege Escalation
Adversaries may exploit software vulnerabilities in an attempt to elevate privileges.
T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1203 Exploitation for Client Execution Execution
Adversaries may exploit software vulnerabilities in client applications to execute code.
T1210 Exploitation of Remote Services Lateral Movement
Adversaries may exploit remote services to gain unauthorized access to internal systems once inside of a network.
T1211 Exploitation for Stealth Stealth
Adversaries may exploit vulnerabilities to evade detection by hiding activity, suppressing logging, or operating within trusted or unmonitored components.
T1212 Exploitation for Credential Access Credential Access
Adversaries may exploit software vulnerabilities in an attempt to collect credentials.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2024-38631Same product: Linux Linux Kernel
CVE-2024-26971Same product: Linux Linux Kernel
CVE-2023-52807Same product: Linux Linux Kernel
CVE-2025-71203Same product: Linux Linux Kernel
CVE-2026-31729Same product: Linux Linux Kernel
CVE-2025-38013Same product: Linux Linux Kernel
CVE-2023-52799Same product: Linux Linux Kernel
CVE-2024-42088Same product: Linux Linux Kernel
CVE-2024-38542Same product: Linux Linux Kernel
CVE-2025-21692Same product: Linux Linux Kernel

Affected Assets

linux
linux kernel
6.19, 6.6 · 6.6.1 — 6.6.120 · 6.7 — 6.12.64 · 6.13 — 6.18.4

Mitigating Controls

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly require input validation and bounds checking that prevent improper array indexing.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

finds

Security testing in development can detect out-of-bounds array access but does not prevent the weakness by itself.

prevents

Secure development lifecycle mandates input validation and bounds checking that directly prevents improper array indexing.

prevents

Application security requirements include validation of untrusted input used for indexing or addressing memory structures.

prevents

Secure architecture principles encourage defensive coding patterns that reduce index-related vulnerabilities.

prevents

Secure coding standards explicitly require bounds checking and validation of array indices derived from untrusted data.

References