Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
	
		I am having trouble getting the new brute force attack working in oclhashcatplus.
I tried various options but assumed this should work.
Code:
oclHashcat-plus32.exe --hash-type 2500 -n 160 --bf-pw-min=8 --bf-pw-max=10 --bf-cs-buf=abcdefg12345 test.hccap -o Found.txt
Pause
All I get is ...
Quote:unknown option -- bf-pw-min=8
Any suggestions ?  Thanks.  
 
	 
 
	
	
	
		
	Posts: 5,232
	Threads: 233
	Joined: Apr 2010
	
	
 
	
	
		this is absolutly _not_ working like CPU hashcat :-)
check out: 
http://hashcat.net/wiki/mask_attack
there is no --increment, so the --bf-pw-min is always the same as the --bf-pw-max. i will add this feature in a later release. for now, you have to run multiple cmds.
here is your cmd translated:
oclHashcat-plus32.exe --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1
oclHashcat-plus32.exe --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1?1
oclHashcat-plus32.exe --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1?1?1
Pause
	
 
 
	
	
	
		
	Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
		
		
		12-31-2011, 09:36 PM 
(This post was last modified: 12-31-2011, 09:50 PM by Hash-IT.)
		
	 
	
		Wow ...very fast reply !!!
Thank you for your help.
I got confused as I followed 
this link 
Posted 
here.
It appeared to me to be the same as CPU hashcat, perhaps you could mention this in your release thread to prevent others doing the same as me and bothering you further.
Thanks again ! 
 
Edit...
I am really sorry about this but using the following...
Quote:oclHashcat-plus32.exe --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1
Results in...
Quote:ERROR: ?1?1?1?1?1?1?1?1: No such file or directory
	 
 
	
	
	
		
	Posts: 5,232
	Threads: 233
	Joined: Apr 2010
	
	
 
	
	
		 (12-31-2011, 09:36 PM)Hash-IT Wrote:  I got confused as I followed this link 
Posted here.
It appeared to me to be the same as CPU hashcat, perhaps you could mention this in your release thread to prevent others doing the same as me and bothering you further.
yes, the wiki pages are not up-to-date.
 (12-31-2011, 09:36 PM)Hash-IT Wrote:  I am really sorry about this but using the following...
Quote:oclHashcat-plus32.exe --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1
Results in...
Quote:ERROR: ?1?1?1?1?1?1?1?1: No such file or directory
whoops, add -a 3 
Quote:oclHashcat-plus32.exe -a 3 --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1
	 
	
	
	
	
 
 
	
	
	
		
	Posts: 723
	Threads: 85
	Joined: Apr 2011
	
	
 
	
	
		Quote:oclHashcat-plus32.exe -a 3 --hash-type 2500 -n 160 -1 abcdefg12345 test.hccap -o Found.txt ?1?1?1?1?1?1?1?1
Works great !  Thank you !! 
