Posts: 73
	Threads: 14
	Joined: Jun 2017
	
	
 
	
		
		
 
		06-28-2017, 01:56 PM 
		
	 
	
		I have to generate a mask in which a character is not repeated more than twice,and no two character comes together,what should I do?
for e.g:If the characters are a,b,c and the word length is 3,the combinations should not contain strings like:aab,caa,bbc,ccc e.t.c
	
	
	
	
	
 
 
	
	
	
		
	Posts: 2,266
	Threads: 16
	Joined: Feb 2013
	
	
 
	
	
		maskprocessor can be used for this situation (the -q parameter can be used) and the output can be piped into hashcat:
Code:
mp64 -q 2 -1 abc ?1?1?1 | hashcat -a 0 -m 0 -w 4 hash.txt
 
	 
	
	
	
	
 
 
	
	
	
		
	Posts: 73
	Threads: 14
	Joined: Jun 2017
	
	
 
	
	
		 (06-28-2017, 03:37 PM)philsmd Wrote:  maskprocessor can be used for this situation (the -q parameter can be used) and the output can be piped into hashcat:
Code:
mp64 -q 2 -1 abc ?1?1?1 | hashcat -a 0 -m 0 -w 4 hash.txt
So should I download the mask processor?
Will it generate a wordlist?
How can I pipe it into Hashcat?
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 73
	Threads: 14
	Joined: Jun 2017
	
	
 
	
	
		Can u give a working link to dwnld mask processor?
	
	
	
	
	
 
 
	
	
	
		
	Posts: 5,232
	Threads: 233
	Joined: Apr 2010