wpa/wpa2 minimum and maximum password
#1
Hello everyone.

Is there a way to set a minimum and maximum password lengh for WPA/WPA2 cracking?
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d?d

This command line is for 10 character passw.lengh, but the password is 8 character only, so how can I set if I'm not shure for password lengh?
#2
This is for passwords length 8

Code:
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d

You do realize that you are only testing length 8 with numbers only don't you ?
#3
(01-23-2013, 10:04 PM)Hash-IT Wrote: This is for passwords length 8

Code:
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d

You do realize that you are only testing length 8 with numbers only don't you ?

Yes Smile , all this is for education purpose only Smile

?l = abcdefghijklmnopqrstuvwxyz
?u = ABCDEFGHIJKLMNOPQRSTUVWXYZ
?d = 0123456789 ....
#4
OK good, just checking Smile

Did you see what I did to make it length 8 ?
#5
(01-23-2013, 10:19 PM)Hash-IT Wrote: OK good, just checking Smile

Did you see what I did to make it length 8 ?

Yes,I know that 8 x ?d = limit for 8 digit password , but what if I'm not shure for password lengh?
I want to search for password between 8 and 10 digit lengh....
#6
You can make a group of commands like...

oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d?d

Or you can use the -i increment option. This is on the wiki.
#7
(01-23-2013, 10:32 PM)Hash-IT Wrote: You can make a group of commands like...

oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d?d

Or you can use the -i increment option. This is on the wiki.

Hmm... so first I search for 8 digit lengh,ok, after I repeat with 9 digit lengh and so on, so on...? Is there no another way to do that ? Sorry for my bad English, just it's hard to explain my idea...
#8
(01-23-2013, 10:37 PM)hoze Wrote: Hmm... so first I search for 8 digit lengh,ok, after I repeat with 9 digit lengh and so on, so on...? Is there no another way to do that ?

Just the two methods I posted I think, I can't imagine another way of doing it.

If you know the actual length of the password then you set the "?d" accordingly. If you have no idea how long the password is then I am unsure what you mean by doing it another way. Sad

Have you looked at the increment option ? Its the same as the multiple commands but automated for you.
#9
(01-23-2013, 10:32 PM)Hash-IT Wrote: You can make a group of commands like...

oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d
oclHashcat-plus64.exe -m 2500 -a 3 xxxxx.hccap ?d?d?d?d?d?d?d?d?d?d

Or you can use the -i increment option. This is on the wiki.

Maybe U can help me with "increment" option ? Some example how to use in command line....
#10
Yes, use the --increment-min and --increment-max flags. The wiki link that Hash-IT provided you clearly shows this and so does the help menu.