-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
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
Operation request: Add Bcrypt hash detection to "Analyse hash" #704
Comments
I'd be happy to resolve this issue! I can issue a pull request. |
Since bcrypt shares a common format you could potentially break this out into supporting any of the hash functions that use the modular crypt format as well: The general format is as follows: The above doesn't list it but argon2 also uses the modular crypt format, and you could probably also parse the additional parameters that are contained within the format as well. |
Fixed by #1554 |
As it stands, the "Analyse hash" recipe cannot identify Bcrypt hashes generated from the Bcrypt recipe.
The text was updated successfully, but these errors were encountered: