Need help to crack salted hash
#1
Question 
Hello everyone!
Can somebody, please, give me instruction on how to crack a salted hash?
I have a salted hash, a .txt file with 5000 potential answers to the hash, and an another .txt file with 1000 possible salts.
Reply
#2
What type of hash?
I would use combinatorX to combine the hash and the salt into one file, containing salt:hash and then attack that with your wordlist.
Reply
#3
(03-09-2025, 05:24 PM)b8vr Wrote: What type of hash?
I would use combinatorX to combine the hash and the salt into one file, containing salt:hash and then attack that with your wordlist.
It is SHA256
Reply
#4
In that case you could use hashcat mode 1410 or 1420 depending on how you combine. One is hash: salt the other salt:hash
Reply