Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

In the screenshot there is a browser cookie with an encrypted seed hex and a salt hex. It is possible to find out the seed from this information?

Why? Why not?

Thanks!

Screenshot of password hash

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
852 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...