We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to solve a CTF with your code here, seems to be a double free, my bash code that made it trigger the double free:
#!/bin/bash for key in $(cat recovery_keys_dump.txt); do echo "Trying key: $key" dislocker -r -V encrypted_usb.dd -p$key -/mnt/decrypted if [ $? -eq 0 ]; then echo "Successfully decrypted with key: $key" break fi done
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was trying to solve a CTF with your code here, seems to be a double free, my bash code that made it trigger the double free:
The text was updated successfully, but these errors were encountered: