hashcat Forum

Full Version: Rules test
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
--stdout is your friend:
Code:
> echo kevin | hashcat64 --stdout -j "c"
Kevin

> echo kevin | hashcat64 --stdout -r best64.txt
kevin1
...
(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