princeprocessor --elem-cnt-max not work
#1
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
Reply
#2
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/princeprocess...c/pp.c#L32
Reply
#3
(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/princeprocess...c/pp.c#L32
Oh thanks man, i'm totally forgot about default limits!
Reply