Use 'combinator' tool from hashcat-utils and pipe it into hashcat, and then apply the ?d?d?d at the end using hashcat itself.
https://hashcat.net/wiki/doku.php?id=has...combinator
A simple method to do this would be to apply the append_d.rule three times:
Or you could generate a rules file that appends three digits:
https://hashcat.net/wiki/doku.php?id=rul...kprocessor
Or you could write the combinator-generated file to disk, and then use hashcat's hybrid mode (-a 6).
https://hashcat.net/wiki/doku.php?id=hybrid_attack
https://hashcat.net/wiki/doku.php?id=has...combinator
A simple method to do this would be to apply the append_d.rule three times:
Code:
$ combinator dict1.txt dict2.txt | hashcat --stdout -r rules/hybrid/append_d.rule -r rules/hybrid/append_d.rule -r rules/hybrid/append_d.rule | head -10
aaaddd000
aaaddd100
aaaddd200
aaaddd300
aaaddd400
aaaddd500
aaaddd600
aaaddd700
aaaddd800
aaaddd900
Or you could generate a rules file that appends three digits:
https://hashcat.net/wiki/doku.php?id=rul...kprocessor
Or you could write the combinator-generated file to disk, and then use hashcat's hybrid mode (-a 6).
https://hashcat.net/wiki/doku.php?id=hybrid_attack
~