Usage of weak hashing library (MD5)
Overview
Description
Remediation Guidelines
const crypto = require("crypto"); const key = "secret key"; const hash = crypto.createHmac("sha256", key).update(user.password).digest('hex');
References
Configuration
PreviousUsage of weak encryption algorithm (RC4)NextUsage of weak hashing library on a password (Argon2)
Last updated