Posts: 30
	Threads: 10
	Joined: Apr 2023
	
	
 
	
	
		Combinator Attack with Rules How?
Please help how to run a combinator attack using rules like best64. When I run I got errors.
	
	
	
	
	
 
 
	
	
	
		
	Posts: 111
	Threads: 1
	Joined: Apr 2023
	
	
 
	
	
		-j,  --rule-left=RULE              Single rule applied to each word on the left dictionary
  -k,  --rule-right=RULE            Single rule applied to each word on the right dictionary
or 
https://github.com/hashcat/princeprocessor
	 
 
	
	
	
		
	Posts: 927
	Threads: 16
	Joined: Sep 2017
	
	
 
	
	
		be aware that only ONE rule can be applied to each dict
using combinator and a whole ruleset is not possible
	
	
	
	
	
 
 
	
	
	
		
	Posts: 146
	Threads: 1
	Joined: Apr 2022
	
	
 
	
	
		You could pipe hashcat into itself:
hashcat -a1 wordlist1 wordlist2 --stdout | hashcat -m<mode> -a0 hashlist -r ruleset
	
	
	
	
	
 
 
	
	
	
		
	Posts: 30
	Threads: 10
	Joined: Apr 2023
	
	
 
	
	
		 (06-28-2023, 11:43 AM)b8vr Wrote:  You could pipe hashcat into itself:
hashcat -a1 wordlist1 wordlist2 --stdout | hashcat -m<mode> -a0 hashlist -r ruleset
thank you!