The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG) vulnerabilities in an interactive lesson.
Start learningUpgrade @dfinity/auth-client
to version 1.0.1 or higher.
@dfinity/auth-client is a JavaScript and TypeScript library to provide a simple integration with an IC Internet Identity
Affected versions of this package are vulnerable to Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG) due to the use of an insecure seed for key pair generation in the Ed25519KeyIdentity.generate
function. An attacker can compromise the private key of an identity, potentially leading to loss of funds associated with the principal on ledgers or loss of access to a canister where this principal is the controller.
Note:
This is only exploitable if the optional parameter to provide a 32 byte seed value is not used, leading to the generation of a key pair with an insecure seed.
This vulnerability can be mitigated by invoking the function as Ed25519KeyIdentity.generate(null)
to fix the broken conditional evaluation and force the function to generate a securely random seed, or by passing a securely generated randomness as a seed to Ed25519KeyIdentity.generate
to force the library to use it as the seed for key pair generation.