Rules test
#1
Hi there,

Sorry if this has been asked before. Is there any windows tool that lets you run a rule against a word and show the results eg best64 against Kevin and output to text. Have been trying the built in rules against some hashes that I have generated and with not much success.

Any info much appreciated

Thanks Kev
#2
--stdout is your friend:
Code:
> echo kevin | hashcat64 --stdout -j "c"
Kevin

> echo kevin | hashcat64 --stdout -r best64.txt
kevin1
...
#3
(11-05-2018, 08:22 PM)Mem5 Wrote: --stdout is your friend:
Code:
> echo kevin | hashcat64 --stdout -j "c"
Kevin

> echo kevin | hashcat64 --stdout -r best64.txt
kevin1
...

Cheers K