hashcat Forum
Rules test - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Misc (https://hashcat.net/forum/forum-15.html)
+--- Forum: General Talk (https://hashcat.net/forum/forum-33.html)
+--- Thread: Rules test (/thread-7927.html)



Rules test - kevtheskin - 11-05-2018

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


RE: Rules test - Mem5 - 11-05-2018

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

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



RE: Rules test - kevtheskin - 11-05-2018

(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