Merge pull request #33253 from geistesk/hash_extender-2017-04-10
hash_extender: init at 2017-04-10
This commit is contained in:
commit
1c7fa5b421
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2699,6 +2699,8 @@ with pkgs;
|
||||||
|
|
||||||
hashcat = callPackage ../tools/security/hashcat { };
|
hashcat = callPackage ../tools/security/hashcat { };
|
||||||
|
|
||||||
|
hash_extender = callPackage ../tools/security/hash_extender { };
|
||||||
|
|
||||||
hash-slinger = callPackage ../tools/security/hash-slinger { };
|
hash-slinger = callPackage ../tools/security/hash-slinger { };
|
||||||
|
|
||||||
hal-flash = callPackage ../os-specific/linux/hal-flash { };
|
hal-flash = callPackage ../os-specific/linux/hal-flash { };
|
||||||
|
|
Loading…
Reference in New Issue