1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

New port: security/truecrack

TrueCrack is a brute-force password cracker for TrueCrypt (Copyright) volume
files. It works on Linux and it is optimized with Nvidia Cuda technology.
It works with cripted volumes with the following algorithms:

- PBKDF2 (defined in PKCS5 v2.0) based on RIPEMD160 Key derivation function.
- XTS block cipher mode of operation used for hard disk encryption based on
  AES.

TrueCrack can work in two different modes of use:

- Dictionary attack: read the passwords from a file of words (one password
  for line).
- Charset attack: generate the passwords from a charset of symbols defined
  by the user (for example: all possible strings of n characters from the
  charset "abc" ).

WWW: https://code.google.com/p/truecrack/
This commit is contained in:
Ryan Steinmetz 2012-05-23 19:58:16 +00:00
parent cc18b2487d
commit d5bd9df70b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297299
4 changed files with 62 additions and 0 deletions

View File

@ -918,6 +918,7 @@
SUBDIR += tripwire-131
SUBDIR += tripwire12
SUBDIR += trousers
SUBDIR += truecrack
SUBDIR += truecrypt
SUBDIR += tsshbatch
SUBDIR += tthsum

View File

@ -0,0 +1,42 @@
# New ports collection makefile for: truecrack
# Date created: 23 May 2012
# Whom: Ryan Steinmetz <zi@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= truecrack
PORTVERSION= 0.1
CATEGORIES= security
MASTER_SITES= https://truecrack.googlecode.com/files/ \
http://mirrors.rit.edu/zi/
DISTNAME= ${PORTNAME}
MAINTAINER= zi@FreeBSD.org
COMMENT= A password cracker for TrueCrypt volumes
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/license.txt
USE_GMAKE= yes
CFLAGS+= -DTC_BSD
PLIST_FILES= bin/truecrack
.if !defined(NOPORTDATA)
DICTIONARIES= dictionary_100k.txt dictionary_10k.txt dictionary.txt
PORTDATA= ${DICTIONARIES}
.endif
post-patch:
@${REINPLACE_CMD} -e 's/CFLAGS =/CFLAGS +=/g' ${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's/return ;/return 0;/g' ${WRKSRC}/Main/Utils.c
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/truecrack ${PREFIX}/bin
.if !defined(NOPORTDATA)
.for dict in ${DICTIONARIES}
@${MKDIR} ${DATADIR}
@${INSTALL_DATA} ${WRKSRC}/${dict} ${DATADIR}
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (truecrack.tar.gz) = 44318f9e44d315a77dda4bb4d474a88b3207f4c63d3a445d865b50b4c8f323ac
SIZE (truecrack.tar.gz) = 8601600

View File

@ -0,0 +1,17 @@
TrueCrack is a brute-force password cracker for TrueCrypt (Copyright) volume
files. It works on Linux and it is optimized with Nvidia Cuda technology.
It works with cripted volumes with the following algorithms:
- PBKDF2 (defined in PKCS5 v2.0) based on RIPEMD160 Key derivation function.
- XTS block cipher mode of operation used for hard disk encryption based on
AES.
TrueCrack can work in two different modes of use:
- Dictionary attack: read the passwords from a file of words (one password
for line).
- Charset attack: generate the passwords from a charset of symbols defined
by the user (for example: all possible strings of n characters from the
charset "abc" ).
WWW: https://code.google.com/p/truecrack/