![]() |
How to find a salt for a hash if you have the plain text - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: How to find a salt for a hash if you have the plain text (/thread-6516.html) Pages:
1
2
|
How to find a salt for a hash if you have the plain text - Hxsh - 04-30-2017 Alright so I have a hash and the plaintext password. How would I go about finding the salt associated with the hash that would equal the plaintext password. Is there a way to do this in hashcat? RE: How to find a salt for a hash if you have the plain text - devilsadvocate - 05-01-2017 (04-30-2017, 11:32 PM)Hxsh Wrote: Alright so I have a hash and the plaintext password. How would I go about finding the salt associated with the hash that would equal the plaintext password. Being able to brute force salts isn't a feature of hashcat. But there is nothing stopping you from creating the salts yourself and including them along with the hash in a hash file. You can create the file with a static hash value and try different salts. Make the hash file look like: Code: hash:salt1 You get the idea. RE: How to find a salt for a hash if you have the plain text - Hxsh - 05-01-2017 (05-01-2017, 12:59 AM)devilsadvocate Wrote:wouldn't that take up alot of space?(04-30-2017, 11:32 PM)Hxsh Wrote: Alright so I have a hash and the plaintext password. How would I go about finding the salt associated with the hash that would equal the plaintext password. RE: How to find a salt for a hash if you have the plain text - devilsadvocate - 05-01-2017 (05-01-2017, 01:07 AM)Hxsh Wrote:(05-01-2017, 12:59 AM)devilsadvocate Wrote:wouldn't that take up alot of space?(04-30-2017, 11:32 PM)Hxsh Wrote: Alright so I have a hash and the plaintext password. How would I go about finding the salt associated with the hash that would equal the plaintext password. That depends. How much is a lot? How many salts do you want to try? The problem you will have with trying so many salts with a static hash is actually memory, not hard drive storage. You can only try so many hashes at a time due to memory limitations of whatever GPU you have. RE: How to find a salt for a hash if you have the plain text - Hxsh - 05-01-2017 (05-01-2017, 01:13 AM)devilsadvocate Wrote:Well how could I go about getting all the different hash versions of this 1 plaintext password. How would I do that in hashcat?(05-01-2017, 01:07 AM)Hxsh Wrote:(05-01-2017, 12:59 AM)devilsadvocate Wrote:wouldn't that take up alot of space?(04-30-2017, 11:32 PM)Hxsh Wrote: Alright so I have a hash and the plaintext password. How would I go about finding the salt associated with the hash that would equal the plaintext password. like if I have "password" and I wanted to password in 4500 so I can see this hash 353e8061f2befecb6818ba0c034c632fb0bcae1b as "password. 4500 is double SHA1 that hash is password hashed with double SHA1 Simplified question. How do you physically hash a plaintext password in hashcat so I can see the hashed ver not the plaintext ver. RE: How to find a salt for a hash if you have the plain text - Hxsh - 05-01-2017 (05-01-2017, 02:33 AM)Hxsh Wrote:(05-01-2017, 01:13 AM)devilsadvocate Wrote:Well how could I go about getting all the different hash versions of this 1 plaintext password. How would I do that in hashcat?(05-01-2017, 01:07 AM)Hxsh Wrote:(05-01-2017, 12:59 AM)devilsadvocate Wrote:wouldn't that take up alot of space?(04-30-2017, 11:32 PM)Hxsh Wrote: Alright so I have a hash and the plaintext password. How would I go about finding the salt associated with the hash that would equal the plaintext password. Im just going to post a new thread. RE: How to find a salt for a hash if you have the plain text - undeath - 05-01-2017 This thread needs more pointless quotes. RE: How to find a salt for a hash if you have the plain text - epixoip - 05-01-2017 (05-01-2017, 05:31 PM)undeath Wrote: This thread needs more pointless quotes. I agree. RE: How to find a salt for a hash if you have the plain text - nullcell - 05-02-2017 Purely for fun here's one way to do it, caution untested for the most part, still needs OpenCL support and an actual CLI interface, but it gives one way to do this that took me all of 5 minutes to write. https://github.com/TheRealNullCell/SaltCracker/tree/master RE: How to find a salt for a hash if you have the plain text - epixoip - 05-02-2017 Erm, guys, this isn't hard. If the algorithm is e.g. md5(p.s) and you know p but need to find s, just switch them: use p as s and run it as md5(s.p). Same goes with hmac, just reverse k & d. |