Know the password format, how to configure the rules? - 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: Know the password format, how to configure the rules? (/thread-10071.html) |
Know the password format, how to configure the rules? - 3nt3mp - 05-05-2021 Hi, For the hashmode 10700, I have a password format of [english word][number 1-100][english word][number 1-100]. Wanted to know how to configure this. Thank you for the help. RE: Know the password format, how to configure the rules? - 0x00123 - 05-05-2021 Code: git clone https://github.com/hashcat/hashcat-utils.git RE: Know the password format, how to configure the rules? - Snoopy - 05-06-2021 depending on how big the first comb1.txt is, you can skip the second processing with combinator and leave it straight to hasccat to combine the list with itself https://hashcat.net/wiki/doku.php?id=combinator_attack just specify the comb1.txt twice hashcat -m 0 -a 1 hash.txt comb1.txt comb1.txt RE: Know the password format, how to configure the rules? - jimby - 05-18-2021 (05-05-2021, 07:46 PM)3nt3mp Wrote: Hi, comboleetor.pl can do what you want. https://jimby.name/techbits/recent/comboleetor/ Put your words in 'blocks.txt'. Put the following in 'numbers.txt' %d 1-100 This will generate numbers as 1 2 3 . . . 97 98 99 100 in the numbers hash. If you want zero filled use this in numbers.txt %03.3d 1-100 Then run as follows: echo 'BNBN' | perl comboleetor.pl 2> /dev/null Note that this can generate a lot of output. HTH I got error in Hashcat - tai87 - 12-19-2021 I got error in Hashcat help : You have enabled --force to bypass dangerous warnings and errors! This can hide serious problems and should only be done when debugging. Do not report hashcat issues encountered when using --force. |