Umbra Wiki weakness weakness/CWE-1241
Back to wiki

CWE-1241 — Use of Predictable Algorithm in Random Number Generator

provenance: imported · CWE: CWE-1241

CWE-1241: Use of Predictable Algorithm in Random Number Generator

MITRE CWE weakness

Kind Weakness
Abstraction Base
Status Draft
Likelihood of exploit

Description

The device uses an algorithm that is predictable and generates a pseudo-random number.

Pseudo-random number generator algorithms are predictable because their registers have a finite number of possible states, which eventually lead to repeating patterns. As a result, pseudo-random number generators (PRNGs) can compromise their randomness or expose their internal state to various attacks, such as reverse engineering or tampering.

Common consequences

  • Confidentiality: Read Application Data

Mitigations

Architecture and Design — It is highly recommended to use a true random number generator (TRNG) to ensure the security of encryption schemes. Hardware-based TRNGs generate unpredictable, unbiased, and independent random numbers because they employ physical phenomena, e.g., electrical noise, as sources to generate random numbers.

Implementation — It is highly recommended to use a true random number generator (TRNG) to ensure the security of encryption schemes. Hardware-based TRNGs generate unpredictable, unbiased, and independent random numbers because they employ physical phenomena, e.g., electrical noise, as sources to generate random numbers.

References

  • CWE page: https://cwe.mitre.org/data/definitions/1241.html
  • CWE list: https://cwe.mitre.org/data/index.html