Skip to content
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

Closed
Reelix opened this issue Oct 26, 2019 · 3 comments
Closed

Operation request: Add Bcrypt hash detection to "Analyse hash" #704

Reelix opened this issue Oct 26, 2019 · 3 comments

Comments

@Reelix
Copy link

Reelix commented Oct 26, 2019

As it stands, the "Analyse hash" recipe cannot identify Bcrypt hashes generated from the Bcrypt recipe.

@sharontlin
Copy link

I'd be happy to resolve this issue! I can issue a pull request.

@Sn0wCrack
Copy link

Sn0wCrack commented Nov 7, 2019

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:
https://en.wikipedia.org/wiki/Crypt_(C)#Key_derivation_functions_supported_by_crypt

The general format is as follows: $<id>[$<param>=<value>(,<param>=<value>)*][$<salt>[$<hash>]]

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.

@a3957273
Copy link
Member

a3957273 commented Feb 4, 2024

Fixed by #1554

@a3957273 a3957273 closed this as completed Feb 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants