「truecrack」の版間の差分

提供: セキュリティ
移動: 案内検索
 
行7: 行7:
 
== 概要 ==
 
== 概要 ==
 
以下の機能をサポートしています。
 
以下の機能をサポートしています。
* [[PBKDF2]](PKCS5 v2.0で定義)に基づいた[[鍵導出関数]]: Ripemd160, [[SHA-512]]とWhirlpool
+
* PBKDF2(PKCS5 v2.0で定義)に基づいた[[鍵導出関数]]: Ripemd160, [[SHA-2|SHA-512]]とWhirlpool
 
* ハードディスク暗号化のXST ブロック暗号モードを元にした、[[暗号アルゴリズム]]: [[AES暗号]], SERPENT, TWOFISH
 
* ハードディスク暗号化のXST ブロック暗号モードを元にした、[[暗号アルゴリズム]]: [[AES暗号]], SERPENT, TWOFISH
 
* File-hosted(container)とパーティション/device-hosted
 
* File-hosted(container)とパーティション/device-hosted

2015年6月6日 (土) 16:08時点における最新版

truecrack(TrueCrack) とは、TrueCryptボリュームのためのブルートフォースパスワードクラッカーです。Linuxで動作し、Nvidea Cuda テクノロジーに最適化されています。

読み方

truecrack
とぅるーくらっく

概要

以下の機能をサポートしています。

  • PBKDF2(PKCS5 v2.0で定義)に基づいた鍵導出関数: Ripemd160, SHA-512とWhirlpool
  • ハードディスク暗号化のXST ブロック暗号モードを元にした、暗号アルゴリズム: AES暗号, SERPENT, TWOFISH
  • File-hosted(container)とパーティション/device-hosted
  • 隠しボリュームとバックアップヘッダー

truecrackは、ブルートフォース攻撃(総当たり攻撃)を行えます。

  • 辞書: 単語の入っているファイルからパスワードを読み込みます。
  • アルファベット: 与えられた長さで、与えられたアルファベットにおける一般的なすべてのパスワード。

truecrackは、CPUGPUで動作します。

使い方

TrueCrack v2.5
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 <truecrypt_file> -w <wordlist_file> [-b <parallel_block>]
 truecrack -t <truecrypt_file> -c <charset> -m <maxlength>
 
Options:
 -h --help            Display this usage information.
 -t --truecrypt FILE  Truecrypt volume file.
 -w --wordlist FILE   Wordlist file for dictionary attack.
 -b --blocksize INT   Number of concurrent parallel computation for dictionary attack (board dependent).
 -c --charset STRING  Alphabet to generate the passwords for charset attack.
 -m --maxlength INT   Max length of passwords for charset attack.
 -v --verbose         Show verbose computation messages.
 
Sample:
 Dictionary mode: truecrack --truecrypt ./volume --wordlist ./dictionary.txt 
 Charset mode: truecrack --truecrypt ./volume --charset ./dictionary.txt --maxlength 10

関連項目