Dozzle uses unsafe hash for passwords
Description
Published by the National Vulnerability Database
Sep 27, 2024
Published to the GitHub Advisory Database
Oct 9, 2024
Reviewed
Oct 9, 2024
Last updated
Oct 9, 2024
Summary
The app uses sha-256 as the hash for passwords. The app should switch to bcrypt.
Details
SHA-256 is a message digest hash, and not classified as secure for password hashing. Message digest hashes are designed to be fast, while password hashing mechanisms are designed with certain cryptographic properties (e.g. slow) to protect against vulnerabilities. Refer to the links below for more information:
PoC
N/A
Impact
It leaves users susceptible to rainbow table attacks
References