Skip to content
  • Categories
  • Recent
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Slate)
  • No Skin
Collapse
Brand Logo

hashpwn

Home | Donate | GitHub | Matrix Chat | PrivateBin | Rules

  1. Home
  2. Resources
  3. Hashcat Rules
  4. Hashcat Rules

Hashcat Rules

Scheduled Pinned Locked Moved Hashcat Rules
15 Posts 2 Posters 1.6k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A1131A Offline
    A1131A Offline
    A1131
    Trusted
    wrote on last edited by cyclone
    #4

    Create email rules from potfile based on occurency:

    grep -Eao "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+.[A-Za-z]{2,6}\b" ./hashcat.potfile | cut -d@ -f2 | uniq -c | sort -nr | cut -c 9- | awk '!seen[$0]++' | sed 's/^/@/' | sed 's/./$&/1g' > ./rules/domains.pot.rule
    
    head -n10 ./rules/domains.pot.rule
    $@$r$a$y$m$o$n$d$j$a$m$e$s$.$c$o$m
    $@$m$a$i$l$t$o$.$p$l$u$s
    $@$e$d$w$a$r$d$j$o$n$e$s$.$c$o$m
    $@$a$x$a$-$a$d$v$i$s$o$r$s$.$c$o$m
    $@$w$f$a$d$v$i$s$o$r$s$.$c$o$m
    $@$j$p$m$o$r$g$a$n$.$c$o$m
    $@$m$o$r$g$a$n$s$t$a$n$l$e$y$.$c$o$m
    $@$w$e$l$l$s$f$a$r$g$o$a$d$v$i$s$o$r$s$.$c$o$m
    $@$t$r$a$n$s$a$m$e$r$i$c$a$.$c$o$m
    $@$u$b$s$.$c$o$m
    

    Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
    PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

    1 Reply Last reply
    0
    • A1131A A1131 referenced this topic on
    • A1131A Offline
      A1131A Offline
      A1131
      Trusted
      wrote on last edited by A1131
      #5

      Title: emojis.rule
      Author: A1131
      URL: none
      Description: tmesis emojis rules file

      Emojis.rule.zip

      Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
      PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

      1 Reply Last reply
      👍
      0
      • A1131A Offline
        A1131A Offline
        A1131
        Trusted
        wrote on last edited by
        #6

        Title: unicode.rule
        Author: A1131
        URL: none
        Description: tmesis updated unicode characters rules file

        Unicode.rule
        Characters used

        Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
        PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

        1 Reply Last reply
        0
        • A1131A Offline
          A1131A Offline
          A1131
          Trusted
          wrote on last edited by
          #7

          Title: misty50k.rule
          Author: A1131
          URL: none
          Description: For testing purpose. Feedback welcomed.

          misty50k.rule

          Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
          PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

          R 1 Reply Last reply
          👍
          1
          • A1131A A1131

            Title: misty50k.rule
            Author: A1131
            URL: none
            Description: For testing purpose. Feedback welcomed.

            misty50k.rule

            R Offline
            R Offline
            Rampage45
            wrote on last edited by
            #8

            @A1131 misty50k rule Compared to oneruletorulethemall?

            1 Reply Last reply
            0
            • A1131A Offline
              A1131A Offline
              A1131
              Trusted
              wrote on last edited by
              #9

              @Rampage45 - rules comparision

              Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
              PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

              1 Reply Last reply
              👍
              1
              • R Offline
                R Offline
                Rampage45
                wrote on last edited by
                #10

                How about the hashpwn5000? What is its ranked compared to this rules?

                1 Reply Last reply
                0
                • A1131A Offline
                  A1131A Offline
                  A1131
                  Trusted
                  wrote on last edited by
                  #11

                  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.

                  Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
                  PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

                  1 Reply Last reply
                  👍
                  1
                  • A1131A Offline
                    A1131A Offline
                    A1131
                    Trusted
                    wrote on last edited by
                    #12

                    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
                    

                    Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
                    PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

                    1 Reply Last reply
                    👍
                    0
                    • A1131A Offline
                      A1131A Offline
                      A1131
                      Trusted
                      wrote on last edited by A1131
                      #13

                      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
                      

                      Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
                      PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

                      1 Reply Last reply
                      👍
                      0
                      • A1131A Offline
                        A1131A Offline
                        A1131
                        Trusted
                        wrote last edited by cyclone
                        #14

                        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.

                        benchmark-rules.png

                        Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
                        PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

                        1 Reply Last reply
                        👍
                        0
                        • A1131A Offline
                          A1131A Offline
                          A1131
                          Trusted
                          wrote last edited by
                          #15

                          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
                          
                          

                          Amateur of mycology and hashcracking | 1x3060Ti | 1x1050Ti
                          PGP:4B0A386530D789157435DC7489138FB52FDD7FC1

                          1 Reply Last reply
                          👍
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          Who's Online [Full List]

                          10 users active right now (5 members and 5 guests).
                          vioednfekla, hashpwn-bot, v1cvap0r, petrovivo1234, freeroute

                          Board Statistics

                          Our members have made a total of 3.5k posts in 150 topics.
                          We currently have 257 members registered.
                          Please welcome our newest member, vioednfekla.
                          The most users online at one time was 49 on Thursday, December 26, 2024.

                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent