Need assistance with command parameters. - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Need assistance with command parameters. (/thread-9415.html) |
Need assistance with command parameters. - OldNUgly - 07-27-2020 Howdy, New to hashcat. I've got a Rar 4.x folder that I know has a password three or four words long that is at least 12 characters total. All words start with the letter t or T. It also may or may not have a space or _ between the words. No numbers in the password at all. I need assistance with what command parameters to add to give me the best chance of success. Thank you. RE: Need assistance with command parameters. - Mem5 - 07-28-2020 Words from a language dictionary? If yes, I would: 1) extract all words starting from 't' or 'T' => use grep Code: # sample wordlist t.dic Code: # example with 2-words separated with '_' Code: # example with 3-words separated with '_' 3) start hashcat against this new wordlist, straight attack. RE: Need assistance with command parameters. - OldNUgly - 07-28-2020 Thanks for the reply and the assistance, greatly appreciated. I'll see if I can sort out your examples and put it to practical use. One question, Are the words combined right inside of Hashcat via this part of the command (--stdout t.dic t.dic | tee t2.dic) as I think. For example if I wanted Hashcat to try with four words than I'd use --stdout t.dic t.dic t.dic or am I way off base with that thought? By the way yes the words in the password are more than likely common English words. |