Bruteforce + rules
#12
Man, I thought I tried that and it didn't work. But I checked and it was failing for other syntax reasons.

So:

Code:
$ cat double.rule
d

$ mp64 '$?a$?a' >append-aa.rule

$ head append-aa.rule
$ $
$ $!
$ $"
$ $#
$ $$
$ $%
$ $&
$ $'
$ $(
$ $)

$ echo 'hashcat'| hashcat --stdout -r append-aa.rule -r double.rule | head
hashcat  hashcat
hashcat !hashcat !
hashcat "hashcat "
hashcat #hashcat #
hashcat $hashcat $
hashcat %hashcat %
hashcat &hashcat &
hashcat 'hashcat '
hashcat (hashcat (
hashcat )hashcat )

$ mp64 '?a?a?a?a?a?a' | hashcat --stdout -r append-aa.rule -r double.rule | head

      !       !
      "       "
      #       #
      $       $
      %       %
      &       &
      '       '
      (       (
      )       )

Muuuch cleaner - thanks, epixoip.
~


Messages In This Thread
Bruteforce + rules - by asirena - 11-22-2017, 03:22 AM
RE: Bruteforce + rules - by phahRoe1 - 11-22-2017, 04:21 AM
RE: Bruteforce + rules - by asirena - 11-22-2017, 04:35 AM
RE: Bruteforce + rules - by royce - 11-22-2017, 04:50 AM
RE: Bruteforce + rules - by asirena - 11-22-2017, 05:02 AM
RE: Bruteforce + rules - by royce - 11-22-2017, 05:32 AM
RE: Bruteforce + rules - by royce - 11-22-2017, 06:20 AM
RE: Bruteforce + rules - by asirena - 11-22-2017, 02:42 PM
RE: Bruteforce + rules - by royce - 11-22-2017, 05:43 PM
RE: Bruteforce + rules - by epixoip - 11-22-2017, 08:06 PM
RE: Bruteforce + rules - by asirena - 11-22-2017, 08:10 PM
RE: Bruteforce + rules - by royce - 11-22-2017, 08:33 PM
RE: Bruteforce + rules - by asirena - 11-23-2017, 03:45 AM
RE: Bruteforce + rules - by royce - 11-23-2017, 06:18 AM
RE: Bruteforce + rules - by asirena - 11-24-2017, 09:56 PM