03-11-2022, 03:30 PM
(This post was last modified: 03-11-2022, 03:32 PM by monyanus.
Edit Reason: textual fixes
)
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.
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.