Two Dictionaries + 3 digits
#2
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:

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
~


Messages In This Thread
Two Dictionaries + 3 digits - by TheseTwoBigBalls - 08-13-2018, 06:19 AM
RE: Two Dictionaries + 3 digits - by royce - 08-13-2018, 07:02 AM