diff --git a/tools/truecrack.md b/tools/truecrack.md new file mode 100644 index 0000000..51c8cd9 --- /dev/null +++ b/tools/truecrack.md @@ -0,0 +1,48 @@ +# Truecrack + +Notes +------- +Truecrack performs bruteforce password attacks on Truecrypt containers. It works on Linux and it is optimized for Nvidia Cuda technology. + +Help Text +------- +``` +TrueCrack v3.0 +Website: http://code.google.com/p/truecrack +Contact us: infotruecrack@gmail.com +Bruteforce password cracker for Truecrypt volume. Optimazed with Nvidia Cuda technology. +Based on TrueCrypt, freely available at http://www.truecrypt.org/ +Copyright (c) 2011 by Luca Vaccaro. + +Usage: + truecrack -t -k -w [-b ] + truecrack -t -k -c [-s ] -m [-b ] + +Options: + -h --help Display this information. + -t --truecrypt Truecrypt volume file. + -k --key Key derivation function (default ripemd160). + -b --blocksize Number of parallel computations (board dependent). + -w --wordlist File of words, for Dictionary attack. + -c --charset Alphabet generator, for Alphabet attack. + -s --startlength Starting length of passwords, for Alphabet attack (default 1). + -m --maxlength Maximum length of passwords, for Alphabet attack. + -r --restore Restore the computation. + -v --verbose Show computation messages. + +Sample: + Dictionary mode: truecrack --truecrypt ./volume --wordlist ./dictionary.txt + Charset mode: truecrack --truecrypt ./volume --charset ./dictionary.txt --maxlength 10 + +``` + +Example Usage +------- + +``` +truecrack --truecrypt --wordlist + +``` +Links +------- +[Truecrack project hosting](https://code.google.com/p/truecrack/)