Truecrypt
#2
There are two ways:

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
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:
Code:
hashcat64 -m CODE -a 3 -w 3 --session myses --increment-min=1 -i container_filename.tc mask
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
Reply


Messages In This Thread
Truecrypt - by 3di - 05-30-2020, 10:29 PM
RE: Truecrypt - by pbies - 05-31-2020, 04:06 AM
RE: Truecrypt - by philsmd - 05-31-2020, 08:46 AM
RE: Truecrypt - by 3di - 06-04-2020, 10:46 PM
RE: Truecrypt - by 3di - 06-14-2020, 11:59 PM
RE: Truecrypt - by philsmd - 06-15-2020, 08:52 AM
RE: Truecrypt - by 3di - 06-18-2020, 12:17 PM
RE: Truecrypt - by philsmd - 06-18-2020, 12:50 PM
RE: Truecrypt - by 3di - 06-18-2020, 09:04 PM
RE: Truecrypt - by undeath - 06-18-2020, 11:18 PM
RE: Truecrypt - by 3di - 07-06-2020, 09:05 PM