Merge pull request #33253 from geistesk/hash_extender-2017-04-10

hash_extender: init at 2017-04-10
This commit is contained in:
Joachim F 2018-02-17 10:48:37 +00:00 committed by GitHub
commit 1c7fa5b421
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -2699,6 +2699,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 { };