hecky

TrueCrypt BruteForce ShellScript

Jan 3rd, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.54 KB | None | 0 0
  1. let total=$(wc -l dict.txt | cut -d " " -f1);let num=1; for i in $(cat dict.txt);do echo -ne "Probando:\t\e[1;4;31;40m$(echo -n $i)\e[m\n" && echo -ne "   Intento \e[4;36m$((num))\e[m de \e[1;33m$total\e[m \n" ; ((num++)); truecrypt --text --non-interactive -p $(echo -n "$i" | tr -d "\r" | tr -d "\n") --mount VOLUMEN_CIFRADO && echo -e "\n\t\t\t\e[1;4;35m Mounted Sucessfully with $i\e[m\n" && break ;done
  2.  
  3.  
  4. dict.txt > Diccionario de posibles contraseñas
  5. VOLUMEN_CIFRADO > Volumen de Truecrypt a intentar montar.
  6.  
  7. Ej:
  8. http://t.co/278CKm9FTc
Advertisement
Add Comment
Please, Sign In to add comment