![]() |
hashcat v0.46 and permutation attack - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: hashcat v0.46 and permutation attack (/thread-2689.html) |
hashcat v0.46 and permutation attack - yeosol - 10-04-2013 Hi, I have a problem, i think permutation attack mode does not work or am i missing something? Code: hashcatcli64.exe -m 100 -a 4 hashfile.txt word.txt it runs just like a dictionary mode, no permutation. Could someone help? RE: hashcat v0.46 - vrposter - 10-04-2013 Check prepare and permute in hashcat utilities and wiki RE: hashcat v0.46 - yeosol - 10-04-2013 (10-04-2013, 11:44 AM)vrposter Wrote: Check prepare and permute in hashcat utilities and wiki I know hashcat-utils does the job, however after you prepare and permute, it is not different than dictionary attack. There is a permutation attack mode in hashcat which should have done the job without any utilities, i want to know how it works. Anyone knows? RE: hashcat v0.46 and permutation attack - atom - 10-07-2013 Why do you think it's not doing an permutation attack? You can try very by using the --stdout switch on commandline. To get it work, remove the hashfile. There's also a range that a word from your wordlist must match otherwise it's skipped. Check those switches: * Permutation attack-mode specific: --perm-min=NUM Filter words shorter than NUM --perm-max=NUM Filter words larger than NUM RE: hashcat v0.46 and permutation attack - yeosol - 10-07-2013 (10-07-2013, 10:04 AM)atom Wrote: Why do you think it's not doing an permutation attack? thanks, it helped me to find the problem ![]() i tried --stdout option and i found that there are always 2 words missing. in my case i had the word "wer" i had SHA1 hash of the word "rew" to see whether it works and it did not find therefore i thought it was not working today with --stdout option i saw hashcat tries just 4 words, namely Code: wre Then i inserted words of length of 4 and 5, and i noticed that always 2 words missing. Is that normal or is it a bug or still am i missing something? |