hash_extender: init at 2017-04-10

This commit is contained in:
geistesk 2017-12-31 19:02:53 +01:00
parent 8d2b39fcca
commit 3f5c80056a
2 changed files with 29 additions and 0 deletions

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
name = "hash_extender-${version}";
version = "2017-04-10";
src = fetchFromGitHub {
owner = "iagox86";
repo = "hash_extender";
rev = "d27581e062dd0b534074e11d7d311f65a6d7af21";
sha256 = "1npwbgqaynjh5x39halw43i116v89sxkpa1g1bbvc1lpi8hkhhcb";
};
buildInputs = [ openssl ];
installPhase = ''
mkdir -p $out/bin
cp hash_extender $out/bin
'';
meta = with stdenv.lib; {
description = "Tool to automate hash length extension attacks";
homepage = https://github.com/iagox86/hash_extender;
license = licenses.bsd3;
maintainers = with maintainers; [ geistesk ];
};
}

@ -2609,6 +2609,8 @@ with pkgs;
hashcat = callPackage ../tools/security/hashcat { };
hash_extender = callPackage ../tools/security/hash_extender { };
hash-slinger = callPackage ../tools/security/hash-slinger { };
hal-flash = callPackage ../os-specific/linux/hal-flash { };