different attack types - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: different attack types (/thread-237.html) |
different attack types - ttilt - 01-04-2011 Hi, I've been looking everywhere for a thorough documentation on the different attack types supported by hashcat but haven't been able to find much. For example: 1) what are the differences between straight words and combination. 2) the "toggle case" attack type is the same as using rule "t"? If so why make it a separate attack type? What do the toggle case min-max do? 3) What is the permutation attack type? What do the perm-min and perm-max do? Thanks, JC RE: different attack types - atom - 01-09-2011 (01-04-2011, 03:27 PM)ttilt Wrote: 3) What is the permutation attack type? What do the perm-min and perm-max do? quick example: word from dictionary is "abc", permutation attack mutates it to: abc acb bac bca cab cba tip: your dictionaries can be optimized for permutation attack by removing duplicates. for example if you have these two words in your dictionary "abc" and "acb" they generate exactly the same words. so you should remove them. to do this use the "prepare" program from hashcat-utils and sort -u them afterwards. RE: different attack types - ttilt - 01-10-2011 (01-08-2011, 08:38 AM)mahoganycow Wrote:Quote:1) what are the differences between straight words and combination. Tks for the explanation! But if the combination attack combines each word w/ EVERY other word then it would make it by far the slowest attack type right? RE: different attack types - atom - 01-11-2011 absolutly not. for example if you limit the attack to --perm-min=8 and --perm-max=8 it will only use words of length 8. N! function of 8 = 40320. so it requires 40320 * number of words (with length 8) in your dictionary to finish. thats not to much. for example if you have a combination attack with a dictionary that holds "just" 80000 words in it it will take longer. RE: different attack types - atom - 10-24-2011 check the wiki for all the attack types under menu "Attack modes". thread closed. |