Bruteforce + rules
#1
Consider the following scenario: you have to crack a md5 hash which belong to a password which has a lenght of 16 characters with the following format:

$password = $word . $word;
# password is the duplicated word (word concatenate with itself)
# e.g. if word='guy12345' then password='guy12345guy12345'

As you can imagine, it is very difficult to crack a 16-chars password, but a 8-chars password can be broken in a few days.

I know there is a rule for duplicate a word, but I don't know how to use it in a bruteforce attack, because the word is not in a dictionary (it is composite for lowcase, uppercase, numbers and special characters). If I try it, hashcat says rules cannot be used in attack mode 3...

An alternative could be use maskprocessor to generate a dictionary with '?a?a?a...?a' and then use a pipe to pass it like input to hashcat running with that rule. Well, I tryed it, but it is increeeeeeedibly slow.

Generating a whole 8-chars words dictionary in order to use it with hashcat and rules is not a feasible option since it could be around 38 petabytes...

So, is there any option to use rules with bruteforce attacks? If there isn't, will you develop it? It would be really useful...


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