Need help using Hashcat
#3
I am not gone spoon feed the answer, but these are the general steps or workflow that I would use

0) Extract the hash
https://hashcat.net/wiki/doku.php?id=fre..._documents

1) Get an English Dictionary, assuming it is english, or use your own dictionary:
https://github.com/dwyl/english-words/

2) Search 'how to filter words on length using SED":
https://askubuntu.com/questions/649820/f...d-and-grep

3) What you describe would best done using hybrid attacks to generate the word-digit combinations
Hence, you have to break it down, first use a hybrid attack for a [d] [word], [dd] [word] [word][d] [word][dd]
Read here more about hybrid attacks, output the passwords with the option --stdout:
https://hashcat.net/wiki/doku.php?id=hybrid_attack
You will end up with a lot text files for each option.

4) Combine the files, into all_words.txt
cat word.txt      > into all_words.txt
cat word-d.txt   > into all_words.txt
cat word-dd.txt > into all_words.txt
cat d-word.txt   >into all_words.txt
cat dd-word.txt >into all_words.txt

5) Use a combinator attack, basically use the word list twise
./hashcat64.bin -m 1 -a 1 hash.txt all_words.txt all_words.txt -w3

Good luck, there are different ways to do it but this should help get you started.
Reply


Messages In This Thread
Need help using Hashcat - by Dametceci - 02-10-2022, 12:03 AM
RE: Need help using Hashcat - by vreynolds - 03-11-2022, 09:48 AM
RE: Need help using Hashcat - by vreynolds - 05-30-2022, 03:56 AM
RE: Need help using Hashcat - by monyanus - 03-11-2022, 03:30 PM