I want to brute force incrementally with two digits appended
#2
You can use a .hcmask file for this (https://hashcat.net/wiki/mask_attack#hashcat_mask_files):
Code:
hashcat -m 0 -a 3 hash_file.txt mask_file.hcmask

content of the file "mask_file.hcmask":
Code:
?l?l?l?l?d?d
?l?l?l?l?l?d?d
?l?l?l?l?l?l?d?d
?l?l?l?l?l?l?l?d?d
?l?l?l?l?l?l?l?l?d?d
?l?l?l?l?l?l?l?l?l?d?d
?l?l?l?l?l?l?l?l?l?l?d?d

this assumes that only lower-case letters should be used, you can change that easily if you need to


Messages In This Thread
RE: I want to brute force incrementally with two digits appended - by philsmd - 04-04-2017, 06:55 PM