From 164309942499f6129261428293dde85165f7e522 Mon Sep 17 00:00:00 2001 From: Alexandr Savca Date: Sun, 22 Nov 2020 16:10:23 +0200 Subject: [PATCH] hashcat-utils: initial commit, v1.9 --- hashcat-utils/.footprint | 29 +++++++++++++++++++++++++++++ hashcat-utils/.signature | 5 +++++ hashcat-utils/Pkgfile | 18 ++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 hashcat-utils/.footprint create mode 100644 hashcat-utils/.signature create mode 100644 hashcat-utils/Pkgfile diff --git a/hashcat-utils/.footprint b/hashcat-utils/.footprint new file mode 100644 index 000000000..c9be12a72 --- /dev/null +++ b/hashcat-utils/.footprint @@ -0,0 +1,29 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cap2hccapx.bin +-rwxr-xr-x root/root usr/bin/cleanup-rules.bin +-rwxr-xr-x root/root usr/bin/combinator.bin +-rwxr-xr-x root/root usr/bin/combinator3.bin +-rwxr-xr-x root/root usr/bin/combipow.bin +-rwxr-xr-x root/root usr/bin/ct3_to_ntlm.bin +-rwxr-xr-x root/root usr/bin/cutb.bin +-rwxr-xr-x root/root usr/bin/expander.bin +-rwxr-xr-x root/root usr/bin/gate.bin +-rwxr-xr-x root/root usr/bin/generate-rules.bin +-rwxr-xr-x root/root usr/bin/hcstat2gen.bin +-rwxr-xr-x root/root usr/bin/hcstatgen.bin +-rwxr-xr-x root/root usr/bin/keyspace.bin +-rwxr-xr-x root/root usr/bin/len.bin +-rwxr-xr-x root/root usr/bin/mli2.bin +-rwxr-xr-x root/root usr/bin/morph.bin +-rwxr-xr-x root/root usr/bin/permute.bin +-rwxr-xr-x root/root usr/bin/permute_exist.bin +-rwxr-xr-x root/root usr/bin/prepare.bin +-rwxr-xr-x root/root usr/bin/req-exclude.bin +-rwxr-xr-x root/root usr/bin/req-include.bin +-rwxr-xr-x root/root usr/bin/rli.bin +-rwxr-xr-x root/root usr/bin/rli2.bin +-rwxr-xr-x root/root usr/bin/rules_optimize.bin +-rwxr-xr-x root/root usr/bin/splitlen.bin +-rwxr-xr-x root/root usr/bin/strip-bsn.bin +-rwxr-xr-x root/root usr/bin/strip-bsr.bin diff --git a/hashcat-utils/.signature b/hashcat-utils/.signature new file mode 100644 index 000000000..1ee39d9f4 --- /dev/null +++ b/hashcat-utils/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3yDyYNIFKh9CYrtH7mNuJuYe5J1nEYjP78tToqlmik7YZLWcZc2t+qMVmGp4GRo+bvJPRjWPnBXUCFoWpRcSYQM= +SHA256 (Pkgfile) = 232601584e793c31bdd0dc63e2bf79f761dc98e34bf3fa3389718da18bea8dda +SHA256 (.footprint) = a0bc9b7eb701cc59e07d6b4282f1a26b4b2f210bad1fd930294d37c1edddc7eb +SHA256 (hashcat-utils-1.9.tar.gz) = 9ddda7f9dfeebfde95b2e980241730262a7f512ceb37941c38b590721d6b6921 diff --git a/hashcat-utils/Pkgfile b/hashcat-utils/Pkgfile new file mode 100644 index 000000000..833c02309 --- /dev/null +++ b/hashcat-utils/Pkgfile @@ -0,0 +1,18 @@ +# Description: Small utilities that are useful in advanced password cracking +# URL: https://hashcat.net/ +# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com + +name=hashcat-utils +version=1.9 +release=1 +source=(https://github.com/hashcat/$name/archive/v$version/$name-$version.tar.gz) + +build() { + cd $name-$version/src + + # remove hardcoded optimization flags + sed -i -e '/CFLAGS +=/s/-pipe -O2//' Makefile + + make + install -Dm755 *.bin -t $PKG/usr/bin/ +}