hashcat Forum
dictionary generating with rules - 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: dictionary generating with rules (/thread-11495.html)



dictionary generating with rules - PMTU - 07-05-2023

Hello there,

I'm playing with rules and dictionaries.
Hashcat v6.2.6

The source file (filename 11):
zong
zang
(no empty line)

Rules (filename 12):
f
f $!
^! f

for the first word it should generate:
zonggnoz
zonggnoz!
!zonggnoz!

And if I do echo -n "zong" | hashcat.bin -a 0 -r 12 --stdout it generates the expected output.
But ... with hashcat.bin -a 0 11 -r 12 --stdout it generates this:
zonggnoz
zonggnoz!
!zonggno~a
zanggnaz
zanggnaz!
!zanggnaz!

tried with a few different word but I was unable to find the cause.
Can someone tell what do I wrong?

Thanks


RE: dictionary generating with rules - buka - 07-05-2023

It's a bug and it's been fixed. Until 6.2.7 is released, you can download and use a "nightly" binary:
https://github.com/hashcat/hashcat/actions/runs/5453210659
Or you can try 6.2.5


RE: dictionary generating with rules - PMTU - 07-05-2023

(07-05-2023, 08:01 PM)buka Wrote: It's a bug and it's been fixed. Until 6.2.7 is released, you can download and use a "nightly" binary:
https://github.com/hashcat/hashcat/actions/runs/5453210659
Or you can try 6.2.5

Thanks. Smile

Maybe I searched in a wrong place as I didn't find it in the forum.