hashcat Forum
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
2]colors
3]actions
4]dates
5]symbols

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
3]actions
5]symbols
4]dates
2]colors
4]dates4]dates
2]colors4]dates
4]dates2]colors
2]colors2]colors
1]animals4]dates
3]actions4]dates
5]symbols4]dates
4]dates1]animals
4]dates3]actions
4]dates5]symbols

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.

https://github.com/hashcat/princeprocessor/blob/master/src/pp.c#L32
Oh thanks man, i'm totally forgot about default limits!