hashcat Forum
wpa/wpa2 minimum and maximum password - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html)
+--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html)
+--- Thread: wpa/wpa2 minimum and maximum password (/thread-1983.html)

Pages: 1 2 3 4


wpa/wpa2 minimum and maximum password - hoze - 01-23-2013

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?


RE: wpa/wpa2 minimum and maximum password - Hash-IT - 01-23-2013

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 ?


RE: wpa/wpa2 minimum and maximum password - hoze - 01-23-2013

(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 ....


RE: wpa/wpa2 minimum and maximum password - Hash-IT - 01-23-2013

OK good, just checking Smile

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


RE: wpa/wpa2 minimum and maximum password - hoze - 01-23-2013

(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....


RE: wpa/wpa2 minimum and maximum password - Hash-IT - 01-23-2013

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.


RE: wpa/wpa2 minimum and maximum password - hoze - 01-23-2013

(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...


RE: wpa/wpa2 minimum and maximum password - Hash-IT - 01-23-2013

(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.


RE: wpa/wpa2 minimum and maximum password - hoze - 01-23-2013

(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....


RE: wpa/wpa2 minimum and maximum password - jnet - 01-23-2013

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.