cozylife / truecrypt-cracker
A brute force password cracker for TrueCrypt volumes
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-02-18 21:49:37 UTC
README
I somehow forgot a portion of my password for my TrueCrypt device, so I wrote this program to help me crack my own password. If you need a reliable brute-force password cracker, you've found it. It cracks passwords intelligently by considering what you know about the password.
Requirements
- PHP 5.3+ (Must have access to proc_* functions and PHP-Cli!)
- Linux system
Installation
Either clone the repo or install it with composer.
composer.phar require cozylife/truecrypt-cracker
Usage
Configure the script as shown in the example file. When you've finished your configuration, open a Bash console, cd to the directory of your script, and enter the following line.
sudo php example.php
Sudo is important as it gives PHP access to mount the device.
Tips
- The script processes the possible characters list in order. Place the most likely characters first.
- If you think that your password contains one combination of characters or another combination, run two tests to find the correct password.
- If number two applies to you, run the tests in parallel by using multiple console windows. (You'll need to use multiple copies of your script to pull this off.)