Custom rule for 8Track hashes - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Custom rule for 8Track hashes (/thread-7576.html) |
Custom rule for 8Track hashes - freeroute - 06-16-2018 For 8Track hashes I use this command: Code: "hashcat -m 120 -a 0 8Track_hashes -j '$-$-' dictionary" Is it possible to combine this command with best64.rule like: Code: "hashcat -m 120 -a 0 hashes dictionary -r best64.rule" I tried to combine, but did not work: Code: "hashcat -a 0 dictionary -r best64.rule | hashcat -m 120 -a 0 -j '$-$-'" RE: Custom rule for 8Track hashes - royce - 06-16-2018 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 RE: Custom rule for 8Track hashes - freeroute - 06-16-2018 Thank you very much for your support. Its working. |