We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduction
NebulaGraph (as of v3.6.0) uses MD5 for password hashing
nebula/src/graph/executor/admin/CreateUserExecutor.cpp
Line 24 in de9b3ed
Contents
Use a cryptographically secure hashing function, such as bcrypt
Related work
The text was updated successfully, but these errors were encountered:
Welcome @allanbenW to the community and thanks for pointing this out!
@dutor @MuYiYong
Sorry, something went wrong.
Hi team. Just wondering if there's any plan addressing this security concern soon? maybe next (few) minor/major release?
bump again
apologize for ping, just trying to get some attention @wey-gu @dutor
this is a security concern flagged by our security team, and it's blocking our adoption of this otherwise amazing solution
No branches or pull requests
Introduction
NebulaGraph (as of v3.6.0) uses MD5 for password hashing
nebula/src/graph/executor/admin/CreateUserExecutor.cpp
Line 24 in de9b3ed
However, MD5 is known to have a broken collision resistance and is vulnerable to collision attacks. There are also published theoretical attacks against its preimage resistance.
Contents
Use a cryptographically secure hashing function, such as bcrypt
Related work
The text was updated successfully, but these errors were encountered: