There are two ways:
1. Dictionary - so you should have text file with list of passwords, one for each line, and use command:
Where CODE is one of these: 6211, 6221, 6231, 6241, 6212, 6222, 6232, 6242, 6213, 6223, 6233, 6243
Code depends on the encryption used to create container.
2. Brute force:
Where CODE is one of the above, myses is the session to restore later if you stop the attack, and mask can be:
?b?b?b?b... which is all ASCII characters and you choose how long could be the password by adding ?b
?d... digits
?s... symbols
1. Dictionary - so you should have text file with list of passwords, one for each line, and use command:
Code:
hashcat64 -m CODE -a 0 -w 3 container_filename.tc password_dict.txt
Code depends on the encryption used to create container.
2. Brute force:
Code:
hashcat64 -m CODE -a 3 -w 3 --session myses --increment-min=1 -i container_filename.tc mask
?b?b?b?b... which is all ASCII characters and you choose how long could be the password by adding ?b
?d... digits
?s... symbols