How do I make a hash.txt?
#3
If you just want to test, you can take an example hash from:
https://hashcat.net/wiki/doku.php?id=example_hashes

Perhaps what you mean is that you have something that you want to crack, and need to have a properly formatted hash as input for Hashcat. John the ripper Jumbo package has a nice list of hash extract scripts. These scripts basically take some input and extract and properly format the hash that is printed as output. The output hash an then to be used by Hashcat as input:
https://github.com/openwall/john/tree/bl...-jumbo/run

In some cases making your own hash for testing is very straight forward as you can see from the first link of example hashes. E.g. creating an md5 hash for testing is as simple as running:
echo -n 'Password123' | md5sum
As Snoopy pointed out, the hash is simply a single hash per line in that case. In some other examples the hash is slightly more complex since it includes salt or some other extra information, but even then they often can be formatted rightly by hand or if you wish by using one of the hash extract scripts. Make sure that the output hash is always one per line.
Reply


Messages In This Thread
How do I make a hash.txt? - by ex0grxm - 01-10-2024, 03:07 AM
RE: How do I make a hash.txt? - by Snoopy - 01-10-2024, 03:08 PM
RE: How do I make a hash.txt? - by monyanus - 01-11-2024, 02:44 PM