CVE-2020-36843:
Ed25519 Signature Malleability in ed25519-java Due to Missing Scalar Range Check
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.00652%
CWE
Published
3/13/2025
Updated
3/13/2025
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
net.i2p.crypto:eddsa | maven | <= 0.3.0 | |
net.i2p:i2p | maven | < 0.9.39 | 0.9.39 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing scalar range validation during signature verification. The commit d7d1dcb
adds a critical check comparing 'S' against EdDSABlinding.ORDER
in EdDSAEngine.java
's verification logic. The pre-patch code in x_engineVerify()
processed the 'S' value without this validation, enabling signature malleability. The CVE description and academic paper both confirm this missing check as the root cause. The high confidence comes from direct evidence in the patch diff and vulnerability descriptions linking the missing check to SUF-CMA
violations.