princeprocessor --elem-cnt-max not work - 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: princeprocessor --elem-cnt-max not work (/thread-9499.html) |
princeprocessor --elem-cnt-max not work - gentl - 09-11-2020 Hi have a wordlist` Code: 1]animals Use pp64.exe --elem-cnt-max=5 -o result < tst1.txt i am awaiting that prince will make all possible combinations from 1 word to 5 words in line. But i have: Code: 1]animals Only 1 and 2 words combination.. hmm.. ok let's try pp64.exe --elem-cnt-min=5 --elem-cnt-max=5 -o result < tst.txt output is empty o_O RE: princeprocessor --elem-cnt-max not work - undeath - 09-12-2020 princeprocessor output is limited to a maximum of 16 chars per candidate by default. You can override it using --pw-max. https://github.com/hashcat/princeprocessor/blob/master/src/pp.c#L32 RE: princeprocessor --elem-cnt-max not work - gentl - 09-12-2020 (09-12-2020, 11:17 AM)undeath Wrote: princeprocessor output is limited to a maximum of 16 chars per candidate by default. You can override it using --pw-max.Oh thanks man, i'm totally forgot about default limits! |