glv2 / bruteforce-luks

Try to find the password of a LUKS encrypted volume.
GNU General Public License v3.0
238 stars 34 forks source link

Avoid requirement for root privileges. #5

Closed spacekpe closed 8 years ago

spacekpe commented 8 years ago

Root privileges are not required anymore because cryptsetup is called in dry-run mode which does not actually change device mapper configuration.

This should work under non-root user as long as the user can access the device. You can e.g. copy LUKS header to a file and run the cracker on this file. $ dd if=/dev/source of=/tmp/luks-header bs=1M count=10

glv2 commented 8 years ago

Thanks.