Custom rule for 8Track hashes
#2
Put that other rule in a separate file, and then try
Code:
-r best64.rule -r 8track.rule

The rules are applied in the order specified, so order on the command line matters:

Code:
$ echo hashcat | hashcat --stdout -r best64.rule -r 8track.rule  | head
hashcat--
tachsah--
HASHCAT--
Hashcat--
hashcat0--
hashcat1--
hashcat2--
hashcat3--
hashcat4--
hashcat5--

$ echo hashcat | hashcat --stdout -r 8track.rule -r best64.rule | head
hashcat--
--tachsah
HASHCAT--
Hashcat--
hashcat--0
hashcat--1
hashcat--2
hashcat--3
hashcat--4
hashcat--5
~


Messages In This Thread
Custom rule for 8Track hashes - by freeroute - 06-16-2018, 09:51 PM
RE: Custom rule for 8Track hashes - by royce - 06-16-2018, 09:53 PM
RE: Custom rule for 8Track hashes - by freeroute - 06-16-2018, 10:04 PM