Skip to content
New issue

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

double free #320

Open
pwnpope opened this issue Oct 19, 2023 · 0 comments
Open

double free #320

pwnpope opened this issue Oct 19, 2023 · 0 comments

Comments

@pwnpope
Copy link

pwnpope commented Oct 19, 2023

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

aaaaaa

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant