Description
In the Linux kernel, the following vulnerability has been resolved:

crypto: ecc - Fix carry overflow in vli multiplication

The carry flag calculation fails when r01.m_high is saturated
(0xFFFFFFFFFFFFFFFF) and addition of lower bits overflows.

The condition (r01.m_high < product.m_high) doesn't handle the case
where r01.m_high == product.m_high and an additional carry exists
from lower-bit overflow.

When commit 3c4b23901a0c ("crypto: ecdh - Add ECDH software support")
introduced crypto/ecc.c, it split the muladd() function in the
micro-ecc library into separate mul_64_64() and add_128_128() helpers.
It seems the check got lost in translation.

Add proper handling for this boundary by accounting for the carry
from the lower addition.
Published: 2026-07-25
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability arises in the Linux kernel’s ECC implementation, where an incorrect carry handling in the vli multiplication routine can cause the multiplication result to be wrong when the high 64‑bit part saturates and the lower part overflows. This is a CWE‑190 integer overflow weakness that may lead to malformed ECC keys or signatures, weakening the integrity and confidentiality guarantees of systems that rely on these cryptographic primitives.

Affected Systems

All Linux kernel versions that include the crypto/ecc.c code before the patch that introduces proper carry handling are potentially affected. The vendor is Linux and the product is the Linux kernel, as identified by the cpe string. No specific version list is supplied in the advisory, so any kernel that uses the unpatched ECC routine is at risk.

Risk and Exploitability

The CVSS score of 8.8 indicates a high severity impact. The EPSS score of less than 1% suggests a very low probability of exploitation, and the vulnerability is not listed in the CISA KEV catalog. Exploitation would require privileged or kernel‑level access, and is likely to be limited to local attackers or attackers who can influence kernel space or an ECC‑dependent application. The likely attack vector is inferred to be a local privilege escalation or compromise of an ECC‑dependent application; no public exploit is documented.

Generated by OpenCVE AI on August 4, 2026 at 14:44 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Install the kernel update that contains the commit fixing the carry overflow in the ECC multiplication routine.
  • Reboot the system to load the updated kernel and ensure that ECC operations use the corrected code.
  • Until the kernel patch is applied, consider disabling ECC‑based algorithms in applications that depend on the kernel’s ECC implementation, such as configuring SSH to avoid ECDH or OpenSSL to prefer RSA.

Generated by OpenCVE AI on August 4, 2026 at 14:44 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4717-1 linux security update
Debian DLA Debian DLA DLA-4720-1 linux security update
Debian DLA Debian DLA DLA-4723-1 linux-6.1 security update
Debian DLA Debian DLA DLA-4724-1 linux-6.12 new package
History

Thu, 30 Jul 2026 12:15:00 +0000


Thu, 30 Jul 2026 04:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-190

Mon, 27 Jul 2026 05:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}


Sat, 25 Jul 2026 09:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: crypto: ecc - Fix carry overflow in vli multiplication The carry flag calculation fails when r01.m_high is saturated (0xFFFFFFFFFFFFFFFF) and addition of lower bits overflows. The condition (r01.m_high < product.m_high) doesn't handle the case where r01.m_high == product.m_high and an additional carry exists from lower-bit overflow. When commit 3c4b23901a0c ("crypto: ecdh - Add ECDH software support") introduced crypto/ecc.c, it split the muladd() function in the micro-ecc library into separate mul_64_64() and add_128_128() helpers. It seems the check got lost in translation. Add proper handling for this boundary by accounting for the carry from the lower addition.
Title crypto: ecc - Fix carry overflow in vli multiplication
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-05T12:40:52.519Z

Reserved: 2026-07-19T15:36:31.779Z

Link: CVE-2026-64313

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Awaiting Analysis

Published: 2026-07-25T10:17:12.517

Modified: 2026-08-11T15:00:57.447

Link: CVE-2026-64313

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-07-25T00:00:00Z

Links: CVE-2026-64313 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-04T14:45:03Z

Weaknesses
  • CWE-190

    Integer Overflow or Wraparound