Hashcat Rules
-
Title:
unicode.rule
Author:
A1131
URL:
none
Description
: tmesis updated unicode characters rules file -
Title:
misty50k.rule
Author:
A1131
URL:
none
Description
: For testing purpose. Feedback welcomed. -
-
I haven't any comparision of hashpwn's rules with those you found in this thread or the above link, but are certainly not inferior. I encourage to try various ones, because on various hashlists using various wordlists, they can give varied results, better or worse.
-
How to create prepend rules from wordlist
$ cat ./wordlist.txt word1 word2 word3
Create a file rev.sed with the following contents and make it executable
/../! b s/^.*$/\ &\ / tx :x s/\(\n.\)\(.*\)\(.\n\)/\3\2\1/ tx s/\n//g
$ chmod +x rev.sed $ cat ./wordlist.txt | sed -f rev.sed | sed 's/./^&/1g' > ./prepend.rule $ cat ./prepend.rule ^1^d^r^o^w ^2^d^r^o^w ^3^d^r^o^w
-
How to create dates append rule with toggle first character
# for i in `seq 1949 2025`; do echo $i; done > tmp.txt && cat tmp.txt | sed 's/./$&/1g' | sed 's/^/T0/' > ./rules/append-dates.rule && rm tmp.txt # head ./rules/append-dates.rule T0$1$9$4$9 T0$1$9$5$0 T0$1$9$5$1 T0$1$9$5$2 T0$1$9$5$3 T0$1$9$5$4 T0$1$9$5$5 T0$1$9$5$6 T0$1$9$5$7 T0$1$9$5$8
-
Slightly updated/cleaned archive with rules (hashcat-rules.zip) and some benchmark made on the hashlist from this post and the hashmob.medium.found dictionary.
-
Sorted by occurrence of rules file from online hashcat rules collection
# ls a1131 blandyuk ciphers dive hybrid kaonashi MISC pantagrule robot t0xic top_n aon buka clem9669 fordy insidepro korelogic nsa-rules probable-wordlists shooter3k techtrip unicorn append cake dipepe hob0rules jabbercracky masks nyxgeek README.md skalman tmesis # find . -name "*.rule" | du -sh 860M . # du -sh ../collection.rule 372M ../collection.rule # wc -l ../collection.rule 26913875 ../collection.rule