Created
November 20, 2010 14:54
-
-
Save sergiolopes/707875 to your computer and use it in GitHub Desktop.
Descobre a senha de uma fatura do cartão do Banco Real por força bruta. Tem que ter o pdftk instalado na máquina
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
i=$1 | |
while true; do | |
echo | |
echo | |
echo Tentando $i | |
pdftk Fatura_10_SERGIO_1288_Visa_0001969284.pdf input_pw $i output saida.txt | |
if [ "$?" = "0" ]; then | |
echo SENHA = $i | |
break | |
fi | |
i=$((i + 1)) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment