Description
sm-crypto provides JavaScript implementations of the Chinese cryptographic algorithms SM2, SM3, and SM4. Prior to 0.5.0, the default no-argument sm2.generateKeyPairHex() path in Node.js uses the module-wide SecureRandom instance in src/sm2/utils.js, supplied by jsbn@1.1.0, which seeds an ARC4 stream from Math.random() and new Date().getTime() because window.crypto.getRandomValues is unavailable even though globalThis.crypto exists. An attacker who can observe the process's Math.random() outputs and estimate the key-generation time can reconstruct the seed, recover generated SM2 private keys, and predict signing ephemeral scalars used to forge signatures. This issue is fixed in version 0.5.0.
Published: 2026-08-13
Score: 9.1 Critical
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

sm-crypto’s default SM2 key generation path in Node.js uses a predictable random number generator that draws from Math.random() and the current time. This deterministic seed allows an attacker who can observe the process’s Math.random() outputs and estimate the generation time to reconstruct the seed, recover the SM2 private key and predict the signing scalars, enabling forged signatures. The vulnerability leads to full private key exposure and the ability to impersonate legitimate signatures.

Affected Systems

All Node.js installations that employ JuneAndGreen’s sm-crypto library before version 0.5.0 are affected. Projects that call sm2.generateKeyPairHex() without arguments rely on the insecure seed source and therefore expose their keys. The issue is absent in sm-crypto 0.5.0 and later, where a secure random source is used.

Risk and Exploitability

The CVSS score of 9.1 indicates critical severity, and while EPSS is not available, the lack of a public exploit and the non‑KEV status suggest the risk comes from the ease of local exploitation rather than widespread attacks. An attacker needs the ability to monitor the target’s Math.random() output or to predict the time window of key generation; this is feasible in compromised or shared hosting environments. Consequently, the likelihood of exploitation is moderate, but the potential impact is severe due to key compromise and signature forgery.

Generated by OpenCVE AI on August 13, 2026 at 18:36 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade sm-crypto to 0.5.0 or later to use a cryptographically secure RNG
  • If an upgrade is not immediately possible, supply a secure random byte generator to sm2.generateKeyPairHex() or disable the default key generation path
  • Apply the fixed commit from the GitHub repository to replace the vulnerable src/sm2/utils.js implementation with a secure implementation

Generated by OpenCVE AI on August 13, 2026 at 18:36 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Github GHSA Github GHSA GHSA-vh45-f885-3848 sm-crypto: Predictable SM2 key generation in Node.js: default RNG uses Math.random + wall clock
History

Thu, 13 Aug 2026 18:45:00 +0000

Type Values Removed Values Added
First Time appeared Juneandgreen
Juneandgreen sm-crypto
Vendors & Products Juneandgreen
Juneandgreen sm-crypto

Thu, 13 Aug 2026 17:45:00 +0000

Type Values Removed Values Added
Description sm-crypto provides JavaScript implementations of the Chinese cryptographic algorithms SM2, SM3, and SM4. Prior to 0.5.0, the default no-argument sm2.generateKeyPairHex() path in Node.js uses the module-wide SecureRandom instance in src/sm2/utils.js, supplied by jsbn@1.1.0, which seeds an ARC4 stream from Math.random() and new Date().getTime() because window.crypto.getRandomValues is unavailable even though globalThis.crypto exists. An attacker who can observe the process's Math.random() outputs and estimate the key-generation time can reconstruct the seed, recover generated SM2 private keys, and predict signing ephemeral scalars used to forge signatures. This issue is fixed in version 0.5.0.
Title sm-crypto: Predictable SM2 key generation in Node.js: default RNG uses Math.random + wall clock
Weaknesses CWE-338
References
Metrics cvssV3_1

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


Subscriptions

Juneandgreen Sm-crypto
cve-icon MITRE

Status: PUBLISHED

Assigner: GitHub_M

Published:

Updated: 2026-08-13T17:40:54.016Z

Reserved: 2026-08-12T20:53:46.381Z

Link: CVE-2026-73567

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-13T18:18:19.387

Modified: 2026-08-13T18:18:19.387

Link: CVE-2026-73567

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T18:30:16Z

Weaknesses
  • CWE-338

    Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG)