09-10-2018, 10:04 PM
As we can read here https://hashcat.net/wiki/doku.php?id=rul...ect_plains ,the rejection rule is supported by hashcat.
Code:
$ cat w1
a
ab
abc
$ cat w2
1
12
123
Code:
$ combinator w1 w2 | hashcat --stdout
a1
a12
a123
ab1
ab12
ab123
abc1
abc12
abc123
$ combinator w1 w2 | hashcat --stdout -j '>5'
ab123
abc12
abc123