diff options
author | kefren <kefren@pkgsrc.org> | 2008-04-25 07:47:47 +0000 |
---|---|---|
committer | kefren <kefren@pkgsrc.org> | 2008-04-25 07:47:47 +0000 |
commit | 27b39d117c8a81ca064a46ce9e0927c40bb511e4 (patch) | |
tree | c53e0955893c37464109bd3b7d8ea1fe6356f65e /archivers | |
parent | 92b5ec1ad5949cf5ee658b42d137861d492825b0 (diff) | |
download | pkgsrc-27b39d117c8a81ca064a46ce9e0927c40bb511e4.tar.gz |
initial import of fcrackzip, a brute-force zip archive password cracker
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/fcrackzip/DESCR | 3 | ||||
-rw-r--r-- | archivers/fcrackzip/Makefile | 13 | ||||
-rw-r--r-- | archivers/fcrackzip/PLIST | 4 | ||||
-rw-r--r-- | archivers/fcrackzip/distinfo | 6 | ||||
-rw-r--r-- | archivers/fcrackzip/patches/patch-aa | 12 |
5 files changed, 38 insertions, 0 deletions
diff --git a/archivers/fcrackzip/DESCR b/archivers/fcrackzip/DESCR new file mode 100644 index 00000000000..ae6ad3c8ce9 --- /dev/null +++ b/archivers/fcrackzip/DESCR @@ -0,0 +1,3 @@ +fcrackzip searches each zipfile given for encrypted files and tries to +guess the password. All files must be encrypted with the same password, +the more files you provide, the better. diff --git a/archivers/fcrackzip/Makefile b/archivers/fcrackzip/Makefile new file mode 100644 index 00000000000..f0e6ef3e5fe --- /dev/null +++ b/archivers/fcrackzip/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1.1.1 2008/04/25 07:47:47 kefren Exp $ + +DISTNAME= fcrackzip-0.3 +MASTER_SITES= http://www.goof.com/pcg/marc/data/ +CATEGORIES= archivers + +COMMENT= Zip password cracker +MAINTAINER= pkgsrc-users@pkgsrc.org +HOMEPAGE= http://www.goof.com/pcg/marc/fcrackzip.html + +GNU_CONFIGURE= yes + +.include "../../mk/bsd.pkg.mk" diff --git a/archivers/fcrackzip/PLIST b/archivers/fcrackzip/PLIST new file mode 100644 index 00000000000..bbc2a271e26 --- /dev/null +++ b/archivers/fcrackzip/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2008/04/25 07:47:47 kefren Exp $ +bin/fcrackzip +bin/zipinfo +man/man1/fcrackzip.1 diff --git a/archivers/fcrackzip/distinfo b/archivers/fcrackzip/distinfo new file mode 100644 index 00000000000..e3c01f74e00 --- /dev/null +++ b/archivers/fcrackzip/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2008/04/25 07:47:47 kefren Exp $ + +SHA1 (fcrackzip-0.3.tar.gz) = b5f545af57f3537a21132616fa8cbec0ef256a30 +RMD160 (fcrackzip-0.3.tar.gz) = 3bfab22c3cf98c7fe63c1be1b4df4e8e713886a4 +Size (fcrackzip-0.3.tar.gz) = 103038 bytes +SHA1 (patch-aa) = 9983c71207326d44c2de0dfc3785d1ba42ccba11 diff --git a/archivers/fcrackzip/patches/patch-aa b/archivers/fcrackzip/patches/patch-aa new file mode 100644 index 00000000000..39283d8243b --- /dev/null +++ b/archivers/fcrackzip/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2008/04/25 07:47:47 kefren Exp $ +--- main.c.orig 2008-04-25 10:21:47.000000000 +0300 ++++ main.c 2008-04-25 10:20:35.000000000 +0300 +@@ -33,7 +33,7 @@ + + #include "crack.h" + +-static int use_unzip; ++int use_unzip; + static method *crack_method = methods; + static int method_number = -1; + static int min_length = -1; |