hashcat Forum

Full Version: Prince processor capability
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
Does the --elem-cnt-min=4 and --elem-cnt-max=4 help?
it still seems to be giving me 2 candidates; like : tndxamendment. As far as i know, that's not 4 candidates
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
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