Brute-Force custom character - 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: Brute-Force custom character (/thread-9228.html) |
Brute-Force custom character - Nilon - 05-16-2020 I want to know how to make a custom character Brute-Force because I know that the wifi has 13 character and all the character ar ether number or capital letter. RE: Brute-Force custom character - undeath - 05-17-2020 https://hashcat.net/wiki/doku.php?id=mask_attack RE: Brute-Force custom character - royce - 05-20-2020 Following up from your other deleted post, in which you said there are exactly 8 upper and 5 digits. There are probably too many combinations to reasonably exhaust, but to model how many masks would be needed, you can use the `policygen` tool from the PACK toolkit: https://github.com/iphelix/pack/blob/master/policygen.py Note that because of how policygen works, it will take a while to run. Code: $ policygen --minlength 13 --maxlength 13 --mindigit 5 --maxdigit 5 --minupper 8 --maxupper 8 -o 8upper5digit.masks Each of these masks will take two weeks to run on a single GTX 1080: https://www.wolframalpha.com/input/?i=%281287*14%29%2F365 ... so that's about 49 years. |