I'm trying to use john to test wpa security. I want it to generate 10-character passwords, so I've added this to john.conf:
[Incremental:Test]
File = $JOHN/alnum.chr
MinLen = 10
MaxLen = 10
CharCount = 62
However, when I run john --format=wpapsk --session=mysession --incremental=Test data, it prints:
Note: minimum length forced to 8
and still generates 8-character passwords. What am I missing?
"incremental" mode is limited to lengths up to 8 by default, at compile time.— this is no longer true since 1.8.0 – Eugene Yarmash Oct 31 '16 at 15:43john -i=alnumspace.chr --stdout | head -1000000 | tail Unknown option: "-i=alnumspace.chr"– Eugene Yarmash Oct 31 '16 at 15:44