Skip to content

Hashcat Rules

4 Topics 33 Posts

Post your favorite hashcat rules here!
Follow Posting Template:
https://forum.hashpwn.net/post/68

  • Top hashpwn Rules

    Pinned hashcat rules hashcat
    8
    4 Votes
    8 Posts
    3k Views
    cycloneC
    @snazzy You can do all of this from linux CLI with sort, uniq, awk, grep, etc. I have also written custom tools for sorting wordlists or rulesets by frequency, so there are several ways to accomplish this. Below is a general outline using linux CLI. Run hashcat with --debug-mode=1 --debug-file=debug.rule which will save all rules that had hits to debug.rule Sort debug.rule by frequency and save to debug_freq.rule Spoiler LC_ALL=C sort debug.rule | uniq -c | LC_ALL=C sort -rn | grep -oP '^ *[0-9]+ \K.*' > debug_freq.rule Now that you have a ruleset sorted by frequency, you can run head -n {nth} debug_freq.rule to grab the top {nth} rules
  • Hashcat Rules

    Pinned Locked hashcat rules hashcat
    1
    1 Votes
    1 Posts
    775 Views
    No one has replied
  • Hashmob rules

    hashcat rules hashcat hashmob
    5
    4 Votes
    5 Posts
    821 Views
    A1131A
    [image: 1779372177293-screenshot_20260521_154351.png]
  • Hashcat Rules

    19
    0 Votes
    19 Posts
    4k Views
    P
    nice site, btw!