Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-h8h6-7752-g28c

Опубликовано: 03 мар. 2025
Источник: github
Github: Прошло ревью
CVSS3: 4.8

Описание

Manifest Uses a One-Way Hash without a Salt

Summary

Manifest employs a weak password hashing implementation that uses SHA3 without a salt. This exposes user passwords to a higher risk of being cracked if an attacker gains access to the database. Without the use of a salt, identical passwords across multiple users will result in the same hash, making it easier for attackers to identify and exploit patterns, thereby accelerating the cracking process.

Details

Analysis of the application source code reveals that user passwords are hashed using the SHA3 algorithm without implementing a unique salt per user.

const newUser: AuthenticableEntity = entityRepository.create(signupUserDto) newUser.password = SHA3(newUser.password).toString()

This approach results in deterministic password hashes, which can be identified by comparing the hashes for users with matching credentials.

password without salt

PoC

  1. Create two users with the same password (it could be admin or any other authenticatable entity)
  2. Extract their password hashes from the database
  3. Verify that both hashes are identical, confirming the absence of unique salts

Impact

This is a cryptographic weakness vulnerability that affects all users of the system. The lack of a unique salt when hashing passwords reduces protection against database breaches, as attackers who gain access to the database can more efficiently crack user passwords. Since identical passwords result in identical hashes, attackers can use precomputed hash databases (e.g., Rainbow Tables) or offline brute-force attacks to reverse the hashes and obtain user passwords, increasing the risk of compromised accounts and further system exploitation.

Пакеты

Наименование

manifest

npm
Затронутые версииВерсия исправления

< 4.9.2

4.9.2

EPSS

Процентиль: 19%
0.00061
Низкий

4.8 Medium

CVSS3

Дефекты

CWE-759

Связанные уязвимости

CVSS3: 4.8
nvd
11 месяцев назад

Manifest offers users a one-file micro back end. Prior to version 4.9.2, Manifest employs a weak password hashing implementation that uses SHA3 without a salt. This exposes user passwords to a higher risk of being cracked if an attacker gains access to the database. Without the use of a salt, identical passwords across multiple users will result in the same hash, making it easier for attackers to identify and exploit patterns, thereby accelerating the cracking process. Version 4.9.2 fixes the issue.

EPSS

Процентиль: 19%
0.00061
Низкий

4.8 Medium

CVSS3

Дефекты

CWE-759