Posts: 3
Threads: 1
Joined: Oct 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?
Posts: 48
Threads: 7
Joined: Jun 2013
Check prepare and permute in hashcat utilities and wiki
Posts: 3
Threads: 1
Joined: Oct 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?
Posts: 5,185
Threads: 230
Joined: Apr 2010
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
Posts: 3
Threads: 1
Joined: Oct 2013
10-07-2013, 01:00 PM
(This post was last modified: 10-07-2013, 01:04 PM by yeosol.)
(10-07-2013, 10:04 AM)atom Wrote: 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
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
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?