Posts: 46
	Threads: 6
	Joined: Jan 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?
	
	
	
	
	
 
 
	
	
	
		
	Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
	
		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 ?
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 46
	Threads: 6
	Joined: Jan 2013
	
	
 
	
		
		
		01-23-2013, 10:14 PM 
(This post was last modified: 01-23-2013, 10:16 PM by hoze.)
		
	 
	
		 (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 

 , all this is for education purpose only 
 ?l = abcdefghijklmnopqrstuvwxyz
 ?u = ABCDEFGHIJKLMNOPQRSTUVWXYZ
 ?d = 0123456789 ....
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
	
		OK good, just checking 
Did you see what I did to make it length 8 ?
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 46
	Threads: 6
	Joined: Jan 2013
	
	
 
	
		
		
		01-23-2013, 10:29 PM 
(This post was last modified: 01-23-2013, 10:31 PM by hoze.)
		
	 
	
		 (01-23-2013, 10:19 PM)Hash-IT Wrote:  OK good, just checking 
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....
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
	
		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.
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 46
	Threads: 6
	Joined: Jan 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...
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
	
		 (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. 
Have you looked at the increment option ?  Its the same as the multiple commands but automated for you.
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 46
	Threads: 6
	Joined: Jan 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....
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 20
	Threads: 3
	Joined: Nov 2012
	
	
 
	
	
		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.