[Solved] Can a password be cracked with this information?


Hashing is a one way process and Encryption is 2 way process.
What I mean by this is , when we use a plain text and encrypt it to get a cipher text, we can again get the plain text from the cipher text.
but that is not the case for hashing. You can never get the plain text from the hashed value.
Yes, there have been hacks before where the hashed values are guessed correctly, but that’s just a lucky guess.
To know the original value from the hashed text, you would have to know

  1. the hashing algorithm being used.
  2. The Salt original text
  3. Whether the salt text was encrypted before hashing or not.

So lot of question needs to be answered before knowing the original value.
In case they use MD5 hashing algorithm, then there is a small chance that you’ll be able to get the original value through bruteforce, but the salt adds an extra layer of cracking to do.

To know more, please refer the below link to know about hashing

Information about cracking hashes

2

solved Can a password be cracked with this information?