Usage Tips:
- Click on a keyword to enable inline editing.
- Click inside a code block to copy (excludes comments).
- Use the button to view examples.
- Click outside to collapse all examples.
Brute force LUKS password
bruteforce-luks -t 10 -f <WORDLIST> -w state.txt -v 30 <BACKUP_IMG>
Sample Output:
TO-DO
Note: This is slow, create a small wordlist
Basic
# Open
cryptsetup open --type luks <BACKUP_IMG> backup
Sample Output:
TO-DO
# Check
ls -l /dev/mapper/
Sample Output:
TO-DO
# Create mount folder
sudo mkdir /mnt/backup
Sample Output:
TO-DO
# Mount
sudo mount /dev/mapper/backup /mnt/backup/
Sample Output:
TO-DO