hashcat Forum
Prince processor capability - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html)
+--- Thread: Prince processor capability (/thread-7162.html)



Prince processor capability - mcilie1324 - 01-03-2018

So im using pp64.bin to crack an xkcd style password. the problem is I need it to get there faster. to do that, I would like to just tell pp64 to start off with permuting 4 words from my wordlist. I dont exactly know how to do that. The closest thing that i could find was to set the --pw-min length, but it appears to truncate some words rather than combine all the short ones first. my command isĀ 
Code:
./pp64.bin --pw-min=13 <words.txt | hashcat -m1400 -o txt.out hashfile.hash --session 1234
thanks in advance


RE: Prince processor capability - walterlacka - 01-04-2018

Does the --elem-cnt-min=4 and --elem-cnt-max=4 help?


RE: Prince processor capability - mcilie1324 - 01-04-2018

it still seems to be giving me 2 candidates; like : tndxamendment. As far as i know, that's not 4 candidates


RE: Prince processor capability - walterlacka - 01-04-2018

Code:
cat dict.txt
this
orange
rocks
and

Code:
./pp64.app --elem-cnt-min=4 --elem-cnt-max=4 --pw-max=20 < dict.txt
andandandand
andandandthis
andandthisand
andthisandand
thisandandand
rocksandandand
andandthisthis
andthisandthis
thisandandthis
andandrocksand
etc
etc

Code:
./pp64.app --elem-cnt-min=3 --elem-cnt-max=4 --pw-max=20 < dict.txt
andandand
andandthis
andthisand
thisandand
andandrocks
andthisthis
thisandthis
androcksand
thisthisand
rocksandand
andandandand
andthisrocks
thisandrocks
androcksthis
thisthisthis
rocksandthis
andorangeand
thisrocksand
rocksthisand
etc
etc



RE: Prince processor capability - mcilie1324 - 01-04-2018

right, i attempted to modify my dictionary and remove all the single lettered words. it was my stupid programming error that failed to do so, Sorry for the waste of time