VeraBuster is a tool for recovering passwords of VeraCrypt encrypted volumes. The script performs password brute-forcing from a specified list and checks them against the provided encrypted volume.
veracrypt
You can install VeraCrypt on your Linux system using the following steps:
sudo add-apt-repository ppa:unit193/encryption
sudo apt-get update
sudo apt-get install veracrypt
sudo dnf install -y veracrypt
sudo pacman -S veracrypt
Run the VeraBuster.py script using Python 3.x. The script accepts the following arguments:
-v - Path to the VeraCrypt encrypted volume.
-p - File containing the list of passwords for brute-forcing.
-d - Enable debug mode.
Example usage:
python VeraBuster.py -v /path/to/veracrypt/volume -p /path/to/wordlist.txt
This project has drawn significant inspiration from the VeraCracker project by NorthernSec, which provides similar functionality for cracking VeraCrypt volumes on the Linux operating system.
This project is licensed under the MIT License. Please refer to the LICENSE file for more information.