Posts: 317
Threads: 122
Joined: Jul 2023
Hi,
Just question. What is mean exactly that an hash is: "missing SALT"? For example, type hash and missing SALT.
Thanks for reading.
Posts: 19,947
Threads: 357
Joined: Jun 2023
(Aug 19, 2023, 05:54 PM)teddae Wrote: Hi,
Just question. What is mean exactly that an hash is: "missing SALT"? For example, type hash and missing SALT.
Thanks for reading. This means that the password salt will be removed.
Example
MD5 (normal without salt)
8743b52063cd84097a65d1633f5c74f5
and
md5($pass.$salt)
01dfae6e5d4d90d9892622325959afbe:7050461
We see that the second hash after the hash has a salt.It is she who is missing from you.The salt can be static (one for all passwords) or different for each.In any case, if you don't have salt in the hash file, then you just have to pick up the salt by brute force.
Posts: 317
Threads: 122
Joined: Jul 2023
Hi,
Thanks for answer. Check this that say and will make feedback.
Posts: 241
Threads: 20
Joined: Jun 2023
What database are you taking the hashes from? Maybe I can find the salt for you.
Formerly @God, but that username was stolen from me.
Posts: 321
Threads: 6
Joined: Aug 2023
Posts: 317
Threads: 122
Joined: Jul 2023
At moment, only discover this.
According to the tunnelsup dot com hash-analyzer website, the analyzed hashes are of type SHA1 (or SHA 128) without salt (not found). On the other hand, the document with the hashes states that the hashes contain salt (they do not say which one).
In any case, in all the online hashes services, it was impossible for them to solve the hash.
Posts: 52
Threads: 8
Joined: Jul 2023
mmm when a hash is said to be "missing SALT," it means that the hash was generated without the use of a salt value. A salt is a random string of data that is added to the input of a hash function to create a unique output. What is it for?...makes it more difficult to use precomputed hash tables or rainbow tables to crack passwords. Without a salt, can use a precomputed hash table to quickly determine the original password that corresponds to a given hash value.
There is also the same definition according to wikipedia....
https://en.wikipedia.org/wiki/Salt_(cryptography)
Posts: 24
Threads: 3
Joined: Jul 2023
Adding a little bit to the conversation, a Salt is very important, but in some cases it's important to have Pepper too.
The difference between salt and pepper is that usually the salt is stored with the hash, and the pepper is stored in a different location. Which add an extra level of security if data are getting leaked, and making it more difficult to find the "salt".
https://en.wikipedia.org/wiki/Pepper_(cryptography)
Posts: 317
Threads: 122
Joined: Jul 2023
Thanks the last answer.
The theory was know, but there is no way to achieve it in practice. Thus it is difficult to contribute to the common good of the community.
Posts: 55
Threads: 6
Joined: Jul 2023
(Sep 28, 2023, 01:24 PM)teddae Wrote: At moment, only discover this.
According to the tunnelsup dot com hash-analyzer website, the analyzed hashes are of type SHA1 (or SHA 128) without salt (not found). On the other hand, the document with the hashes states that the hashes contain salt (they do not say which one).
In any case, in all the online hashes services, it was impossible for them to solve the hash.
It could be that it has a salt or shadow password (as I understand), that is why it is more complicated to decipher it, it becomes more tedious. You have to know the salt, otherwise I doubt very much that you will be able to decipher it. Maybe you can try a brute force or dictionary attack (it will take time).
|