diff options
author | miwi <miwi@FreeBSD.org> | 2007-10-30 06:57:12 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-10-30 06:57:12 +0800 |
commit | 71eb0a61a2c052e1c0edfdc8f6d5cae27c923cb2 (patch) | |
tree | 1a4562c6b7aa3d4b1572e66c5e2f8a8ea674a5e6 /security | |
parent | edd9dd09ac6ed0aa9a76047f7bf1961e66d68659 (diff) | |
download | freebsd-ports-graphics-71eb0a61a2c052e1c0edfdc8f6d5cae27c923cb2.tar.gz freebsd-ports-graphics-71eb0a61a2c052e1c0edfdc8f6d5cae27c923cb2.tar.zst freebsd-ports-graphics-71eb0a61a2c052e1c0edfdc8f6d5cae27c923cb2.zip |
This program uses a brute force algorithm to guess your encrypted
compressed file's password. If you forget your encrypted file password,
this program is the solution. This program can crack zip,7z and rar file
passwords.
WWW: http://sourceforge.net/projects/rarcrack
PR: ports/117630
Submitted by: Philippe Audeoud <jadawin at tuxaco.net>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/rarcrack/Makefile | 30 | ||||
-rw-r--r-- | security/rarcrack/distinfo | 3 | ||||
-rw-r--r-- | security/rarcrack/pkg-descr | 6 |
4 files changed, 40 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 787c8e64121..19ecfdc2db8 100644 --- a/security/Makefile +++ b/security/Makefile @@ -636,6 +636,7 @@ SUBDIR += radiusniff SUBDIR += rain SUBDIR += rainbowcrack + SUBDIR += rarcrack SUBDIR += rats SUBDIR += rc5pipe SUBDIR += rdigest diff --git a/security/rarcrack/Makefile b/security/rarcrack/Makefile new file mode 100644 index 00000000000..f193f136f4d --- /dev/null +++ b/security/rarcrack/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: snoopy +# Date created: 24 October 2007 +# Whom: Philippe Audeoud <jadawin@tuxaco.net> +# $FreeBSD$ + +PORTNAME= rarcrack +PORTVERSION= 0.2 +CATEGORIES= security +MASTER_SITES= SF + +MAINTAINER= jadawin@tuxaco.net +COMMENT= It's try to guess your encrypted compressed file's password + +RUN_DEPENDS= p7zip:${PORTSDIR}/archivers/p7zip \ + unrar:${PORTSDIR}/archivers/unrar \ + unzip:${PORTSDIR}/archivers/unzip + +USE_BZIP2= yes +PLIST_FILES= bin/rarcrack +PORTDOCS= README +USE_GNOME= libxml2 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/rarcrack ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/security/rarcrack/distinfo b/security/rarcrack/distinfo new file mode 100644 index 00000000000..99c98970a8b --- /dev/null +++ b/security/rarcrack/distinfo @@ -0,0 +1,3 @@ +MD5 (rarcrack-0.2.tar.bz2) = 62d0cf77c6c4edc7204305649f8b7362 +SHA256 (rarcrack-0.2.tar.bz2) = 34c85cb7b94733544320605386a3632e8e3c59c905a2f4bedba926fee2f5cbbf +SIZE (rarcrack-0.2.tar.bz2) = 34964 diff --git a/security/rarcrack/pkg-descr b/security/rarcrack/pkg-descr new file mode 100644 index 00000000000..d610961f7c0 --- /dev/null +++ b/security/rarcrack/pkg-descr @@ -0,0 +1,6 @@ +This program uses a brute force algorithm to guess your encrypted +compressed file's password. If you forget your encrypted file password, +this program is the solution. This program can crack zip,7z and rar file +passwords. + +WWW: http://sourceforge.net/projects/rarcrack |