forked from mirrors/nixpkgs
Merge pull request #192049 from fabaff/silenthound
silenthound: init at unstable-2022-09-02
This commit is contained in:
commit
c1ca27703d
43
pkgs/tools/security/silenthound/default.nix
Normal file
43
pkgs/tools/security/silenthound/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "silenthound";
|
||||
version = "unstable-2022-09-02";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "layer8secure";
|
||||
repo = "SilentHound";
|
||||
rev = "44d361f6c95b79bd848603c8050af86db3d072b0";
|
||||
hash = "sha256-6JcU6FIE+9fsMawI1RSNQyx9ubjxmchEKmeg6/kmI4s=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
colorama
|
||||
ldap
|
||||
];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -vD $pname.py $out/bin/$pname
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
# Only script available
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to enumerate an Active Directory Domain";
|
||||
homepage = "https://github.com/layer8secure/SilentHound";
|
||||
# Unknown license, https://github.com/layer8secure/SilentHound/issues/1
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -11014,6 +11014,8 @@ with pkgs;
|
|||
lua = lua5_3;
|
||||
};
|
||||
|
||||
silenthound = callPackage ../tools/security/silenthound { };
|
||||
|
||||
silice = callPackage ../development/compilers/silice { };
|
||||
|
||||
silver-searcher = callPackage ../tools/text/silver-searcher { };
|
||||
|
|
Loading…
Reference in a new issue