Whats the most efficient way to do this? (newbie)
#2
maybe rule based attacks:
https://hashcat.net/wiki/doku.php?id=rule_based_attack

Code:
r ^T ^I ^W $5 $0

the last part (adding the digits, $5 $0) can be done also with a separate rule file (multi rule file combination feature: https://hashcat.net/wiki/doku.php?id=rul...ulti-rules). i.e. if you have a rule file that adds some digits, it can be combined with other rules like this -r first.rule -r second.rule -r third.rule and the result is just like if the single lines would be combined (not in sequence but applied at the same time)

of course this is not perfectly ideal approach, because you probably would have the additional information/relationship that connects each hash with an ID. i.e. like a salt (but there is no salted whirlpool support in hashcat)
Reply


Messages In This Thread
RE: Whats the most efficient way to do this? (newbie) - by philsmd - 04-23-2020, 05:54 PM