05-01-2017, 01:13 AM
(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.
Is there a way to do this in hashcat?
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
hash:salt2
hash:salt3
You get the idea.
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.