From 13029c562638386761a878db9f1062593dc39473 Mon Sep 17 00:00:00 2001 From: filinpavel Date: Thu, 25 Sep 2014 22:32:56 +0700 Subject: [PATCH 1/2] Create truecrack.md Create new .md-file. Added some decription, Links, etc --- tools/truecrack.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tools/truecrack.md diff --git a/tools/truecrack.md b/tools/truecrack.md new file mode 100644 index 0000000..4d8b5bf --- /dev/null +++ b/tools/truecrack.md @@ -0,0 +1,27 @@ +# Truecrack + +Notes +------- +Truecrack performs bruteforce password attacks on Truecrypt containers. It works on Linux and it is optimized for Nvidia Cuda technology. + +What would you use this tool for? +Why would you use it? + + +Help Text +------- +``` +TBA +``` + +Example Usage +------- + + +``` +truecrack --truecrypt --wordlist +``` + +Links +------- +[Truecrack project hosting](https://code.google.com/p/truecrack/) From c67f2a732b29890ba5974992225fc1ced5ea653c Mon Sep 17 00:00:00 2001 From: filinpavel Date: Thu, 25 Sep 2014 20:23:33 -0400 Subject: [PATCH 2/2] Update truecrack.md Added Help section --- tools/truecrack.md | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/tools/truecrack.md b/tools/truecrack.md index 4d8b5bf..51c8cd9 100644 --- a/tools/truecrack.md +++ b/tools/truecrack.md @@ -4,24 +4,45 @@ Notes ------- Truecrack performs bruteforce password attacks on Truecrypt containers. It works on Linux and it is optimized for Nvidia Cuda technology. -What would you use this tool for? -Why would you use it? - - Help Text ------- ``` -TBA +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/)